Local-first issue tracker designed for AI coding agents — SQLite, MCP tools, no cloud, no accounts.
Filigree is a lightweight, SQLite-backed issue tracker designed for AI coding agents (Claude Code, Codex, etc.) to use as first-class citizens. It exposes 118 MCP tools so agents interact natively, plus a full CLI for humans and background subagents.
Traditional issue trackers are human-first — agents scrape CLI output or parse API responses. Filigree flips this: agents get a pre-computed context.md at session start, claim work with optimistic locking, and resume sessions via event streams without re-reading history. For Claude Code, filigree install wires up session hooks and a workflow skill pack so agents get project context automatically.
Filigree is local-first. No cloud, no accounts. Each project gets a .weft/filigree/ directory (like .git/) containing a SQLite database, configuration, and auto-generated context summary; legacy .filigree/ stores keep working and migrate on the next filigree init. Installations support two modes: ethereal (default, per-project) and server (persistent multi-project daemon). A named Weft HTTP generation at /api/weft/* serves federation-aware integrations while the classic HTTP surface stays supported for existing callers.
Filigree is the work-state member of the Weft federation — a family of independently-useful code-governance tools woven together by narrow, additive contracts. Filigree runs fully standalone; the Weft surface is optional enrichment. The authoritative federation roster, axiom, and composition doctrine live at the Weft hub (~/weft, see ~/weft/doctrine.md); Filigree owns its own HTTP/MCP/CLI surface and contracts (see docs/federation/contracts.md).
Security boundary: Filigree does not encrypt, sandbox, harden, or secure stored project data beyond ordinary filesystem permissions and standard HTTPS transport if you put it behind HTTPS yourself. Do not use Filigree for secure, regulated, confidential, or business-sensitive data.
- MCP server with 118 tools — agents interact natively without parsing text
- Full CLI with
--jsonoutput for background subagents and--actorfor audit trails - Weft HTTP generation — stable
/api/weft/*contracts with classic compatibility for existing integrations - Claude Code integration — session hooks inject project snapshots at startup; bundled skill pack teaches agents workflow patterns
- Workflow templates — 24 issue types across 9 packs with enforced state machines
- Dependency graph — blockers, ready-queue, critical path analysis
- Hierarchical planning — milestone/phase/step hierarchies with automatic unblocking
- Atomic claiming — optimistic locking prevents double-work in multi-agent scenarios
- Agent handoff tools — claim leases, stale-claim discovery, observation triage, shared file annotations, and scanner/finding workflows
- Bundled scanners — opt-in Codex and Claude scanner registrations with prompt packs for security, architecture, language, and quality reviews
- Pre-computed context —
context.mdregenerated on every mutation for instant agent orientation - Web dashboard — real-time project overview with Kanban drag-and-drop, Graph v2 dependency exploration, Files/Health views, and optional multi-project server mode
- Minimal dependencies — just Python + SQLite + click (no framework overhead)
- Session resumption —
get_changes --since <timestamp>to catch up after downtime
Filigree gives one project three ways into a single SQLite database — agents
through MCP tools, you through the CLI, and a browser through the dashboard.
Every mutation regenerates context.md, which the session hook injects back
into the agent at startup.
flowchart TD
Agent["AI coding agent<br/>(Claude Code, Codex)"]
Human["You + scripts"]
Browser["Browser"]
MCP["MCP server<br/>(118 namespaced tools, stdio)"]
CLI["filigree CLI<br/>(--json, --actor)"]
Dash["Web dashboard<br/>(localhost:8377)"]
DB[("SQLite database<br/>.weft/filigree/filigree.db")]
Ctx["context.md<br/>(pre-computed orientation)"]
Weft["Weft HTTP /api/weft/*<br/>(optional federation)"]
Agent -->|"calls tools over stdio"| MCP
Human -->|"runs commands"| CLI
Browser -->|"views, drags Kanban"| Dash
MCP -->|"reads & writes issues"| DB
CLI -->|"reads & writes issues"| DB
Dash -->|"reads & writes issues"| DB
DB -->|"regenerates on every mutation"| Ctx
Ctx -->|"injected at session start"| Agent
DB -.->|"serves federation peers"| Weft
The work loop is the same whether you drive it from the CLI or an agent drives it through MCP tools: orient at session start, claim an issue atomically, do the work, close it — and the next orientation is already regenerated.
sequenceDiagram
participant Dev as You / AI agent
participant Fg as Filigree
participant DB as .weft/filigree/ (SQLite)
Note over Dev,Fg: Session start
Dev->>Fg: filigree session-context
Fg->>DB: read ready / in-progress / critical path
DB-->>Dev: project snapshot
Dev->>Fg: filigree start-next-work --assignee me
Fg->>DB: atomic claim + transition to working status
DB-->>Dev: claimed issue (optimistic lock prevents double-work)
Note over Dev: do the work, commit
Dev->>Fg: filigree close <id>
Fg->>DB: transition to terminal status
DB->>DB: regenerate context.md
DB-->>Dev: next ready work
Each issue type enforces its own state machine. Tasks are simple
(open → in_progress → closed); features add review
(proposed → approved → building → reviewing → done); bugs add a triage front
and a hard verification gate, so a fix cannot close without a recorded
fix_verification. The bug lifecycle below shows why "ready" is not the same as
"startable" — a bug enters at triage, which has no single hop into work.
stateDiagram-v2
[*] --> triage
triage --> confirmed
triage --> wont_fix
triage --> not_a_bug
confirmed --> fixing
fixing --> verifying : requires fix_verification
verifying --> closed : hard gate (fix_verification required)
verifying --> fixing : kicked back
confirmed --> wont_fix
wont_fix --> [*]
not_a_bug --> [*]
closed --> [*]
pip install filigree # or: uv add filigree
cd my-project
filigree init # Create the .weft/filigree/ store
filigree install # Set up MCP, hooks, skills, CLAUDE.md, .gitignore
filigree create "Set up CI pipeline" --type=task --priority=1
filigree ready # See ready work, including startability hints
filigree start-next-work --assignee "$USER" --advance
# ...do the work and commit...
filigree close <id>Use start-next-work or start-work to claim and transition work in one
atomic step. The older pattern of claiming and then manually updating status can
race another agent. Pass --advance when you want Filigree to walk safe
pre-workflow transitions first, such as moving a bug from triage through
confirmed into its working state.
Filigree 3.0 is a hard-break release for existing federation consumers and older local stores. New projects start directly in the current layout. Existing projects should follow this operator checklist before resuming agent work:
- Stop all writers for the project: dashboard daemons, stdio MCP sessions, and any scripts holding the legacy database open.
- Run
filigree initfrom the project root. It migrates.filigree/into.weft/filigree/, imports.filigree.confinto.weft/filigree/config.json, and leaves an imported-conf breadcrumb. - Update MCP consumers to namespaced tool names such as
issue_get,finding_list, andwork_start. CLI verbs such asstart-next-workandcloseare unchanged. - Repoint federation HTTP clients from
/api/loom/*to/api/weft/*. UseWEFT_TOKENfor the outbound registry token andWEFT_FEDERATION_TOKENfor Filigree's inbound/api/weft/*and/mcpbearer token. - Expect finding work views to default to active findings only. Pass
--suppression allon the CLI orsuppression="all"through MCP when you need baselined, waived, or judged findings too.
Full migration details live in UPGRADING.md and MIGRATION-3.0.md.
pip install filigree # CLI + MCP server + Web dashboardOr from source:
git clone https://github.com/foundryside-dev/filigree.git
cd filigree && uv sync| Command | Purpose |
|---|---|
filigree |
CLI interface |
filigree-mcp |
MCP server (stdio transport) |
filigree-dashboard |
Web UI (port 8377) |
filigree install configures everything in one step. To install individual components:
filigree install --claude-code # MCP server + CLAUDE.md instructions
filigree install --codex # Codex MCP config via runtime autodiscovery
filigree install --hooks # SessionStart hooks (project snapshot + dashboard auto-start)
filigree install --skills # Workflow skill pack for agents
filigree doctor # Verify installation healthThe session hook runs filigree session-context at startup, giving the agent a snapshot of in-progress work, ready tasks, and the critical path. The skill pack (filigree-workflow) teaches agents triage patterns, team coordination, and sprint planning step by step.
The dashboard is local-first and assumes loopback/local filesystem trust by default. The federation and MCP-over-HTTP surfaces are bearer-token gated by default: the daemon auto-mints a per-machine token at <store_dir>/federation_token (mode 0600, gitignored) on first serve, and filigree install / doctor --fix pre-seed it. The token resolves in three tiers — the WEFT_FEDERATION_TOKEN environment variable (operator override, the only tier that works across hosts), then the store-dir token file, then absent (auth off). The older FILIGREE_FEDERATION_API_TOKEN and FILIGREE_API_TOKEN names are still accepted as deprecated fallbacks and log a migration warning. This token is federation/deconfliction plumbing, not a security secret. The token value is never reported by /api/health, but the health payload does report which auth scope is enabled. Rotate with filigree rotate-federation-token (effective at the next daemon restart).
| Route class | Authentication |
|---|---|
Dashboard UI (/) |
Open under the local loopback trust boundary |
Classic dashboard API (/api/issues, /api/issue/{id}, /api/health) |
Open under the local loopback trust boundary |
Federation and scanner ingest (/api/weft/*, /api/scan-results, /api/observations, /api/v1/scan-results, /api/v1/observations) |
Bearer token when one resolves (auto-minted by default; WEFT_FEDERATION_TOKEN overrides) |
MCP HTTP endpoint (/mcp, /mcp/*) |
Bearer token when one resolves (auto-minted by default; WEFT_FEDERATION_TOKEN overrides) |
Filigree is designed for a specific niche: local-first, agent-driven development. It is not a replacement for GitHub Issues or Jira.
Is Filigree suitable for my project?
Use Filigree when your priority is plug-and-play agent coordination: install it, run filigree init and filigree install, open your agent, and immediately get project context, tickets, scanner findings, and local workflow tools. Do not use Filigree when the issue database, comments, scans, or integrations would contain secrets, regulated data, customer data, confidential business information, or anything that must be encrypted or access-controlled beyond normal local filesystem protections and HTTPS transport you provide yourself.
| Feature | Filigree | GitHub Issues | Jira |
|---|---|---|---|
| Agent-native MCP tools | Yes | No | No |
| Works offline, no account needed | Yes | No | No |
| Enforced workflow state machines | Yes | Limited | Yes |
| Dependency graph + critical path | Yes | Limited | Yes |
| Structured queries and filtering | Yes | Yes | Yes |
| Multi-user cloud collaboration | No | Yes | Yes |
| Integration ecosystem (CI, Slack) | No | Yes | Yes |
Filigree is designed for one niche well. It is the wrong tool if you need:
Team collaboration across machines. Filigree has no cloud sync, no accounts, and no network-accessible API beyond localhost. If your team of humans needs to file bugs, assign tickets, and comment across different machines, use GitHub Issues, Linear, or Jira.
Integration with your existing toolchain. Filigree does not connect to CI pipelines, Slack, PagerDuty, or third-party services. If your workflow requires automated ticket creation from alerts or Slack-based triage, Filigree will not fit without custom scripting.
A persistent project record outlasting the repository.
Your .weft/filigree/ directory lives with your project. If you need an audit trail that survives repository deletion or is accessible after the project ends, use a hosted service.
Multi-project portfolio management. The web dashboard supports switching between local projects, but Filigree has no cross-project reporting, resource allocation, or roadmap views. It tracks tasks, not portfolios.
Mobile or browser-based access. The dashboard runs on localhost. If stakeholders need to read or file issues from their phone or a machine where the project is not checked out, Filigree is not the right choice.
Secure or sensitive data. Nothing in Filigree is encrypted or secured beyond ordinary local filesystem protections and standard HTTPS if you provide it. Do not use this system for secure or sensitive data.
The sweet spot: one developer or agent team, one project, offline or airgapped, where you want structured workflow enforcement and agent-native tooling without standing up external infrastructure.
| Document | Description |
|---|---|
| Getting Started | 5-minute tutorial: install, init, first issue |
| CLI Reference | All CLI commands with full parameter docs |
| MCP Server Reference | 118 MCP tools for agent-native interaction |
| Federation Contracts | Classic and Weft HTTP generation contracts |
| Workflow Templates | State machines, packs, field schemas, enforcement |
| Agent Integration | Multi-agent patterns, claiming, session resumption |
| Python API Reference | FiligreeDB, Issue, TemplateRegistry for programmatic use |
| Architecture | Source layout, DB schema, design decisions |
| Examples | Runnable scripts: multi-agent, workflows, CLI scripting, planning |
| Priority | Label | Meaning |
|---|---|---|
| P0 | Critical | Drop everything |
| P1 | High | Do next |
| P2 | Medium | Default |
| P3 | Low | When possible |
| P4 | Backlog | Future consideration |
Full definitions: Workflow Templates — Priority Scale
Requires Python 3.11+. Developed on 3.13. Node.js 24 is also required for the Node-backed static dashboard pytest tests and dashboard JavaScript quality gates.
git clone https://github.com/foundryside-dev/filigree.git
cd filigree
uv sync --group dev
make ci # ruff check + mypy strict + pytest with 85% coverage gate
make lint # Ruff check + format check
make format # Auto-format with ruff
make typecheck # Mypy strict mode
make test # Pytest
make test-cov # Pytest with coverage (fail-under=85%)- Ruff for linting and formatting (line-length=140)
- Mypy in strict mode
- Pytest with pytest-asyncio for MCP server tests
- Coverage threshold at 85%
- Tests in
tests/, source insrc/filigree/
Filigree was inspired by Steve Yegge's beads project. Filigree builds on the core idea of git-friendly issue tracking, focusing on MCP-native workflows and local-first operation.
MIT — Copyright (c) 2026 John Morrissey