Stats
Links
Categories
Auto-discovered marketplace from olistic/doit
npx claudepluginhub olistic/doitTurn a markdown checklist into an executable prompt queue
A Claude Code plugin that turns a markdown checklist into an executable prompt queue. Define your TODOs, pick one, and let Claude do it.
Create a .claude/todos.md file in your project with a markdown checklist:
- [ ] refactor the auth middleware to use the new token format
- [x] add error handling to the payment webhook
- [ ] update the user schema to include `preferences`
make sure to add a migration and update the seed script
Run /doit in Claude Code. It lists your pending items:
Pending TODOs:
1. refactor the auth middleware to use the new token format
2. update the user schema to include `preferences`
make sure to add a migration and update the seed script
2 pending, 1 completed
Pick a number. Claude executes the prompt and marks it [x] when done.
In Claude Code, run:
/plugin marketplace add https://github.com/olistic/doit.git
/plugin install doit
The file is a standard markdown checklist (.claude/todos.md):
- [ ] marks a pending item- [x] marks a completed item.gitignore if your TODOs are personalMIT