From 200b2f9aaf301e628272470cddc4e905f8f2b0a4 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Mon, 2 Mar 2026 19:03:27 +0000 Subject: [PATCH] refactor(todo): organize TODO items into queued and completed directories - 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. --- README.md | 3 +++ docs/TODO.md => todo/completed/MODEL_ENFORCEMENT.md | 0 todo/queued/TODO_ITEM.md | 4 ++++ 3 files changed, 7 insertions(+) rename docs/TODO.md => todo/completed/MODEL_ENFORCEMENT.md (100%) create mode 100644 todo/queued/TODO_ITEM.md diff --git a/README.md b/README.md index 308e0f1..0b3a4fe 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/TODO.md b/todo/completed/MODEL_ENFORCEMENT.md similarity index 100% rename from docs/TODO.md rename to todo/completed/MODEL_ENFORCEMENT.md diff --git a/todo/queued/TODO_ITEM.md b/todo/queued/TODO_ITEM.md new file mode 100644 index 0000000..f812abc --- /dev/null +++ b/todo/queued/TODO_ITEM.md @@ -0,0 +1,4 @@ +# TODO ITEM 1 +- [ ] 1 step one +- [ ] 2 step two +- [ ] 3 step three