Files
fusion/.changeset/interactive-terminal.md
gsxdsm c6f4c2d243 feat(KB-057): add interactive terminal to dashboard
- Add backend terminal API with SSE streaming for real-time output
- Create useTerminal hook with command history and navigation
- Refactor TerminalModal into interactive shell component
- Update App and Header for standalone terminal button
- Add CSS styles for terminal UI (prompts, output, spinner, welcome screen)
- Update tests for new terminal behavior
2026-03-29 21:09:57 -07:00

18 lines
859 B
Markdown

---
"@dustinbyrne/kb": minor
---
Add interactive terminal to dashboard for executing shell commands directly in the project directory
The dashboard now includes a fully functional shell terminal accessible via the terminal icon in the header. Features include:
- Real-time command output streaming via Server-Sent Events (SSE)
- Command history with Up/Down arrow navigation
- Keyboard shortcuts: Ctrl+C to kill process, Ctrl+L to clear screen
- Security validation with allowlist/blocklist for commands
- 30-second timeout for commands with automatic cleanup
- Monospace font styling with color-coded output (stdout/stderr/exit codes)
- Mobile-responsive design with safe area insets
The terminal is always available regardless of task state, making it convenient for quick git operations, package management, or debugging without leaving the dashboard.