Status: Active Development Version: 0.13.0 Updated: 2026-04-18
| Document | Description |
|---|---|
| README.md | User documentation, installation, usage |
| CLAUDE.md | AI assistant context, development guidelines |
| CHANGELOG.md | Version history, phase details |
| design/ARCHITECTURE.md | System diagrams, component responsibilities |
| design/ROADMAP.md | Sprint planning, FB backlog, research topics |
| design/decisions/ | Architecture Decision Records (ADRs) |
Source of truth: internal/mcp/help_content.go constants. Counts here are a cached view and may lag a single PR behind; run ./scripts/verify-docs.sh to confirm.
| Metric | Count |
|---|---|
| MCP Tools | 81 |
| MCP Resources | 4 |
| MCP Prompts | 14 |
| Claude Skills | 4 |
Sprint 0.5 — Upstream Alignment & FB-20 Follow-ups (in progress). See design/ROADMAP.md for scope and ordering.
| Component | Technology | Version |
|---|---|---|
| Language | Go | 1.25.5 |
| MCP SDK | go-sdk | 1.1.0 |
| OBS Client | goobs | 1.5.6 |
| Database | modernc.org/sqlite | latest |
| TUI | bubbletea | 1.3.3 |
agentic-obs/
├── main.go # Entry point
├── config/ # Configuration management
├── internal/
│ ├── mcp/ # MCP server (tools, resources, prompts)
│ ├── obs/ # OBS WebSocket client
│ ├── storage/ # SQLite persistence
│ ├── http/ # Web dashboard & API
│ ├── screenshot/ # Background capture manager
│ └── tui/ # Terminal dashboard
├── skills/ # Claude Skills packages
├── examples/ # Usage examples
├── docs/ # Additional documentation
└── design/ # Architecture & decisions
# Build
go build -o agentic-obs
# Run MCP server (default)
./agentic-obs
# Run TUI dashboard
./agentic-obs --tuigo test ./...See CLAUDE.md for:
- Adding new MCP tools
- Adding new MCP resources
- Adding new MCP prompts