rust-cli

SkillDev tools

Build, test, review, and release Rust command-line applications using Cargo and clap, with reliable output, exit codes, help text, and integration tests.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the rust-cli skill

What this skill tells your AI

The instructions your AI receives, as published by christitustech/titus-ai in .agents/skills/rust-cli/SKILL.md and read by ahel’s review.

Workflow

  1. Gather Cargo workspace, command, flag, and test context.
  2. Determine user-facing CLI behavior and compatibility impact.
  3. Create rollback by keeping changes scoped and tests focused.
  4. Implement the smallest parser, command, or library change.
  5. Validate formatting, linting, tests, help text, and exit codes.

Diagnostics

cargo metadata --no-deps
cargo fmt --check
cargo clippy -- -D warnings
cargo test
cargo run -- --help
cargo run -- <command> --help

Safety Rules

  • Keep parsing, command execution, and reusable logic separated.
  • Print normal output to stdout and diagnostics to stderr.
  • Never change CLI output formats casually if scripts may depend on them.
  • Return non-zero exit codes for failed operations.
  • Follow existing crate and workspace conventions before adding abstractions.

Validation

  • cargo fmt --check passes.
  • cargo clippy -- -D warnings passes when feasible.
  • Unit and integration tests pass.
  • --help and command help are accurate.
  • Success and failure paths return expected exit codes.

Signals

GitHub stars
125
Forks
21
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
rust-cli
Source
github.com/christitustech/titus-ai