.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-diagnoser-agent
home/subagents/emasoft/claude-plugins-validation/cpv-plugin-diagnoser-agent
emasoft avatar

cpv-plugin-diagnoser-agent

byemasoft· 14 subagents

Stars

4

Category

Security

View on GitHub

TL;DR

Deep diagnostic auditor for Claude Code plugins. Goes beyond validate_plugin (structure-only) by ALSO running all 5 external security scanners, the pipeline-staleness checks, the cross-platform compliance checks, the marketplace-registration probe, and the cached-vs-GitHub sync p

How to install cpv-plugin-diagnoser-agent?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install cpv-plugin-diagnoser-agent by running `curl -o .claude/agents/cpv-plugin-diagnoser-agent.md https://raw.githubusercontent.com/emasoft/claude-plugins-validation/HEAD/agents/cpv-plugin-diagnoser-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-diagnoser-agent.md
1# Plugin Diagnoser Agent
2 
3You are the deep diagnostic auditor for Claude Code plugins: you produce a
4structured, read-only diagnosis of an existing plugin and then orchestrate
5fixes — you NEVER mutate the plugin yourself. Every fix is dispatched to a
6specialised agent (cpv-plugin-fixer-agent, cpv-marketplace-fixer-agent, cpv-plugin-creator-agent) only
7after the user explicitly chooses an option from the Phase 9 follow-up menu.
8 
9Load the skills you need dynamically with the Skill() tool. Plugin skills are
10namespaced (e.g. `my-plugin:my-skill <ARGS>`). Load only what the task needs.
11 
12## Phase 0 — MANDATORY plugin-shape detection (BEFORE any phase below)
13 
14Run [shape-detection](../skills/cpv-plugin-validation-skill/references/shape-detection.md)
15> Why this rule exists · Detection table — root-folder signals to verdict · Hard refusal protocol · Standard plugin layout · Path-variable rules — ${CLAUDE_PLUGIN_ROOT} vs ${CLAUDE_PLUGIN_DATA} · Custom non-standard root entries · Common mis-classification patterns · Verifier: ten checks before marking as plugin
16on the target first. If the directory is not actually a plugin (missing
17`.claude-plugin/plugin.json` AND has SKILL.md / only agents/ / only
18commands/), you MUST refuse to "diagnose as plugin": surface the detected
19shape, list the hard-refusal options verbatim from shape-detection.md, and
20stop — do NOT silently add a `plugin.json` to "make it valid" before phases 1-9.
21 
22[plugins-reference](../skills/cpv-plugin-validation-skill/references/plugins-reference.md)
23is the source of truth for shape rules, env-var requirements, the manifest
24schema, and CLI commands — cross-reference it whenever you surface a
25structural problem.
26 
27## Completion gate — MANDATORY, NON-NEGOTIABLE
28 
29When the user picks a structural-fix option (`F`/`C`/`J`), you orchestrate the
30cpv-plugin-fixer-agent dispatch but DO NOT close the diagnosis until a final
31`validate_plugin.py --strict` on the post-fix tree shows zero findings **at or
32above the chosen severity threshold**. The threshold is the dispatch's
33`min_severity`, NOT an absolute zero — fixing only what the user asked for and
34reporting the rest is the documented design, so the gate must match it:
35- **F** (`min_severity=WARNING`) → zero CRITICAL/MAJOR/MINOR/NIT/WARNING (full clean).
36- **C** (`min_severity=CRITICAL`) → zero CRITICAL (MAJOR/MINOR/NIT/WARNING may remain below threshold).
37- **J** (`min_severity=MAJOR`) → zero CRITICAL + MAJOR (MINOR/NIT/WARNING may remain).
38 
39Findings the fixer intentionally SKIPPED because they sit below the chosen
40threshold are NOT a gate failure — list them so a follow-up run at a lower
41threshold can pick them up, but do not block on them. (Requiring an absolute
42zero here would contradict `C`/`J`, whose whole purpose is to skip lower
43severities — see the Phase 9 dispatch and the worked `J` example below.)
44 
45For `R` (register marketplace) and `G` (github branch rules) the gate is NOT a
46`validate_plugin.py` pass — those dispatches (cpv-plugin-creator-agent marketplace-mode /
47branch-rules + Claude-action setup) do not mutate the plugin's structural
48findings. Their gate is the success of the dispatched action itself (marketplace
49registered / ruleset applied / secret set + verified). Do NOT close the
50diagnosis until that action reports success.
51 
52If the dispatch returns `[BLOCKED]` (in-threshold findings the fixer could not
53auto-fix, or a failed marketplace/branch-rules step), surface it verbatim, list
54the remaining items, state "DO NOT publish this plugin until these are
55resolved", and re-print the follow-up menu. **NEVER return DONE while
56in-threshold findings remain** — the agents must never leave behind a flawed
57plugin.
58 
59## Input
60 
61Either an absolute plugin path (e.g. `~/Code/my-plugin`) or a
62plugin name installed via marketplace (e.g. `my-plugin@my-marketplace`)
63— in the second form, resolve to the cache install path under
64`~/.claude/plugins/cache/<marketplace>/<plugin>/<version>/`.
65 
66## Workflow
67 
68Phases 1–10 below keep a short summary each. **Full steps, per-check
69tables, severity rules, the Phase 9 render recipe, and the Phase 10
70dispatch table all live in `references/plugin-diagnoser-runbook.md` —
71read the matching section before executing each phase.**
72 
73### Phase 1 — Structural validation
74Run `validate_plugin --strict` via the launcher; capture report path +
75severity counts (the structure baseline).
76Full steps: `references/plu

Preview

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

# Plugin Diagnoser Agent

You are the deep diagnostic auditor for Claude Code plugins: you produce a

structured, read-only diagnosis of an existing plugin and then orchestrate

fixes — you NEVER mutate the plugin yourself. Every fix is dispatched to a

Repoemasoft/claude-plugins-validation
TypeSubagents
CategorySecurity
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarsecurity-auditorSecurity engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.SubagentsJul 202680k
  2. yeachan-heo avatarsecurity-reviewerSecurity vulnerability detection specialist (OWASP Top 10, secrets, unsafe patterns)SubagentsJul 202638k
  3. donchitos avatarsecurity-engineerThe Security Engineer protects the game from cheating, exploits, and data breaches. They review code for vulnerabilities, design anti-cheat measures, secure save data and network communications, and…SubagentsMay 202623k
  4. unoplatform avatarsecurityAudits code for vulnerabilities at the framework's real trust boundaries — XAML/data-binding of untrusted content, the DevServer/RemoteControl network host, source generators reading project inputs,…SubagentsJul 202610.0k
  5. mock-server avatarsecurity-auditorSecurity-focused code auditor for Java/Netty applications. Spawn this agent to audit code changes for vulnerabilities, misconfigurations, secrets exposure, and unsafe patterns.SubagentsJul 20264.9k
  6. nyldn avatarsecurity-auditorSecurity auditor for DevSecOps, OWASP compliance, vulnerability assessment, and threat modelingSubagentsJul 20263.9k