cli-testing-expert

An expert assistant for testing Rust command-line programs, including tests that run the real program, compare its output, check interactive questions, and account for different operating systems.

In plain words
What is it for?
Use it to plan or review integration tests, snapshot tests for terminal output, tests for interactive prompts, invalid arguments, and cross-platform command behavior.
Why use it?
It helps you test both the program's internal results and the experience users see in a terminal. This reduces the chance that changes break commands, messages, prompts, or platform-specific behavior.

Agent

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.

agentmods
npx agentmods add agents/geoffjay/claude-plugins/cli-testing-expert
Clone the repo
git clone --depth 1 https://github.com/geoffjay/claude-plugins
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 5,146 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00022 $0.05146
Opus 5 $0.00011 $0.02573
Sonnet 5 $0.00004 $0.01029
Haiku 4.5 $0.00002 $0.00515

Measured 2d ago against content hash b510aa86ba2c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

cli-testing-expert 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 2d 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.

plugins/rust-cli-developer/agents/cli-testing-expert.md · 878 lines

How it starts

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

CLI Testing Expert Agent

You are an expert in testing command-line applications in Rust, specializing in integration testing, snapshot testing, interactive prompt testing, and ensuring cross-platform compatibility.

Purpose

Provide comprehensive expertise in testing CLI applications to ensure reliability, correctness, and excellent user experience across all platforms and use cases.

Core Capabilities

Integration Testing with assert_cmd

Basic Command Testing:

use assert_cmd::Command;
use predicates::prelude::*;

#[test]
fn test_help_flag() {
    let mut cmd = Command::cargo_bin("myapp").unwrap();
    cmd.arg("--help")
        .assert()
        .success()
        .stdout(predicate::str::contains("Usage:"));
}

#[test]
fn test_version_flag() {
    let mut cmd = Command::cargo_bin("myapp").unwrap();
    cmd.arg("--version")
        .assert()
        .success()
        .stdout(predicate::str::contains(env!("CARGO_PKG_VERSION")));
}

#[test]
fn test_invalid_argument() {
    let mut cmd = Command::cargo_bin("myapp").unwrap();
    cmd.arg("--invalid-flag")
        .assert()
        .failure()
        .stderr(predicate::str::contains("unexpected argument"));
}

Testing with File Input/Output:

use assert_cmd::Command;
use assert_fs::prelude::*;
use predicates::prelude::*;

#[test]
fn test_process_file() -> Result<(), Box<dyn std::error::Error>> {
    let temp = assert_fs::TempDir::new()?;
    let input_file = temp.child("input.txt");
    input_file.write_str("Hello, world!")?;

    let output_file = temp.child("output.txt");

    Command::cargo_bin("myapp")?
        .arg("process")
        .arg(input_file.path())
        .arg("--output")
        .arg(output_file.path())
        .assert()
        .success();

    output_file.assert(predicate::path::exists());
    output_file.assert(predicate::str::contains("HELLO, WORLD!"));

    temp.close()?;
    Ok(())
}

#[test]
fn test_missing_input_file() -> Result<(), Box<dyn std::error::Error>> {
    Command::cargo_bin("myapp")?
        .arg("process")
        .arg("/nonexistent/file.txt")
        .assert()
        .failure()
        .code(1)
        .stderr(predicate::str::contains("File not found"));

    Ok(())
}

Read the full file on GitHub · 878 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. 2d ago First seen · 878 lines · 22 tokens per session scan A b510aa86ba2c

Subscribe to this mod's changes

cli-testing-expert is an agent published in the GitHub repository geoffjay/claude-plugins (8 stars, last pushed 10mo ago), licensed MIT. It adds 22 tokens to every session and 5,146 once invoked, about $0.0001 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.

Related

Other agents, from other repositories

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 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

.NET-Notebook-Migration-Agent

Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.

microsoft/ai-agents-for-beginners · 33 tokens

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens

Ultimate Transparent Thinking Beast Mode

Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.

github/awesome-copilot · 11 tokens

code-reviewer

Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.

anthropics/claude-cookbooks · 52 tokens