You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added JSONL write-lock mechanism for AgentSession to prevent concurrent write corruption of session files.
Improved API error handling with unified error response format, preventing sensitive information leakage to the client.
Fixed Electron build config environment variable filtering to prevent server-side env vars from leaking to the renderer process.
📋 Enhanced Electron Logging
Added scope field to log format, enabling differentiation between main process, renderer process, and child process log sources for easier multi-source debugging.
⚡ Large File Viewer Performance
Added virtualization layer to FileViewer: only renders code lines within the visible viewport, dramatically reducing memory usage and lag when opening large files (>5000 lines).
Large files automatically switch to plain-text mode with line numbers, preventing syntax-highlighting from freezing the UI.
🔄 Auto-Update Support
Moved electron-updater from devDependencies to runtime dependencies, ensuring auto-update functionality is included in production builds.
Trimmed electron-builder packaging resources to reduce installer size.
🧪 Test Infrastructure
Unified all test entry points under a single npm test command, synchronized CI configuration accordingly.
Added test coverage for log-format, file-viewer-virtualization, rpc-manager, and other modules.
🧹 Housekeeping
Removed ~10,000 lines of obsolete architecture review docs, implementation plans, and design specs.
Cleaned up unused Open Design skill scaffolding and temporary image assets.
Updated .gitignore to exclude dev-time temp logs and /tmp/ directory.