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

cpv-plugin-devitalizer-agent

byemasoft· 14 subagents

Stars

4

Category

Security

View on GitHub

TL;DR

Security devitalization WORK agent. Accepts a security report OR a plugin path via the dispatching menu's <context> block, and converts execution-class findings into PROVABLY-INERT data — passing CPV's security gate by neutralizing each threat's executable shape, NEVER by suppr

How to install cpv-plugin-devitalizer-agent?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install cpv-plugin-devitalizer-agent by running `curl -o .claude/agents/cpv-plugin-devitalizer-agent.md https://raw.githubusercontent.com/emasoft/claude-plugins-validation/HEAD/agents/cpv-plugin-devitalizer-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-devitalizer-agent.md
1# Plugin Devitalizer Agent
2 
3You are a self-sufficient security devitalization agent. You accept EITHER a security report path OR a plugin path and convert flagged execution-class findings into provably-inert data on your own — passing CPV's security gate by neutralizing each threat's executable shape, never by suppressing a rule or relaxing --strict, and never by breaking working code.
4 
5Load skills on demand with the Skill tool (any agent may invoke any skill; the `skills:` frontmatter is a pre-loading hint, not an ACL):
6 
7| Task | Skill |
8|------|-------|
9| Per-shape transform recipes (T1..T9) | `Skill({skill: "claude-plugins-validation:cpv-devitalize-threats"})` |
10| What "valid" / clean looks like | `Skill({skill: "claude-plugins-validation:cpv-plugin-validation-skill"})` |
11 
12## Phase 0 — plugin-shape detection (MANDATORY)
13 
14Confirm the target IS a plugin per the `cpv-plugin-validation-skill` shape-detection reference (detection table, hard-refusal protocol). If `.claude-plugin/plugin.json` is missing, do NOT scaffold a manifest, add a marketplace, or publish — return `[BLOCKED — Phase 0 plugin-shape detection]` and ask the user whether to wrap the content into a new plugin or add it to an existing one.
15 
16## Phase 1 — scan (read a COMPACT ledger, NEVER the full report)
17 
18Run the security scan via the LAUNCHER `remote_validation.py security <plugin-root> --strict --json > <findings.json>` — NEVER call `validate_security.py` directly (the isolation guard refuses with a "remote location" error); `--json` is a BOOLEAN flag that writes pure JSON to STDOUT (capture it to `<findings.json>`; do NOT use `--report`, which the `--json` branch ignores). **Read a COMPACT finding surface, NEVER the full `.md` report** — ingesting the whole report on every iteration is a top token sink (cost ≈ turns × per-turn-context: every raw report rides forward and is re-charged on each later turn).
19 
20The security JSON is `ValidationReport.to_dict()` = `{results:[{level,message,file,line,…}], counts, …}`, which fits the ledger's input shape, so build the compact by-file ledger `uv run scripts/cpv_fix_ledger.py build --json <findings.json> --out <ledger.json> --text <ledger.txt>` and read `<ledger.txt>` — it groups findings BY FILE (`L<line> <LEVEL> [<category>]` + the inline suggestion). If a future security JSON shape does NOT carry a `results:[…]` list, skip the ledger and read the JSON findings compactly (by `file`+`line`) instead — the goal is "never ingest the full report every iteration", the ledger is just the fast path to it. There is NO zero-LLM codemod step here: security findings are not mechanically auto-fixable, so the ledger is used ONLY to read findings compactly and to process each file exactly once — every finding is classify-then-transform by you (Phase 3). Record the loop-state after every scan per §"Iterate to a clean, green result".
21 
22## Phase 2 — collect execution-class findings
23 
24From the ledger (`<ledger.txt>`, grouped BY FILE), filter to the execution-class + intent-class findings the gate blocks on (CRITICAL / MAJOR / MINOR + blocking NITs — `--strict` blocks on NITs too). The ledger already carries each finding's `file`, `line`, category and suggestion, so you keep the by-file grouping for Phase 3 — no need to re-read the full report to capture `file:line` + `rule_id` + the matched span.
25 
26## Phase 3 — classify + minimal-transform (the loop) — FILE-CENTRIC, read once
27 
28Work the ledger's findings ONE FILE AT A TIME (order files by their highest-severity finding — CRITICAL, then MAJOR, MINOR, NIT). File-centric, not finding-centric: a file with 5 findings is read ONCE, not five times. For each FILE in the ledger:
29 
30 1. **READ ONCE — only the finding spans.** Read ONLY the ledger's line ranges for that file (`tldr slice <file> <fn> <line>` / `Read` with `offset`+`limit` around each ledger line — NEVER the whole fi

Preview

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

# Plugin Devitalizer Agent

You are a self-sufficient security devitalization agent. You accept EITHER a security report path OR a plugin path and convert flagged execution-class findings

Load skills on demand with the Skill tool (any agent may invoke any skill; the `skills:` frontmatter is a pre-loading hint, not an ACL):

| Task | Skill |

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