I built a small CLI task manager called nod. Every task lives in its own .md file with YAML frontmatter, inside a tasks/ folder in your project. The core idea: AI agents can read, update, and log work on tasks using simple CLI commands — no database, no external service, just files on disk.
nod available --json # pick next task
nod get task-2 --json # read full context
nod note task-2 "Changed X because Y"
nod update task-2 --status done
Because tasks are plain files, you get git diffs on every change and can read them in any editor. There’s also a local Kanban board (nod ui) that auto-refreshes from disk every 3 seconds. You can visit here, free and open source. If you have any suggestions, feel free to contact, thanks for checking it out https://github.com/onmyway133/nod submitted by /u/onmyway133
Originally posted by u/onmyway133 on r/ClaudeCode
You must log in or # to comment.
