start-refactor-task
Start Refactor Task
You are implementing a specific refactoring task from a plugin refactoring plan.
<task_input> $ARGUMENTS </task_input>
Parse Arguments
task_file_path: Path to the task file (required)--task <id>: Task ID to start (optional, defaults to first ready task)--complete <id>: Task ID to mark complete (optional)
If --complete <task-id> Provided
- READ the task file
- EDIT the task status from
🔄 IN PROGRESSto✅ COMPLETE - Output:
Task {ID}: {Name} marked as COMPLETE - EXIT
Starting a Task
1. Load Context
READ the task file. It contains everything you need:
- Task details (status, dependencies, priority, complexity)
- Target file being refactored
- Issue type (SKILL_SPLIT, AGENT_OPTIMIZE, DOC_IMPROVE, ORPHAN_RESOLVE, STRUCTURE_FIX)
- Acceptance criteria (your definition of done)
- Required inputs (design spec sections, source files to read)
- Expected outputs (files to create/modify)
- Verification steps (how to prove completion)
The task file header links to the design spec. READ it for refactoring context.
2. Select Task
If --task <id> specified: Use that task.
Otherwise, find the first task where:
- Status is
❌ NOT STARTED - All dependencies are
✅ COMPLETEor "None"
If no ready task: Output "No ready tasks" and EXIT.
3. Update Status
EDIT the task file: Change ❌ NOT STARTED to 🔄 IN PROGRESS
4. Plugin.json Safety — Read Before Creating Any Component
Commands, agents, and skills placed in default locations (commands/, agents/, skills/) are auto-discovered. Do NOT add them to plugin.json.
If a component is in a non-default location and must be declared:
- Read the existing array in
plugin.jsonfirst - Carry forward every existing entry
- Add the new entry alongside them
Declaring any subset overrides auto-discovery for the entire key — unlisted components become invisible. It is all or nothing.
5. Track Progress
Use the Task API to track acceptance criteria:
TaskCreate(
subject="AC1: {criterion}",
description="{detailed criterion description}",
activeForm="Implementing {criterion}"
)
TaskCreate(
subject="Verification: Run all verification steps",
description="{verification steps}",
activeForm="Running verification"
)
6. Implement
Work through each acceptance criterion based on the issue type:
For SKILL_SPLIT Tasks
- READ the current skill file completely
- READ the design spec section for this split
- IDENTIFY content domains as specified in design
- CREATE new skill directories and SKILL.md files
- DISTRIBUTE content according to design spec
- UPDATE cross-references between skills
- CREATE shared references if specified
- VERIFY all links resolve
For AGENT_OPTIMIZE Tasks
- READ the current agent file
- READ the design spec section for optimization
- LOAD reference skills: claude-skills-overview-2026, prompt-optimization
- REWRITE description with trigger keywords
- IMPROVE instruction clarity
- REVIEW tool restrictions
- VALIDATE frontmatter format
For DOC_IMPROVE Tasks
- READ the current file
- READ the design spec section for improvements
- IDENTIFY specific quality issues
- REWRITE with improved clarity, triggers, examples
- ENSURE proper markdown formatting
- VALIDATE frontmatter if applicable
For ORPHAN_RESOLVE Tasks
- READ the orphaned file
- READ the design spec classification
- IF integrating: ADD link from appropriate SKILL.md
- IF removing: DELETE the file (after confirming no references)
- IF merging: COMBINE content with target file
For STRUCTURE_FIX Tasks
- READ all affected files
- IDENTIFY broken links or structural issues
- FIX links to point to correct locations
- VERIFY all cross-references resolve
Mark todos as you complete them.
7. Verify
Run each verification step from the task. All must pass.
Common verification steps:
Read the created/modified files to confirm contentVerify all internal links resolveCheck frontmatter validates against schemaConfirm file structure matches design spec
8. Complete
When all verification passes:
/plugin-creator:start-refactor-task {task_file_path} --complete {task_id}
Working Environment
Collaborative Agents
Other agents may be working nearby on related tasks. If you notice edits to files you didn't make:
- This is intentional - the user or other agents made those changes
- Include these changes in your considerations
- If the changes block your work, STOP and report to the orchestrator with your reasoning
Reference Skills
Load these skills for guidance on proper formats:
| Skill | Use For |
|---|---|
| claude-skills-overview-2026 | Skill SKILL.md format |
| claude-plugins-reference-2026 | Plugin structure |
| Command format | |
| hooks-guide | Hooks format |
| prompt-optimization | Agent prompt optimization |
Research and Knowledge
Be bold with research. Be skeptical of built-in knowledge.
Your training data may be outdated. The codebase and reference skills are the source of truth.
Before implementing:
- READ existing skills/agents that are well-formatted
- CHECK reference skills for format requirements
- USE context7, Ref MCPs for documentation questions
- VERIFY patterns match what's actually in the codebase
# Good: Verify format before writing
READ ./plugins/example-plugin/skills/example/SKILL.md # Check actual format
Skill(skill="plugin-creator:claude-skills-overview-2026") # Load format reference
Quality Standards
- Follow existing patterns in the plugin
- Preserve content fidelity during splits (no information loss)
- Maintain or improve frontmatter quality
- Ensure all cross-references resolve
- Keep token counts within thresholds (run
uvx skilllint@latest check <skill-path>after writing and follow its guidance on sizing)
Error Handling
Blocked by dependency: Report which tasks must complete first.
Verification failure: After 3 fix attempts, STOP and report the failure details.
Design conflict: If the design spec conflicts with codebase reality, STOP and report.
Content loss: If splitting would lose content, STOP and request design clarification.
More from jamie-bitflight/claude_skills
perl-lint
This skill should be used when the user asks to lint Perl code, run perlcritic, check Perl style, format Perl code, run perltidy, or mentions Perl Critic policies, code formatting, or style checking.
24brainstorming-skill
You MUST use this before any creative work - creating features, building components, adding functionality, modifying behavior, or when users request help with ideation, marketing, and strategic planning. Explores user intent, requirements, and design before implementation using 30+ research-validated prompt patterns.
11design-anti-patterns
Enforce anti-AI UI design rules based on the Uncodixfy methodology. Use when generating HTML, CSS, React, Vue, Svelte, or any frontend UI code. Prevents "Codex UI" — the generic AI aesthetic of soft gradients, floating panels, oversized rounded corners, glassmorphism, hero sections in dashboards, and decorative copy. Applies constraints from Linear/Raycast/Stripe/GitHub design philosophy: functional, honest, human-designed interfaces. Triggers on: UI generation, dashboard building, frontend component creation, CSS styling, landing page design, or any task producing visual interface code.
7python3-review
Comprehensive Python code review checking patterns, types, security, and performance. Use when reviewing Python code for quality issues, when auditing code before merge, or when assessing technical debt in a Python codebase.
7hooks-guide
Cross-platform hooks reference for AI coding assistants — Claude Code, GitHub Copilot, Cursor, Windsurf, Amp. Covers hook authoring in Node.js CJS and Python, per-platform event schemas, inline-agent hooks and MCP in agent frontmatter, common JSON I/O, exit codes, best practices, and a fetch script to refresh docs from official sources. Use when writing, reviewing, or debugging hooks for any AI assistant.
7agent-creator
Create high-quality Claude Code agents from scratch or by adapting existing agents as templates. Use when the user wants to create a new agent, modify agent configurations, build specialized subagents, or design agent architectures. Guides through requirements gathering, template selection, and agent file generation following Anthropic best practices (v2.1.63+).
6