cli-builder
Installation
SKILL.md
CLI Builder
Build production-quality CLI tools for any module or application, in any language.
Reference files (read on demand, not upfront):
references/cli-libraries.md— read during Step 2 (Design) to recommend libraries and during Step 4 (Execute) for starter scaffoldsreferences/testing-patterns.md— read during Step 4 (Execute) when writing tests
Repo Sync Before Edits (mandatory)
Before creating/updating/deleting files in an existing repository, sync the current branch with remote:
branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin
git pull --rebase origin "$branch"
If the working tree is not clean, stash first, sync, then restore: