Lightweight TODO tracker for agent engineers across repos.
Go to file
2026-07-07 00:34:37 +00:00
agent_todos feat: scaffold agent-todo-tracker P2 project 2026-07-07 00:34:37 +00:00
tests feat: scaffold agent-todo-tracker P2 project 2026-07-07 00:34:37 +00:00
.gitignore feat: scaffold agent-todo-tracker P2 project 2026-07-07 00:34:37 +00:00
LICENSE feat: scaffold agent-todo-tracker P2 project 2026-07-07 00:34:37 +00:00
pyproject.toml feat: scaffold agent-todo-tracker P2 project 2026-07-07 00:34:37 +00:00
README.md feat: scaffold agent-todo-tracker P2 project 2026-07-07 00:34:37 +00:00

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.