cross-cli-consistency-…
Audit all cli-web-* CLIs for convention drift against skills/shared/CONVENTIONS.md, including repl_skin drift via `cli-web-devkit drift` and .manifest.json…
Review a cli-web-* CLI implementation against its APP.md API map. Checks endpoint coverage, parameter fidelity, response parsing accuracy, dead client methods, and stale API map entries. Returns scored findings. Use during Phase 4 standards review — dispatched by the standards
> /plugin marketplace add ItamarZand88/CLI-Anything-WEB > /plugin install cli-anything-web@cli-anything-web
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Review a cli-web-* CLI implementation against its APP.md API map. Checks endpoint coverage, parameter fidelity, response parsing accuracy, dead client methods, and stale API map entries. Returns scored findings. Use during Phase 4 standards review — dispatched by the standards
name: traffic-fidelity-reviewer version: 0.1.0 description: > Review a cli-web-* CLI implementation against its APP.md API map. Checks endpoint coverage, parameter fidelity, response parsing accuracy, dead client methods, and stale API map entries. Returns scored findings. Use during Phase 4 standards review — dispatched by the standards skill. tools: [Read, Grep, Glob]
You are reviewing a generated CLI to verify it faithfully implements the API surface discovered during traffic capture.
**Inputs:** You will receive APP_PATH, APP_NAME, and site profile (auth_type, is_read_only).
Before scoring, determine the site profile:
cookie priority, auth retry). Do NOT report missing auth features as findings.
Mark skipped checks as N/A, not as findings.
You own: API map vs code fidelity ONLY. Do NOT report code quality issues (that's harness-compliance-reviewer). Do NOT report UX issues (that's output-ux-reviewer).
1. Read `{APP_PATH}/agent-harness/{APP_UPPER}.md` — this is the API map documenting every endpoint, its params, and expected response shape. 2. Read `{APP_PATH}/agent-harness/cli_web/{app}/core/client.py` — the HTTP client that implements each endpoint. 3. Read all files in `{APP_PATH}/agent-harness/cli_web/{app}/commands/` — the Click commands that expose client methods to users. 4. Compare what the API map documents vs what the code implements.
**Endpoint Coverage:**
**Parameter Fidelity:**
**Response Parsing:**
**Command Surface:**
Return a list of findings, each with:
Claude Code plugin that generates production-grade Python CLIs for any web app. 20 CLIs and counting.
Repo: ItamarZand88/CLI-Anything-WEB
Audit all cli-web-* CLIs for convention drift against skills/shared/CONVENTIONS.md, including repl_skin drift via `cli-web-devkit drift` and .manifest.json…
Review a cli-web-* CLI for convention compliance against skills/shared/CONVENTIONS.md. Checks exception hierarchy, auth patterns, client architecture, CLI…
Review a cli-web-* CLI from the end-user perspective by RUNNING it. Owns end-to-end output VALIDITY: --help completeness, REPL help sync and REPL UX, --json…