Companion skills for the Agent CLI Guidelines fleet. Each one teaches an agent
a single CLI, installs the binary if it's missing, and then defers to the tool's own agent /
schema output for the actual contract — so the skill is a thin discovery + bootstrap shim that
never drifts from the binary.
Tools: rivr (Amazon) · gfly (Google Flights) · knit (Threads) · vabc (Virginia ABC) ·
nxstate (Cisco Nexus).
/plugin marketplace add rnwolfe/agent-cli-skills
/plugin install agent-cli-skills@agent-cli-skills
Installs all the tool skills; each surfaces when its task comes up.
npx skills add rnwolfe/agent-cli-skillsEach skill (skills/<tool>/SKILL.md) is intentionally thin:
- Bootstrap — if the tool isn't on
PATH, install it (brew/uvx/go install). - Defer —
<tool> agentis the embedded usage contract;<tool> schema --jsonis the machine-readable surface. The binary is the single source of truth.
Every tool is read-only by default and conforms to the Agent CLI Guidelines (Full) — verifiable
at runtime via <tool> schema | jq .conformance.
New conformant tool? Add skills/<tool>/SKILL.md (same shape) — cli-new does this automatically.