with one click
reclassify
// Use when reclassifying a plan's type (bug/feature/chore) during the Planning phase. Triggered when the initial classification was wrong or the scope changed. Only works before plan is approved (status must be Planning).
// Use when reclassifying a plan's type (bug/feature/chore) during the Planning phase. Triggered when the initial classification was wrong or the scope changed. Only works before plan is approved (status must be Planning).
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | reclassify |
| description | Use when reclassifying a plan's type (bug/feature/chore) during the Planning phase. Triggered when the initial classification was wrong or the scope changed. Only works before plan is approved (status must be Planning). |
| allowed-tools | Read, Edit, Glob, Bash |
| disable-model-invocation | true |
Changes the type: field in a plan's frontmatter. Only allowed during status: Planning.
The skill takes a single argument: the new type. Must be one of: bug, feature, chore.
Example: /reclassify bug
The argument must be one of: bug, feature, chore. If missing or invalid, show usage and exit.
Search for plan files in docs/plans/*.md. If there's exactly one plan with status: Planning, use it. If there are multiple, list them and ask the user to specify which one. If none, report that no plans are in Planning status.
Read the plan's frontmatter. If the status is NOT Planning, reject with:
Cannot reclassify: plan status is '{status}'. Type can only be changed during Planning phase.
To change type after approval, first change status back to Planning.
Use the Edit tool to change the type: field in the plan's YAML frontmatter to the new value.
Report:
Reclassified {plan_file} from '{old_type}' to '{new_type}'.
git add {plan_file}
git commit -m "Reclassify {plan_file} as {new_type}"