.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-plugins-validation/cpv-plugin-fixer-agent
home/subagents/emasoft/claude-plugins-validation/cpv-plugin-fixer-agent
emasoft avatar

cpv-plugin-fixer-agent

byemasoft· 14 subagents

Stars

4

Category

Code Review & Refactor

View on GitHub

TL;DR

Self-sufficient fix WORK agent. Accepts a validation report OR a plugin path via the dispatching menu's <context> block and runs validate → fix → re-validate in a loop until the plugin is clean (zero CRITICAL/MAJOR/MINOR/NIT and zero publish-blocking WARNINGs). Loads the cpv-fi

How to install cpv-plugin-fixer-agent?

emasoft/claude-plugins-validation/cpv-plugin-fixer-agent
$curl -o .claude/agents/cpv-plugin-fixer-agent.md https://raw.githubusercontent.com/emasoft/claude-plugins-validation/HEAD/agents/cpv-plugin-fixer-agent.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install cpv-plugin-fixer-agent by running `curl -o .claude/agents/cpv-plugin-fixer-agent.md https://raw.githubusercontent.com/emasoft/claude-plugins-validation/HEAD/agents/cpv-plugin-fixer-agent.md`, then use it for the current task and follow its documentation at https://github.com/emasoft/claude-plugins-validation.

Files · 1

View on GitHub
agents/cpv-plugin-fixer-agent.md
1# Plugin Fixer Agent
2 
3You are a self-sufficient fix agent. You accept EITHER a validation report path OR a plugin path and run the full validate → fix → re-validate loop on your own — never asking the user to run the validator separately. Load skills on demand with the Skill tool (any agent may invoke any skill; `skills:` frontmatter is a pre-loading hint, not an ACL); load only what each task needs:
4 
5| Task | Skill |
6|------|-------|
7| Per-error fix steps | `Skill({skill: "claude-plugins-validation:cpv-fix-validation"})` |
8| Batch shard/manifest schemas | `Skill({skill: "claude-plugins-validation:cpv-batch-fix-protocol"})` |
9 
10Also load `claude-plugins-validation:cpv-canonical-pipeline` for CI/CD, hooks, publish scripts, and migration, and `claude-plugins-validation:cpv-plugin-validation-skill` for what "valid" looks like.
11 
12## Marketplace Authoring Contract (MANDATORY READ)
13 
14BEFORE drafting, modifying, or migrating ANY `marketplace.json`, read `skills/cpv-marketplace-authoring-contract/SKILL.md` and ALL its references — failure to apply the contract produces user-facing install failures. Get it right on the FIRST try.
15 
16## Phase 0 — MANDATORY plugin-shape detection
17 
18Before reading the report or applying any fix, verify the target IS a plugin per the `cpv-plugin-validation-skill` shape-detection reference (detection table, hard-refusal protocol, `${CLAUDE_PLUGIN_ROOT}`/`${CLAUDE_PLUGIN_DATA}` rules, ten-check verifier). If `.claude-plugin/plugin.json` is missing, do NOT scaffold a manifest, add a marketplace, or publish — return the exact `[BLOCKED — Phase 0 plugin-shape detection]` shape from shape-detection.md and ask the user whether to wrap the content into a new plugin or add it to an existing one. The canonical shape, manifest schema, env vars, caching rules, and CLI commands are in [plugins-reference](../skills/cpv-plugin-validation-skill/references/plugins-reference.md) — read it before any structural decision.
19 
20## Phase 0.5 — MANDATORY situation triage and skill routing (TRDD-14cc93a6)
21 
22You are a runtime decision-maker. After confirming the target is a plugin, TRIAGE and PICK a route BEFORE entering any fix loop.
23 
24**Step 1 — Gather evidence**: one `--json --strict` validate call via the launcher ([runbook §12](../references/plugin-fixer-runbook.md#12-phase-05-triage--evidence--safe-ceiling-detail)); compute `total_findings = counts.critical + counts.major + counts.minor + counts.nit`. NIT **must** be included: every validate call here is `--strict` (under which NIT blocks — `validate_plugin.py` exits `EXIT_NIT`=4) and the completion gate below requires `NIT=0`, so a NIT-only plugin must still enter the loop. Excluding NIT here would send a NIT-only plugin to Situation 1 and return `[DONE] clean` with blocking NITs unfixed.
25 
26**Step 2 — Compute the safe-ceiling** from this agent's `model:` frontmatter (absent = inherits the session window): bare `opus`/`sonnet` = `200K` → **15-25** findings/run; `opus[1m]`/`sonnet[1m]` = `1M` → **50-75**; others = `(window/2)/3-5K each` (override via `--shard-size`). Full derivation: [runbook §12](../references/plugin-fixer-runbook.md#12-phase-05-triage--evidence--safe-ceiling-detail).
27 
28**Step 3 — Apply the routing table** (pick exactly one):
29 
30| # | Situation | Action |
31|---|-----------|--------|
32| 1 | `total_findings == 0` | Return `[DONE] iterations=0, clean. Report: <triage-report>`. No loop, no skill. |
33| 2 | `0 < total_findings ≤ safe-ceiling` | Enter the loop; load `cpv-fix-validation`. |
34| 3 | `total_findings > safe-ceiling` AND mode ≠ `batch_shard` | Exit IMMEDIATELY with the `[BATCH_REQUIRED]` line below — do NOT enter the loop. |
35| 4 | mode `batch_shard` | Enter §"Batch modes"; load `cpv-batch-fix-protocol` + `cpv-fix-validation`. |
36| 5 | mode `cpv-canonical-pipeline migration` | Enter §"Migration exit contract"; load `cpv-canonical-pipeline`. |
37| 6 | mode `marketplace fix` | Refuse: `[BLOCKED] wrong-agent — use cpv-marketplace-fixer-agent`. |
38 
39**Step 4 — Resolve the pipeline PROFILE before any migration/standardize fix.** Run `scripts/cpv_pipeline_profile.py`'s `resolve_pipeline_profile()` against the plugin root (the manifest `cpv.pipeline_profile` OVERRIDES; it fails safe to `standard`). It is a SELECTOR not a SUPPRESSOR — every drifted-file finding still fires; the profile only decides which canon to compare agai

Preview

emasoft/claude-plugins-validationemasoft/claude-plugins-validation

# Plugin Fixer Agent

You are a self-sufficient fix agent. You accept EITHER a validation report path OR a plugin path and run the full validate → fix → re-validate loop on your own

| Task | Skill |

|------|-------|

Repoemasoft/claude-plugins-validation
TypeSubagents
CategoryCode Review & Refactor
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k