hone:broken-windows-hunt
Installation
SKILL.md
Broken Windows Hunt
What This Skill Does
Scans the codebase for signs of accumulated technical neglect -- the "broken windows" that signal declining quality and invite further shortcuts. Each finding is a small fix that prevents larger decay.
Detected signal categories:
- Stale TODOs: TODO/FIXME/HACK/XXX comments with no linked issue or with dates older than 90 days.
- Disabled tests: tests marked skip, pending, xfail, or commented out.
- Lint suppressions: inline ignores, nolint, eslint-disable, type: ignore, and similar markers.
- Commented-out code: blocks of commented code longer than 3 lines that are clearly executable code, not documentation.
- Dead imports: imported symbols that are not referenced in the
Related skills