rust-cli
SkillDev toolsBuild, 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.
No other account needed.
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
- Gather Cargo workspace, command, flag, and test context.
- Determine user-facing CLI behavior and compatibility impact.
- Create rollback by keeping changes scoped and tests focused.
- Implement the smallest parser, command, or library change.
- 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 --checkpasses.cargo clippy -- -D warningspasses when feasible.- Unit and integration tests pass.
--helpand 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