plugins/plugin-creator/skills/subagent-refactoring-methodology/SKILL.md
Analysis criteria, transformation patterns, output format, and validation checklist for refactoring Claude Code agent prompt files. Load this skill when preparing to run the subagent-refactorer agent or when reviewing agent prompt files for structural, model optimization, or instruction quality improvements.
npx skillsauth add jamie-bitflight/claude_skills subagent-refactoring-methodologyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Constitutional AI patterns: self-critique loops, validation checkpoints before output, principles-based over rules-based, evidence-based reasoning enforced.
XML usage: strategic tagging for specific sections only — NOT full document conversion.
STRONG imperatives: MUST, ALWAYS, NEVER, REQUIRED, FORBIDDEN
WEAK qualifiers to eliminate: "try to", "should", "consider", "might"
ACTIVE: "Generate X"
PASSIVE: "X should be generated" ← eliminate
CONCRETE: "Include exactly 3 examples with code blocks"
VAGUE: "Include some examples" ← eliminate
Check for contradictory instructions. Claude prioritizes system parameter and Constitutional AI principles when conflicting.
VAGUE → EXPLICIT:
"Try to use examples" → "MUST include minimum 2 examples with full code blocks"
"Should consider error handling" → "ALWAYS validate inputs; NEVER proceed with invalid data"
PASSIVE → ACTIVE:
"The file should be read" → "READ the file using the Read tool"
"Analysis may be needed" → "ANALYZE [specific aspect] using [specific methodology]"
AMBIGUOUS → QUANTIFIED:
"Some details" → "Minimum 3 specific details with examples"
"Brief description" → "1-2 sentence description, maximum 50 words"
# Role and Objective
You are a [specific role]. Your mission is [clear, singular objective].
## Constraints
You MUST NOT:
- [Explicit limitation]
## Process Steps
<process>
<step_1>Analyze requirements</step_1>
<step_2>Design solution</step_2>
<step_3>Generate implementation</step_3>
<step_4>Validate output</step_4>
</process>
## Output Format
[Format specification with placeholders]
## Examples
<examples>
<example id="1">
<input>[Exact input]</input>
<output>[Complete output in exact format]</output>
<rationale>[Official source supporting this pattern]</rationale>
</example>
</examples>
KEY: markdown headers for structure, XML tags strategically for specific sections (process steps, examples), NOT wrapping the entire agent.
For each tool in an agent's list, ask: "Would the agent fail without this tool?" If no, remove it.
File reading/analysis: Read, Grep, Glob
File creation: Write, Edit
Research/documentation: WebSearch, WebFetch, MCP Ref tools
Code operations: Read, Write, Edit, Bash
Orchestration: Task, TodoWrite
Prefer specific tools over generic (Grep over Bash for search).
Deliver three artifacts:
1. Analysis report
# Subagent Refactoring Analysis: [Agent Name]
## Structural Issues Identified
- [Issue with specific example from original]
## Model Optimization Opportunities
- [Opportunity with citation to official source]
## Instruction Quality Issues
- [Issue: quote original instruction, explain problem]
## Research Citations
1. [Source URL] — [Key finding applied]
2. Refactored agent file
## Changes Summary
Major Structural Changes:
1. [Change] — [Rationale with citation]
Instruction Improvements:
- [X vague phrases replaced with imperatives]
- [Y examples added]
- [Z tools removed]
<new_agent_file>
[Complete agent file]
</new_agent_file>
3. Validation checklist — confirm all items before delivery:
Anti-patterns to avoid:
development
When an application needs to store config, data, cache, or state files. When designing where user-specific files should live. When code writes to ~/.appname or hardcoded home paths. When implementing cross-platform file storage with platformdirs.
testing
Enforce mandatory pre-action verification checkpoints to prevent pattern-matching from overriding explicit reasoning. Use this skill when about to execute implementation actions (Bash, Write, Edit) to verify hypothesis-action alignment. Blocks execution when hypothesis unverified or action targets different system than hypothesis identified. Critical for preventing cognitive dissonance where correct diagnosis leads to wrong implementation.
tools
Reference guide for the Twelve-Factor App methodology — 15 principles (12 original + 3 modern extensions) for building portable, resilient, cloud-native applications. Use when evaluating application architecture, designing cloud-native services, reviewing codebases for methodology compliance, advising on configuration, scaling, observability, security, and deployment patterns. Incorporates the 2025 open-source community evolution and cloud-native reinterpretations of each factor.
tools
Converts user-facing documentation (how-to guides, tutorials, API references, examples) in any format — Markdown, PDF, DOCX, PPTX, XLSX, AsciiDoc, RST, HTML, Jupyter notebooks, man pages, TOML/YAML/JSON configs, and plain text — into Claude Code skill directories with SKILL.md plus thematically grouped references/*.md files. Use when given a docs directory or mixed-format documentation to transform into an AI skill. Uses MCP file-reader server for binary formats.