Claude Marketplace Evaluator
Description
CLI for Claude Code marketplace health — routing evals, coverage checks, and semantic collision detection
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
claude-marketplace-evaluator
`cme` is a CLI for Claude Code marketplace health. It validates that skills route correctly and detects functional overlap between skills — without running expensive LLM-based eval suites.
Marketplace health is not about optimizing skill descriptions. It is about catching structural problems early: missing evals, broken routing, and overlapping skills that confuse Claude's router. `cme` runs fast, fits in CI, and fails loud.
Installation
Zero-install with `uvx` (recommended for CI):
uvx --from claude-marketplace-evaluator cme --help
Or install globally:
pip install claude-marketplace-evaluator
Commands
`cme routing`
Three-step pipeline that generates routing tests, checks coverage, and runs evals:
- Generate — reads
evals/evals.jsonfrom each skill directory, produces routing test YAML - Coverage check — verifies every skill has an evals file (fails if below threshold)
- Routing eval runner — sends each prompt through the Claude Agent SDK, checks Claude routes to the expected skill
cme routing --plugins-dir plugins/
| Flag | Default | Description |
|---|---|---|
--plugins-dir |
plugins/ |
Path to the plugins directory |
--coverage-threshold |
100 |
Minimum eval coverage percentage. Fails if any skill lacks evals |
--threshold |
95 |
Minimum routing pass rate percentage. Set to 0 to skip the eval runner |
-j / --workers |
4 |
Parallel workers for the eval runner |
--timeout |
30 |
Per-test timeout in seconds |
--max-retries |
1 |
Max retries on rate limit errors (exponential backoff) |
--max-turns |
5 |
Max agent turns per routing eval. Individual test cases can override this with a max_turns field in evals.json |
--plugin |
Glob filter on plugin name. Repeatable with OR semantics |
Exit codes: `0` = all checks pass, `1` = coverage or routing threshold not met.
`cme overlap`
Detects functional overla
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11