mit einem Klick
CLI UX/spec: args, flags, help, output, errors, config, dry-run.
npx skills add https://github.com/BumpyClock/dotfiles --skill create-cliKopieren Sie diesen Befehl und fügen Sie ihn in Claude Code ein, um den Skill zu installieren
CLI UX/spec: args, flags, help, output, errors, config, dry-run.
npx skills add https://github.com/BumpyClock/dotfiles --skill create-cliKopieren Sie diesen Befehl und fügen Sie ihn in Claude Code ein, um den Skill zu installieren
Extract durable working preferences from recent local agent chats and convert them into skills, rules, or workflow docs. Use when asked to learn preferences, mine feedback, personalize workflows, or generate user/team-specific agent guidance.
Use the spark CLI to access the user's Spark email data - list emails, search by topic, read threads, check calendar events, find availability, look up contacts, and view team info. Use when the user asks about their emails, calendar, contacts, meetings, or scheduling.
Beeper cache: contact hints, room lookup, WhatsApp/iMessage traces, FTS.
Use for new features, UX/UI changes, behavior changes, architecture decisions, or ambiguous work where intent/design must be clarified before implementation. Use micro-flow only for trivial mechanical/non-behavior changes.
Chrome DevTools MCP automation: existing Chrome tabs, no AppleScript.
Comprehensive OpenTUI skill for building terminal user interfaces. Covers the core imperative API, React reconciler, and Solid reconciler. Use for any TUI development task including components, layout, keyboard handling, animations, and testing.
| name | create-cli |
| description | CLI UX/spec: args, flags, help, output, errors, config, dry-run. |
Design CLI surface area (syntax + behavior), human-first, script-friendly. when building rich cli/tui apps then read the skills/create-cli/references/opentui/SKILL.md and related files.
agent-scripts/skills/create-cli/references/cli-guidelines.md and apply it as the default rubric.Ask, then proceed with best-guess defaults if user is unsure:
--json, --plain, exit codes.--no-input? confirmations for destructive ops?When designing a CLI, produce a compact spec the user can implement:
--json/--plain; --quiet/--verbose.--dry-run, confirmations, --force, --no-input.-h/--help always shows help and ignores other args.--version prints version to stdout.--json for machine output; consider --plain for stable line-based text.--no-input disables prompts.--force or explicit --confirm=....NO_COLOR, TERM=dumb; provide --no-color.Fill these sections, drop anything irrelevant:
mycmd...mycmd [global flags] <subcommand> [args]mycmd init ...mycmd run ...-h, --help--version-q, --quiet / -v, --verbose (define exactly)--json / --plain (if applicable)0 success1 generic failure2 invalid usage (parse/validation)