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.
npx agentmods add agents/geoffjay/claude-plugins/cli-architectgit clone --depth 1 https://github.com/geoffjay/claude-pluginsWhat 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.
| Model | Per session | Once 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 |
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, 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(())
}
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.
- 2d ago First seen · 828 lines · 20 tokens per session scan A 6a23a0400995
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.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
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.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.
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.
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.
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.