wow-applying-fixer-workflow
Complete fixer agent workflow including report discovery, validation strategy (HIGH/MEDIUM/FALSE_POSITIVE confidence), fix application, and fix report generation. Use when implementing or updating fixer agents.
npx skills add majiayu000/claude-skill-registry --skill wow-applying-fixer-workflow --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Applying Fixer Workflow Common workflow pattern for all fixer agents in the maker-checker-fixer three-stage quality pipeline. ## When This Skill Loads This Skill auto-loads for fixer agents that need standardized workflow for applying validated fixes from checker audit reports. ## Core Fixer Workflow ### 1. Report Discovery **Auto-detect with manual override (default pattern)**: ```bash # Auto-detect latest audit report for agent family ls -t generated-reports/{agent-family}-*-audit.md | head -1 ``` **Implementation Steps**: 1. **Auto-detect latest**: Find most recent audit report in `generated-reports/` 2. **Allow manual override**: Accept explicit report path from user 3. **Verify report exists**: Check file exists before proceeding 4. **Parse report format**: Extract UUID chain and timestamp for fix report **Report Naming**: Uses 4-part format per Temporary Files Convention: - Pattern: `{agent-family}__{uuid-chain}__{timestamp}__audit.md` - Example: `docs__a1b2c3__2025-12-14--20-45__audit.md` ### 2. Validation Strategy **CRITICAL PRINCIPLE**: NEVER trust checker findings blindly. ALWAYS re-validate before applying fixes. **For EACH finding in audit report**: ``` Read finding →
- When This Skill Loads
- Core Fixer Workflow
- 1. Report Discovery
- 2. Validation Strategy
- 3. Mode Parameter Handling
- 4. Fix Application
- 5. Fix Report Generation
- 6. Trust Model: Checker Verifies, Fixer Applies
- Integration with Other Skills
- Tool Requirements
- Common Patterns
- Pattern 1: Simple File-Based Fix
- Pattern 2: Subjective Quality Fix
- Pattern 3: False Positive
Auto-detect latest audit report for agent family
ls -t generated-reports/{agent-family}-*-audit.md | head -1What does the wow-applying-fixer-workflow skill do?
Complete fixer agent workflow including report discovery, validation strategy (HIGH/MEDIUM/FALSE_POSITIVE confidence), fix application, and fix report generation. Use when implementing or updating fixer agents.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill wow-applying-fixer-workflow --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
