Claude Code Plugins

Community-maintained marketplace

Feedback

Running Validation Loops

@HR-AR/Project-Conductor
0
0

Execute self-correcting validation workflow. Use when validation fails, tests fail, or build breaks.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name Running Validation Loops
description Execute self-correcting validation workflow. Use when validation fails, tests fail, or build breaks.

Validation Loop

When to Use

  • npm run validate fails
  • CI/CD breaks
  • Test or build failures

Process

  1. Capture full error output
  2. Analyze root cause in context of examples/
  3. Apply minimal fix aligned with patterns
  4. Re-run validation
  5. Repeat until success (max 5 attempts)

Commands

npm run validate

Success Criteria

  • All gates pass
  • Fix follows patterns in examples/
  • No new anti-patterns introduced