Skip to content

Latest commit

 

History

History
106 lines (77 loc) · 2.78 KB

File metadata and controls

106 lines (77 loc) · 2.78 KB

agentic-obs Project Status

Status: Active Development Version: 0.13.0 Updated: 2026-04-18


Quick Links

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)

Current Metrics

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

Active Sprint

Sprint 0.5 — Upstream Alignment & FB-20 Follow-ups (in progress). See design/ROADMAP.md for scope and ordering.


Technology Stack

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

Project Structure

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

Development

Build & Run

# Build
go build -o agentic-obs

# Run MCP server (default)
./agentic-obs

# Run TUI dashboard
./agentic-obs --tui

Testing

go test ./...

Adding Features

See CLAUDE.md for:

  • Adding new MCP tools
  • Adding new MCP resources
  • Adding new MCP prompts

References