Tracer — Summary
Tracer is a lightweight, dependency-aware issue tracker for AI coding agents, written in Rust and installable via cargo install. It stores issues as JSONL files in a git-friendly format so multiple agents can work on the same project simultaneously without database coordination. The key differentiator is first-class dependency tracking: tasks have blocks, parent-child, related, and discovered-from relationships, and a tracer ready command surfaces only unblocked work — preventing agents from starting tasks they cannot complete. Multi-agent coordination happens through the comment system and auto-assignment when an issue transitions to in_progress, all with --json output for programmatic parsing.
Compared to seeds: most similar to taskmaster-ai (file-based task tracker for AI agents with CLI interface) but differs by using JSONL storage instead of JSON, implementing typed dependency relationships as a first-class feature, and being written in Rust for zero-runtime-dependency installation. Unlike backlog-md, there is no web UI, no MCP server, and no markdown-per-task format.