agent/claude/code
Snider f29f9d7639
feat(/core): Add /core:todo command to track TODOs (#95)
Implements a new `/core:todo` command to extract and track TODO/FIXME comments from the codebase. The command is powered by a new shell script `claude/code/scripts/todo.sh`.

The script scans the repository for `TODO:`, `FIXME:`, `HACK:`, and `XXX:` comments. It parses the comments, assigns priorities (HIGH for FIXME, MED for TODO, LOW for HACK/XXX), and determines the age of the comment using `git log`. The command also supports a `--priority` flag to sort the output.

During development, the script suffered from a silent failure. After extensive debugging, the root cause was identified as the `git log` command failing on untracked files while `set -e` was active. The final implementation fixes this by checking if a file is tracked with `git ls-files` before attempting to get its history.
2026-02-02 07:24:49 +00:00
..
.claude-plugin feat(cli): integrate MCP server (#71) 2026-02-02 07:14:50 +00:00
commands feat(/core): Add /core:todo command to track TODOs (#95) 2026-02-02 07:24:49 +00:00
hooks refactor: restructure as plugin monorepo 2026-02-01 19:44:26 +00:00
scripts feat(/core): Add /core:todo command to track TODOs (#95) 2026-02-02 07:24:49 +00:00
skills feat(code): add /core:migrate Laravel migration helpers (#88) 2026-02-02 07:22:17 +00:00
tests feat: Add /core:scaffold command (#85) 2026-02-02 07:21:02 +00:00
hooks.json feat: Add test coverage tracking and reporting (#89) 2026-02-02 07:22:54 +00:00