execute-refactor-item
Installation
SKILL.md
Execute Refactor Item
Apply the provided refactor item to the codebase, following the project's conventions and architecture.
The Job
- Read the refactor item (
id,title,description,rationale) carefully. - Review the project context to understand conventions, tech stack, and module structure.
- Plan the change: identify which files to create or modify and how the change fits into the existing architecture.
- Apply the refactor:
- Make the changes described in the item's
description. - Ensure the code compiles / type-checks without errors after the change.
- Run any quality checks defined in the project context and fix failures before finishing.
- Make the changes described in the item's
- Do not commit — the calling command manages git operations.