What problem does it solve? FIXME comments accumulate in codebases as reminders of unfinished work, but they are easy to ignore and often describe multi-file changes that are tedious to track down and complete manually. This Skill discovers every FIXME, expands multiline comment blocks into full instructions, groups related items across files, and implements the underlying code changes. ## Core Features & Use Cases - Codebase-wide discovery: Runs a shell script that locates every FIXME with surrounding context, skipping .git, target, node_modules, and vendor directories. - Cross-file consolidation: Groups related FIXMEs that describe facets of one larger task into a single coherent implementation plan. - Complete implementation with verification: Finishes the actual code changes, removes comments only after the work is done, runs the project test suite, and re-scans to confirm no FIXMEs remain. - Use Case: Before a release, ask the agent to resolve all outstanding FIXMEs; it finds a type refactor hinted at in three different files, implements the new type, updates the service and UI layers, and verifies with cargo insta test. ## Quick Start Ask the agent to find and resolve all FIXME comments in the repository, implementing the work each one describes.