feat: Agent monitoring system with 6 new crates#1
Merged
aryateja2106 merged 2 commits intomainfrom Feb 7, 2026
Merged
Conversation
Integrate autonomous agent orchestration capabilities into the flow CLI: - flow-core: Extended with Feature, Task, Theme, Event, AgentConfig types and FlowError variants (Database, NotFound, BadRequest, CycleDetected, etc.) - flow-db: SQLite-backed feature management with WAL mode, SAVEPOINT transactions for atomic dependency ops, event logging, and task sync - flow-resolver: Kahn's algorithm topological sort with priority-aware heap, DFS cycle detection (depth limit 50), and scheduling score computation - flow-server: axum 0.7 web server with SSE + WebSocket dual transport, file watching via notify crate, feature/session/task REST APIs - flow-tui: ratatui 0.29 terminal UI with 4 views (Kanban, Agents, Graph, Logs), responsive layouts (Full/Compact/Mobile), and 7 themes - flow-mcp: MCP server stub for Claude Code integration (17 tools planned) - flow-orchestrator: Agent process management stub New CLI commands: serve, features, monitor, theme 56 tests passing across flow-db (22), flow-resolver (32), flow-server (2) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add per-crate README documentation for all 8 crates with beginner-friendly explanations, architecture diagrams, code examples, and API references. Update main README with full project overview, command reference, and crate documentation links. Update CI to include cross-compilation check. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
flow-corewith Feature, Task, Theme (7 themes), Event, and AgentConfig typesserve,features,monitor,themeNew Crates
flow-dbflow-resolverflow-serverflow-tuiflow-mcpflow-orchestratorNew CLI Commands
Test plan
cargo check- all 11 crates compilecargo test- 56 tests pass (22 flow-db + 32 flow-resolver + 2 flow-server)cargo clippy- 0 errors (74 pedantic warnings remaining)cargo build --release- builds successfullyflow --help- shows all 10 commandsflow theme list- displays 7 themes with CSS colorsflow features --help- shows 7 subcommands🤖 Generated with Claude Code