output-ux-reviewer

output-ux-reviewer is an agent for Claude Code from ItamarZand88/CLI-Anything-WEB. It costs 85 tokens per session (926 once invoked), scanned A, original, MIT.

A user-facing review agent that runs a command-line tool and checks whether it behaves correctly. It examines help text, interactive prompt behaviour, JSON output, error output, protocol leaks, and the program's entry point.

In plain words
What is it for?
Use it to test a CLI from a user's perspective, including help commands, REPL use, JSON parsing, clean errors, and end-to-end output behaviour.
Why use it?
It catches problems that source-code review cannot show, such as invalid JSON, incomplete help, noisy output, or a broken interactive session.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the cli-anything-web plugin — 6 skills, 6 commands, 4 agents, 1 MCP server shipped together

Good fit Use it to test a CLI from a user's perspective, including help commands, REPL use, JSON parsing, clean errors, and end-to-end output behaviour.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/itamarzand88/cli-anything-web/output-ux-reviewer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/ItamarZand88/CLI-Anything-WEB

Made for: Claude Code.

Or install cli-anything-web, the plugin that ships this one along with the rest of its 6 skills, 6 commands, 4 agents, 1 MCP server.

Wrote 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.

agentmods badge for output-ux-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/itamarzand88/cli-anything-web/output-ux-reviewer/github.svg)](https://agentmods.dev/agents/itamarzand88/cli-anything-web/output-ux-reviewer)
Your own site
<a href="https://agentmods.dev/agents/itamarzand88/cli-anything-web/output-ux-reviewer"><img src="https://agentmods.dev/badge/agents/itamarzand88/cli-anything-web/output-ux-reviewer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for output-ux-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/itamarzand88/cli-anything-web/output-ux-reviewer"><img src="https://agentmods.dev/badge/agents/itamarzand88/cli-anything-web/output-ux-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 926 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00085 $0.00926
Opus 5 $0.00043 $0.00463
Sonnet 5 $0.00017 $0.00185
Haiku 4.5 $0.00009 $0.00093

Measured 10d ago against content hash 15531bbec26d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

output-ux-reviewer 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 10d 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.

cli-anything-web-plugin/agents/output-ux-reviewer.md · 95 lines

How it starts

The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Output & UX Reviewer

You are reviewing a generated CLI from the end-user perspective — does it work correctly, is help complete, is output clean?

Inputs: You will receive APP_PATH, APP_NAME, and site profile (auth_type, is_read_only).

Site Profile Awareness

Before scoring, determine the site profile:

  • No-auth sites: Skip auth command checks. Do NOT report missing auth help as findings.
  • Read-only sites: Skip write command checks.
  • No-RPC sites: Skip batchexecute/RPC-specific output checks.

Mark skipped checks as N/A, not as findings.

Scope Boundary

You own: user-facing behavior ONLY — verified by RUNNING the CLI and inspecting actual output (you are the only reviewer with Bash).

JSON envelope division of labor (explicit):

  • You own end-to-end output VALIDITY: run commands with --json and verify the output parses as JSON, has no protocol leaks (wrb.fr, af.httprm, empty [], nulls where data belongs — CONVENTIONS.md §Protocol-Leak Smoke Check), errors come back as JSON not stderr text, and REPL UX works (help, exit, banner).
  • harness-compliance-reviewer owns the envelope STRUCTURE check: how the code defines to_dict()/json_success()/handle_errors(). Do NOT re-report structural code defects — if live output is wrong, report the observed output; the structural root cause is its territory.

Do NOT report API coverage issues (that's traffic-fidelity-reviewer). Do NOT report code quality issues (that's harness-compliance-reviewer).

Your Task

  1. Run cli-web-{app} --help and capture output.
  2. Run each subcommand group's --help (e.g., feed --help, search --help).
  3. Read _print_repl_help() in {app}_cli.py and compare against actual commands.
  4. If auth is available, run a few commands with --json and inspect output.
  5. Read setup.py and verify entry point matches CLI name.

What to Check

Help Completeness:

  • --help lists all command groups
  • Each group's --help lists all subcommands
  • Arguments and options have help text
  • REPL help output matches the actual command surface (no missing commands, no stale entries)
  • No command files in commands/ that are not registered on the CLI group (dead files that would crash if imported)

Read the full file on GitHub · 95 lines

Changes

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.

  1. 10d ago First seen · 95 lines · 85 tokens per session scan A 15531bbec26d

Subscribe to this mod's changes

output-ux-reviewer is an agent published in the GitHub repository ItamarZand88/CLI-Anything-WEB (216 stars, last pushed 9d ago), licensed MIT. It adds 85 tokens to every session and 926 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-30.

Related

Other agents, from other repositories

e2e-runner

End-to-end testing specialist using Playwright. Generates, maintains, and runs E2E tests.

rohitg00/skillkit · 25 tokens

e2e-finding-verifier

Use after e2e-reviewer or scan.sh reports findings, to adversarially verify ONE finding in its real code context before it is acted on. Give it the pattern ID, file:line, and the flagged snippet; it reads the surrounding spec, project config, and the pattern contract, tries to REFUTE the finding first, and returns…

voidmatcha/e2e-skills · 118 tokens

chrome-verify

Verifies a chrome-extension/ change before it is reported done. Checks Service Worker (Manifest v3) compatibility with vm.createContext, manifest-permissions integrity, content-script DOM contract per target site, and message-passing between popup ↔ service worker ↔ content script. Use after any change in…

jhlee0409/omni-harness-kit · 118 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

frontend-specialist

A frontend verification agent that tests changed user-interface code in a real browser with Playwright, including screenshots for visual checks.

Insajin/autopus-adk · 61 tokens

test-automator

Create comprehensive test suites with unit, integration, and e2e tests. Sets up CI pipelines, mocking strategies, and test data. Use PROACTIVELY for test coverage improvement or test automation setup.

echoVic/blade-code · 46 tokens