Agent-native issue tracker with convention-based project discovery
Project description
Filigree
Local-first issue tracker designed for AI coding agents — SQLite, MCP tools, no cloud, no accounts.
What Is Filigree?
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 114 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 .filigree/ directory (like .git/) containing a SQLite database, configuration, and auto-generated context summary. Installations support two modes: ethereal (default, per-project) and server (persistent multi-project daemon). Filigree 2.0 also adds a named Loom HTTP generation at /api/loom/* for federation-aware integrations while keeping the classic HTTP surface supported for existing callers.
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.
Key Features
- MCP server with 114 tools — agents interact natively without parsing text
- Full CLI with
--jsonoutput for background subagents and--actorfor audit trails - Loom HTTP generation — stable
/api/loom/*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
Quick Start
pip install filigree # or: uv add filigree
cd my-project
filigree init # Create .filigree/ directory
filigree install # Set up MCP, hooks, skills, CLAUDE.md, .gitignore
filigree create "Set up CI pipeline" --type=task --priority=1
filigree ready # See what's ready to work on
filigree update <id> --status=in_progress
filigree close <id>
Installation
pip install filigree # CLI + MCP server + Web dashboard
Or from source:
git clone https://github.com/tachyon-beep/filigree.git
cd filigree && uv sync
Entry Points
| Command | Purpose |
|---|---|
filigree |
CLI interface |
filigree-mcp |
MCP server (stdio transport) |
filigree-dashboard |
Web UI (port 8377) |
Claude Code Setup
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 health
The 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.
Why Filigree?
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 |
When NOT to Use Filigree
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 .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.
Documentation
| Document | Description |
|---|---|
| Getting Started | 5-minute tutorial: install, init, first issue |
| CLI Reference | All CLI commands with full parameter docs |
| MCP Server Reference | 114 MCP tools for agent-native interaction |
| Federation Contracts | Classic and Loom 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 Scale
| 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
Development
Requires Python 3.11+. Developed on 3.13.
git clone https://github.com/tachyon-beep/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%)
Key Conventions
- 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/
Acknowledgements
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.
License
MIT — Copyright (c) 2026 John Morrissey
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file filigree-2.1.0.tar.gz.
File metadata
- Download URL: filigree-2.1.0.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc8ab832056cba94fc2ecb9fb4b535a0251417a4c9094cd6e6b2830f0ddcdccb
|
|
| MD5 |
4160b1efb4719894c61ff4fbaedb5bc8
|
|
| BLAKE2b-256 |
644c1a90027078fe4ea1382d463a0ae19b3d101635d2df42d8dba9936fc761a2
|
Provenance
The following attestation bundles were made for filigree-2.1.0.tar.gz:
Publisher:
release.yml on tachyon-beep/filigree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
filigree-2.1.0.tar.gz -
Subject digest:
bc8ab832056cba94fc2ecb9fb4b535a0251417a4c9094cd6e6b2830f0ddcdccb - Sigstore transparency entry: 1674092129
- Sigstore integration time:
-
Permalink:
tachyon-beep/filigree@1545e1608766f786488680ec8b7dab8d3b15843c -
Branch / Tag:
refs/tags/v2.1.0 - Owner: https://github.com/tachyon-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@1545e1608766f786488680ec8b7dab8d3b15843c -
Trigger Event:
push
-
Statement type:
File details
Details for the file filigree-2.1.0-py3-none-any.whl.
File metadata
- Download URL: filigree-2.1.0-py3-none-any.whl
- Upload date:
- Size: 768.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
187f73668acece68a0b5f4e82fa6662a8db10b1fc6f2bbca5486a30383e30655
|
|
| MD5 |
c4de661bfc498ea5241bb72de8faf0a8
|
|
| BLAKE2b-256 |
266a46ec0169155dbbce5c14f12ed46118cff19e3a282963c4d40628014e1e21
|
Provenance
The following attestation bundles were made for filigree-2.1.0-py3-none-any.whl:
Publisher:
release.yml on tachyon-beep/filigree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
filigree-2.1.0-py3-none-any.whl -
Subject digest:
187f73668acece68a0b5f4e82fa6662a8db10b1fc6f2bbca5486a30383e30655 - Sigstore transparency entry: 1674092135
- Sigstore integration time:
-
Permalink:
tachyon-beep/filigree@1545e1608766f786488680ec8b7dab8d3b15843c -
Branch / Tag:
refs/tags/v2.1.0 - Owner: https://github.com/tachyon-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@1545e1608766f786488680ec8b7dab8d3b15843c -
Trigger Event:
push
-
Statement type: