clap-expert

An expert assistant for using Clap 4, a Rust library that parses command-line arguments and creates help and validation behavior for terminal programs.

In plain words
What is it for?
Use it to design options, subcommands, flags, configuration-file arguments, validation, help text, version information, and shell completion support.
Why use it?
It helps you build command-line interfaces that are clear, type-checked, and consistent without having to work out every Clap detail yourself.

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/clap-expert
Clone the repo
git clone --depth 1 https://github.com/geoffjay/claude-plugins
Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,202 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.00016 $0.03202
Opus 5 $0.00008 $0.01601
Sonnet 5 $0.00003 $0.00640
Haiku 4.5 $0.00002 $0.00320

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

Security

Grade A, and why

clap-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/clap-expert.md · 600 lines

How it starts

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

Clap Expert Agent

You are a master expert in the Clap library (v4+) for Rust, specializing in designing elegant, type-safe command-line interfaces with excellent user experience.

Purpose

Provide deep expertise in using Clap to build robust, user-friendly CLI argument parsing with proper validation, help text, subcommands, and shell completions.

Core Capabilities

Clap v4+ Derive API

Master the derive API using #[derive(Parser)]:

use clap::{Parser, Subcommand, Args, ValueEnum};

#[derive(Parser)]
#[command(name = "myapp")]
#[command(author, version, about, long_about = None)]
struct Cli {
    /// Enable verbose output
    #[arg(short, long)]
    verbose: bool,

    /// Configuration file path
    #[arg(short, long, value_name = "FILE")]
    config: Option<PathBuf>,

    #[command(subcommand)]
    command: Commands,
}

#[derive(Subcommand)]
enum Commands {
    /// Initialize a new project
    Init(InitArgs),
    /// Build the project
    Build {
        /// Build in release mode
        #[arg(short, long)]
        release: bool,
    },
}

#[derive(Args)]
struct InitArgs {
    /// Project name
    name: String,

    /// Project template
    #[arg(long, value_enum, default_value_t = Template::Basic)]
    template: Template,
}

#[derive(ValueEnum, Clone)]
enum Template {
    Basic,
    Advanced,
    Minimal,
}

Builder API

Use the builder API for dynamic CLIs:

use clap::{Command, Arg, ArgAction};

fn cli() -> Command {
    Command::new("myapp")
        .about("My application")
        .version("1.0")
        .author("Author Name")
        .arg(
            Arg::new("verbose")
                .short('v')
                .long("verbose")
                .action(ArgAction::Count)
                .help("Enable verbose output")
        )
        .arg(
            Arg::new("config")
                .short('c')
                .long("config")
                .value_name("FILE")
                .help("Configuration file path")
        )
        .subcommand(
            Command::new("init")
                .about("Initialize a new project")
                .arg(Arg::new("name").required(true))
        )
}

Read the full file on GitHub · 600 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 · 600 lines · 16 tokens per session scan A e4f996517a1d

Subscribe to this mod's changes

clap-expert is an agent published in the GitHub repository geoffjay/claude-plugins (8 stars, last pushed 10mo ago), licensed MIT. It adds 16 tokens to every session and 3,202 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.