mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-17 22:46:29 +03:00
Update every audited reference site to the six renamed skills: root README headings and links (and drop the jira-jql entry ahead of its absorption), references/skill-triggers.md rows for jellyfin and tempest plus four new-name rows for ghost/jira/openlibrary/tmdb, scripts/grandfathered-skills.txt pruned to the three retained *-cli entries, pyproject.toml deptry exclusion jellyfin-cli -> jellyfin, neckbeard routing seams, cli-builder example names, and the lastfm / verification-methodology eval texts mentioning jellyfin. Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
CLI Builder — Design Agent-Friendly CLI Tools
A comprehensive design guide and scaffold for building CLI tools that AI agents can actually use. 10 universal design patterns grounded in real failures from building 15+ agent-facing CLIs.
Why Install This Skill
When your agent loads this skill, it can design, build, and refactor CLI tools that agents can discover and use without human help. That means:
- Every
--helpoutput becomes a contract the agent parses to understand your tool - Every command supports
--jsonfor machine-readable output the agent consumes - Every operation is idempotent —
--dry-runpreviews changes before they happen - Authentication is lazy — help and dry-run work without credentials
- Errors are structured — different exit codes for different failure modes
What You Get
| Directory | Purpose |
|---|---|
SKILL.md |
500+ line reference: 10 design patterns, 3-phase build workflow, agent-compatibility test suite |
templates/ |
Python API client scaffold and bash CLI scaffold |
references/ |
Agent-compatibility test suite, Python API client pattern |
Triggers
Load this when building a new CLI tool, refactoring an existing tool that causes agent friction, or debugging why your agent keeps failing to use a CLI properly.
Requirements
Bash, Python 3.8+, jq, and a standard Unix CLI environment.
Quick Start
Start with the setup and first workflow in SKILL.md, then use the linked resources for the specific task you need to complete.