9 Commits

Author SHA1 Message Date
b80efea64a feat: add web UI with SSE streaming on port 8081 2026-05-10 15:10:39 +08:00
9fec5df6f7 fix: ensure header visibility with explicit newline and nil checks 2026-05-10 15:00:41 +08:00
8619a7f35c fix: header visibility with bottom border and dynamic height 2026-05-10 14:50:04 +08:00
6cd0a8d021 feat: add header with version and fix layout calculations 2026-05-10 14:47:53 +08:00
8d543a7020 fix: remove textarea resize from View() and fix right panel height 2026-05-10 14:44:38 +08:00
606ee5fa0a test: add TUI unit tests 2026-05-10 14:29:45 +08:00
e18dde7c15 feat: implement TUI with bubbletea and multi-agent collaboration
- Add bubbletea/lipgloss/glamour dependencies for TUI
- Create internal/tui package with EventWriter, styles, and bubbletea Model
- Support streaming output display in conversation window
- Add right panel with statistics and active agent status
- Implement multi-agent collaboration with sub-agents
- Add AgentCallTool for delegating tasks to sub-agents
- Support parallel tool execution with goroutines
- Auto-discover sub-agents from ~/.orca/prompts/ directory
- Fix orchestrator routing based on msg.To field
- Add non-blocking event writer with timeout to prevent blocking
2026-05-10 14:28:17 +08:00
286d3dae3c feat: add DeepSeek LLM provider support
- Add DeepSeekClient implementing LLM interface
- Support chat and streaming APIs
- Add Provider config option (ollama/deepseek)
- Default to DeepSeek with model deepseek-v4-flash
- Update CLI to display provider info
- Add DeepSeek environment variables (DEEPSEEK_API_KEY, etc.)
2026-05-08 22:04:18 +08:00
6b94476347 Initial commit: Orca Agent Framework
Core features:
- Microkernel architecture with Actor model
- Session management with JSONL persistence
- Tool system (5 built-in tools)
- Skill system with SKILL.md parsing
- Sandbox security execution
- Ollama integration with gemma4:e4b
- Prompt-based tool calling (compatible with native function calling)
- REPL interface

11 packages, all tests passing
2026-05-08 00:55:48 +08:00