refactor(todo): organize TODO items into queued and completed directories
All checks were successful
CI / Test (push) Successful in 30s
CI / Lint (push) Successful in 25s
CI / Build (push) Successful in 21s

- Update README.md to reflect new todo/ directory structure with queued/ for pending items and completed/ for historical records.
- Rename docs/TODO.md to todo/completed/MODEL_ENFORCEMENT.md.
- Add example todo/queued/TODO_ITEM.md with initial TODO steps.
This commit is contained in:
Greg Gauthier 2026-03-02 19:03:27 +00:00
parent a9127deedd
commit 200b2f9aaf
3 changed files with 7 additions and 0 deletions

View File

@ -438,6 +438,9 @@ grokkit/
├── cmd/ # CLI commands (Cobra)
├── config/ # Viper configuration
├── docs/ # Documentation
├── todo/ # TODO tracking: queued/ (pending) and completed/ (historical record)
│ ├── queued/ # Pending TODO items
│ └── completed/ # Completed TODO items with history
├── internal/
│ ├── errors/ # Custom error types
│ ├── git/ # Git operations

4
todo/queued/TODO_ITEM.md Normal file
View File

@ -0,0 +1,4 @@
# TODO ITEM 1
- [ ] 1 step one
- [ ] 2 step two
- [ ] 3 step three