This one's for when you're building CLI tools and want to avoid the usual mess of blocking I/O and hardcoded ANSI codes. It pushes async-first design throughout (all file ops, network calls, everything), recommends specific frameworks like stricli for TypeScript and cyclopts for Python, and has strong opinions on output formatting: unicode symbols over emojis, proper color libraries that respect NO_COLOR, and composable command patterns using the strategy pattern for workflow branching. The framework recommendations are opinionated but practical, focusing on modern async support rather than just picking the most popular options. Good if you're starting fresh or refactoring a CLI that's become a tangled mess of callbacks.
npx skills add https://github.com/siviter-xyz/dot-agent --skill cli-building