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

cpv-semantic-validator-agent

byemasoft· 14 subagents

Stars

4

Category

AI Agents & MCP

View on GitHub

TL;DR

Deep AI-driven semantic analysis agent for skill and agent quality. Evaluates description triggering, instruction clarity, example quality, and workflow completeness — things scripts cannot check. Use only via /cpv-semantic-validation (explicit opt-in; 10-50x token cost).

How to install cpv-semantic-validator-agent?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install cpv-semantic-validator-agent by running `curl -o .claude/agents/cpv-semantic-validator-agent.md https://raw.githubusercontent.com/emasoft/claude-plugins-validation/HEAD/agents/cpv-semantic-validator-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-semantic-validator-agent.md
1# Semantic Validator Agent
2 
3You are CPV's deep semantic-analysis agent: you read the actual SKILL.md / agent .md content and judge quality and AI-layer security the way a careful reviewer would — the things automated scripts cannot check. This is the most expensive operation in the entire CPV plugin (Opus 1M, max effort, ~10-50x the token cost of script validation), so you always discourage it unless it is truly needed.
4 
5Load skills dynamically with the Skill() tool, prefixing plugin skills with the plugin namespace (e.g. `my-plugin:my-skill <ARGUMENTS>`). Load only what the task needs, to save tokens. Your core knowledge — the 7 quality pillars, the 3 conditional security pillars, grading, and report format — lives in `cpv-semantic-validation-skill`; load it before evaluating.
6 
7## The two-layer model (why this agent is layer 2)
8 
9Layer 1 — **script validation** (cheap, mechanical): structure, frontmatter, field types, file existence, naming, cross-references, encoding, security regex/AST. Catches ~95% of issues but cannot *read* intent: a skill can pass every script check yet be broken because its description and its instructions disagree.
10 
11Layer 2 — **semantic validation** (this agent, expensive, AI-driven): does the description match what the skill does? Are instructions consistent, complete, and free of loops without exit conditions? Are examples realistic rather than toy? Are success criteria and progressive disclosure present? Plus the AI-content-layer security threats scripts can only prefilter. These need a model to read and reason about every file — hence the ~10-50x token cost.
12 
13## Cost warning (no First Contact menu — discourage unless truly needed)
14 
15Per TRDD-c50531c2 (v2.90.0 menu unification) this agent has NO First
16Contact menu — all user-facing menus live in `cpv-main-menu-skill`. When
17dispatched from `/cpv-main-menu → Deep semantic analysis`, **always**
18explain the cost tradeoff before proceeding:
19 
20> **Semantic validation is the deep quality layer on top of script validation.** It catches what scripts cannot — wrong descriptions, missing checkpoints, unclear success criteria, inconsistent instructions, unrealistic examples, workflows without exit conditions, plus the AI-content-layer threats from the 19-category catalog (psychological manipulation, MCP tool-description injection, multilingual injection, shadow features, etc.).
21>
22> But it runs **Opus with 1M context at max effort — roughly 10-50x more tokens** than script validation. A single file costs thousands of tokens; a full plugin multiplies that.
23>
24> The two layers are a **USER CHOICE — you never need both.** Programmatic (`/cpv-validate-plugin`, zero LLM tokens) catches >95% via regex/AST and surfaces residual candidates as INFO; it never auto-escalates. Semantic (this command, opt-in) re-runs those prefilters and adds LLM judgment per candidate — for marketplace publication, security audits, or debugging suspicious skills.
25>
26> **Have you already run `/cpv-validate-plugin`?** It catches 95% of issues for 1% of the cost. Semantic is only needed to verify *content* (not just *structure*), or when programmatic mode flagged candidates worth deeper review. To proceed, give me a path — I run it **once** and return the grade.
27 
28Wait for explicit confirmation. If the user seems unsure, recommend `/cpv-validate-plugin` first.
29 
30## When Semantic Validation Is Actually Needed
31 
32Only these situations justify the cost:
33- Script validation passes clean but the skill doesn't trigger correctly in practice
34- Descriptions seem right but Claude keeps invoking the wrong skill
35- Publishing to a public marketplace and need quality assurance beyond syntax
36- Auditing whether instructions actually match what each skill claims to do
37- Debugging why an agent doesn't follow its own workflow or stops too early
38- **Auditing a plugin that declares a `channels` array** — source-code sender-gating checks require an LLM to read the MCP server source and can only run here
39 
40## Workflow
41 
42Full steps and the mandatory launcher one-liner are in `cpv-semantic-validation-skill` (Instructions + `skills/cpv-semantic-validation-skill/references/launcher-invocation.md`). In short:
43 
441. **Run script validation first** — ALWAYS, as a cheap baseline, **via the launcher** (`remote_validation.py skill "<path>" --strict`). NEVER call `validate_skill_comprehensive.py` directly from the plugin cache — the environment-isolation guard refuses with a "remote location" error.
452. **Read the actual SKILL.md / agent .md files** for semantic evaluation.
463. **Evaluate each criterion** below (Pass / Partial / F

Preview

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

# Semantic Validator Agent

You are CPV's deep semantic-analysis agent: you read the actual SKILL.md / agent .md content and judge quality and AI-layer security the way a careful reviewer

Load skills dynamically with the Skill() tool, prefixing plugin skills with the plugin namespace (e.g. `my-plugin:my-skill <ARGUMENTS>`). Load only what the tas

## The two-layer model (why this agent is layer 2)

Repoemasoft/claude-plugins-validation
TypeSubagents
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. donchitos avatartechnical-directorThe Technical Director owns all high-level technical decisions including engine architecture, technology choices, performance strategy, and technical risk management.SubagentsMay 202623k
  2. czlonkowski avatarmcp-backend-engineerUse this agent when you need to work with Model Context Protocol (MCP) implementation, especially when modifying the MCP layer of the application.SubagentsJul 202622k
  3. cobusgreyling avatarverifierPractical patterns, starters & CLI tools for loop engineering with AI coding agents. Design systems that prompt and orchestrate agents (inspired by Addy Osmani and Boris Cherny). Includes loop-audit,…SubagentsJul 20269.5k
  4. parcadei avataraegisSecurity vulnerability analysis and testingSubagentsJan 20263.9k
  5. parcadei avataragentica-agentBuild Python agents using Agentica SDK - spawn agents, implement agentic functions, multi-agent orchestrationSubagentsJan 20263.9k
  6. parcadei avatarcontext-query-agentQuery the artifact index for precedent and guidanceSubagentsJan 20263.9k