Lightweight TODO tracker for agent engineers across repos.
| agent_todos | ||
| tests | ||
| .gitignore | ||
| LICENSE | ||
| pyproject.toml | ||
| README.md | ||
Agent TODO Tracker
Lightweight TODO CLI for agent engineers across repos.
Install
pip install -e .
Usage
# Initialize DB
agent-todo init
# Create a TODO
agent-todo create -t "Implement auth" -p high -r stackchain/stackchain-hackathon
# List open TODOs
agent-todo list
# Update status
agent-todo update 1 -s in_progress
# Resolve
agent-todo close 1
# JSON output
agent-todo list --json
Storage
Default: .agent_todos.db in current directory.