Agent skill · Workflow & Productivity

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Path: skills/agent/wow-applying-fixer-workflow/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 →

What's inside
Steps it walks through
  1. When This Skill Loads
  2. Core Fixer Workflow
  3. 1. Report Discovery
  4. 2. Validation Strategy
  5. 3. Mode Parameter Handling
  6. 4. Fix Application
  7. 5. Fix Report Generation
  8. 6. Trust Model: Checker Verifies, Fixer Applies
  9. Integration with Other Skills
  10. Tool Requirements
  11. Common Patterns
  12. Pattern 1: Simple File-Based Fix
  13. Pattern 2: Subjective Quality Fix
  14. Pattern 3: False Positive
Ships with 1 file
  • metadata.json
Commands it runs
Auto-detect latest audit report for agent family
ls -t generated-reports/{agent-family}-*-audit.md | head -1
More from claude-skill-registry
All skills →
About this skill
What 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.

Keep going