Agent skill

start-refactor-task

Start or complete a specific refactoring task from a task file. Use when a sub-agent needs to pick up a refactoring task, update its status, implement acceptance criteria, and run verification steps.

Stars 33
Forks 4

Install this agent skill to your Project

npx add-skill https://github.com/Jamie-BitFlight/claude_skills/tree/main/plugins/plugin-creator/skills/start-refactor-task

SKILL.md

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

  1. READ the task file
  2. EDIT the task status from 🔄 IN PROGRESS to ✅ COMPLETE
  3. Output: Task {ID}: {Name} marked as COMPLETE
  4. 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 ✅ COMPLETE or "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:

  1. Read the existing array in plugin.json first
  2. Carry forward every existing entry
  3. 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

  1. READ the current skill file completely
  2. READ the design spec section for this split
  3. IDENTIFY content domains as specified in design
  4. CREATE new skill directories and SKILL.md files
  5. DISTRIBUTE content according to design spec
  6. UPDATE cross-references between skills
  7. CREATE shared references if specified
  8. VERIFY all links resolve

For AGENT_OPTIMIZE Tasks

  1. READ the current agent file
  2. READ the design spec section for optimization
  3. LOAD reference skills: claude-skills-overview-2026, prompt-optimization
  4. REWRITE description with trigger keywords
  5. IMPROVE instruction clarity
  6. REVIEW tool restrictions
  7. VALIDATE frontmatter format

For DOC_IMPROVE Tasks

  1. READ the current file
  2. READ the design spec section for improvements
  3. IDENTIFY specific quality issues
  4. REWRITE with improved clarity, triggers, examples
  5. ENSURE proper markdown formatting
  6. VALIDATE frontmatter if applicable

For ORPHAN_RESOLVE Tasks

  1. READ the orphaned file
  2. READ the design spec classification
  3. IF integrating: ADD link from appropriate SKILL.md
  4. IF removing: DELETE the file (after confirming no references)
  5. IF merging: COMBINE content with target file

For STRUCTURE_FIX Tasks

  1. READ all affected files
  2. IDENTIFY broken links or structural issues
  3. FIX links to point to correct locations
  4. 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 content
  • Verify all internal links resolve
  • Check frontmatter validates against schema
  • Confirm 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:

  1. READ existing skills/agents that are well-formatted
  2. CHECK reference skills for format requirements
  3. USE context7, Ref MCPs for documentation questions
  4. 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.

Expand your agent's capabilities with these related and highly-rated skills.

Jamie-BitFlight/claude_skills

ccc

This skill should be used when code search is needed (whether explicitly requested or as part of completing a task), when indexing the codebase after changes, or when the user asks about ccc, cocoindex-code, or the codebase index. Trigger phrases include 'search the codebase', 'find code related to', 'update the index', 'ccc', 'cocoindex-code'.

33 4
Explore
Jamie-BitFlight/claude_skills

agent-browser

Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.

33 4
Explore
Jamie-BitFlight/claude_skills

delegate

Quick delegation template for sub-agent prompts. Use when assigning work to a sub-agent, before invoking the Agent tool, or when preparing prompts for specialized agents. Provides the WHERE-WHAT-WHY framework. For comprehensive delegation guidance, activate the agent-orchestration how-to-delegate skill.

33 4
Explore
Jamie-BitFlight/claude_skills

swarm-spawning

Spawn agents and teammates in Claude Code swarms. Use when choosing between subagents vs teammates, selecting agent types (Explore, Plan, general-purpose, plugin agents), configuring spawn backends (in-process, tmux, iterm2), or setting environment variables for spawned agents.

33 4
Explore
Jamie-BitFlight/claude_skills

knowledge-explorer

Manage the research/ knowledge base (KB) of tool and library research entries. Use when browsing KB topics, adding new research entries, updating existing entries with dated revisions, fetching GitHub repo metadata into a draft KB entry, or migrating old-format entries to skill-spec frontmatter. Triggers on tasks like "what do we have on X", "add this to the KB", "update the KB entry for Y", "fetch github info for owner/repo", or "migrate old entries".

33 4
Explore
Jamie-BitFlight/claude_skills

design-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.

33 4
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results