Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add ANcpLua/ancplua-claude-plugins/plugin install cc-plugin-evalWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/ancplua/ancplua-claude-plugins/cc-plugin-eval)<a href="https://agentmods.dev/skills/ancplua/ancplua-claude-plugins/cc-plugin-eval"><img src="https://agentmods.dev/badge/skills/ancplua/ancplua-claude-plugins/cc-plugin-eval.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00073 | $0.01604 |
| Opus 5 | $0.00036 | $0.00802 |
| Sonnet 5 | $0.00015 | $0.00321 |
| Haiku 4.5 | $0.00007 | $0.00160 |
Grade A, and why
cc-plugin-eval scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.
cc-plugin-eval
Use this as the umbrella entrypoint for local Claude Code plugin and skill evaluation. cc-plugin-eval is deterministic, local-first, and zero-dependency.
The runnable command blocks below invoke the shipped script through the plugin root, which works in any checkout: node "${CLAUDE_PLUGIN_ROOT}/scripts/cc-plugin-eval.js" <command> <args>. Inline mentions of cc-plugin-eval <command> are shorthand for that same invocation; the bare cc-plugin-eval alias only exists if you ran npm link in the plugin directory.
Start Here
- Resolve whether the target path is a skill (contains
SKILL.md), a plugin (contains.claude-plugin/plugin.json), or another local folder. - If the user spoke naturally, prefer the chat-first router so they see the routed local command:
node "${CLAUDE_PLUGIN_ROOT}/scripts/cc-plugin-eval.js" start <path> --request "<user request>" --format markdown
- Map natural chat requests to workflows:
- "Evaluate this plugin." ->
cc-plugin-eval analyze <path> --format markdown - "Evaluate this skill." ->
cc-plugin-eval analyze <path> --format markdown(orevaluate-skillalias) - "Why did this score that way?" ->
cc-plugin-eval analyze <path> --format markdown - "What should I fix first?" ->
cc-plugin-eval analyze <path> --format markdown - "Explain the token budget for this plugin." ->
cc-plugin-eval explain-budget <path> --format markdown - "Validate the manifest." / "Lint this plugin." ->
cc-plugin-eval validate <path> --format markdown - "Inspect the hooks." / "Inspect the mcp servers." ->
cc-plugin-eval inspect <path> --component <name> --format markdown - "Measure the real token usage of this skill." ->
init-benchmarkthenbenchmark, thenanalyze --observed-usage, thenmeasurement-plan - "Help me benchmark this plugin." -> starter benchmark flow
- "What should I run next?" ->
cc-plugin-eval start <path> --request "What should I run next?" --format markdown
- "Evaluate this plugin." ->
- If the user wants a rewrite plan, route to
../improve-skill/SKILL.md. That skill produces a brief and then hands the brief toskill-creatorfor the actual rewrite pass. - If the user wants a custom rubric, route to
../metric-pack-designer/SKILL.md. - If the user names a plugin or skill instead of giving a path, resolve it locally before running commands. Prefer
~/.claude/plugins/cache/<plugin-id>for installed plugins, then any repo-localplugins/<name>orskills/<name>directory. If still ambiguous, ask one short clarifying question. - When the request sounds like "give me a full analysis" rather than just "evaluate", do the fuller path:
- run
analyze - initialize
.cc-plugin-eval/benchmark.json - surface the setup questions that refine the starter scenarios
- preview the first benchmark command the user can execute next
- run
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 98 lines · 73 tokens per session scan A 812e9bf6f26a
cc-plugin-eval is a skill published in the GitHub repository ANcpLua/ancplua-claude-plugins (5 stars, last pushed 19d ago), licensed MIT. It adds 73 tokens to every session and 1,604 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…