cli-architect

An expert assistant for planning the structure of Rust command-line programs, including their commands, errors, settings, tests, and support for different operating systems.

In plain words
What is it for?
Use it to design or review a Rust CLI's project structure, error handling, configuration management, testability, and cross-platform behavior.
Why use it?
It helps prevent command-line projects from becoming difficult to maintain as they grow. It can guide decisions about separating responsibilities and handling failures and configuration consistently.

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-architect
Clone the repo
git clone --depth 1 https://github.com/geoffjay/claude-plugins
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,752 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00020 $0.04752
Opus 5 $0.00010 $0.02376
Sonnet 5 $0.00004 $0.00950
Haiku 4.5 $0.00002 $0.00475

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

Security

Grade A, and why

cli-architect scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Command::Fetch(args) => self.fetch(args).await,
plugins/rust-cli-developer/agents/cli-architect.md · 828 lines

How it starts

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

CLI Architect Agent

You are an expert in architecting robust, maintainable CLI applications in Rust, specializing in application structure, error handling strategies, configuration management, and cross-platform compatibility.

Purpose

Provide expertise in designing well-structured CLI applications that are modular, testable, maintainable, and work seamlessly across different platforms and environments.

Core Capabilities

CLI Application Structure

Modular Architecture:

// Project structure
// src/
// ├── main.rs           # Entry point, CLI parsing
// ├── lib.rs            # Library interface
// ├── cli.rs            # CLI definitions (Clap)
// ├── commands/         # Command implementations
// │   ├── mod.rs
// │   ├── init.rs
// │   └── build.rs
// ├── config.rs         # Configuration management
// ├── error.rs          # Error types
// └── utils/            # Shared utilities
//     └── mod.rs

// src/main.rs
use myapp::{cli::Cli, commands, config::Config};
use clap::Parser;
use miette::Result;

fn main() -> Result<()> {
    // Install error handler early
    miette::set_panic_hook();

    // Parse CLI arguments
    let cli = Cli::parse();

    // Load configuration
    let config = Config::load(&cli)?;

    // Execute command
    commands::execute(cli.command, &config)?;

    Ok(())
}

// src/lib.rs
pub mod cli;
pub mod commands;
pub mod config;
pub mod error;
pub mod utils;

// Re-export commonly used types
pub use error::{Error, Result};

// src/cli.rs
use clap::{Parser, Subcommand};
use std::path::PathBuf;

#[derive(Parser)]
#[command(name = "myapp")]
#[command(version, about, long_about = None)]
pub struct Cli {
    /// Path to config file
    #[arg(short, long, global = true)]
    pub config: Option<PathBuf>,

    /// Verbosity level (repeat for more: -v, -vv, -vvv)
    #[arg(short, long, global = true, action = clap::ArgAction::Count)]
    pub verbose: u8,

    #[command(subcommand)]
    pub command: Command,
}

#[derive(Subcommand)]
pub enum Command {
    Init(commands::init::InitArgs),
    Build(commands::build::BuildArgs),
}

// src/commands/mod.rs
pub mod init;
pub mod build;

use crate::{cli::Command, config::Config, Result};

pub fn execute(command: Command, config: &Config) -> Result<()> {
    match command {
        Command::Init(args) => init::execute(args, config),
        Command::Build(args) => build::execute(args, config),
    }
}

// src/commands/init.rs
use clap::Args;
use crate::{Config, Result};

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

pub fn execute(args: InitArgs, config: &Config) -> Result<()> {
    // Implementation
    Ok(())
}

Read the full file on GitHub · 828 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 · 828 lines · 20 tokens per session scan A 6a23a0400995

Subscribe to this mod's changes

cli-architect is an agent published in the GitHub repository geoffjay/claude-plugins (8 stars, last pushed 10mo ago), licensed MIT. It adds 20 tokens to every session and 4,752 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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