Build production CLI tools

cli-developerskillsetup L29,726
Jeffallan/claude-skills
What it does

USe when building CLI tools, implementing argument parsing, or adding interactive prompts.

Best for

When building command-line tools that need consistent flags, shell completions, and fast startup.

Inputs
  • · command structure spec
  • · flag definitions
  • · user workflows
  • · help text content
Outputs
  • · CLI binary
  • · help text rendering
  • · shell completion scripts
  • · argument parser
Requires
  • · commander
  • · click
  • · typer
  • · or cobra
Preconditions
  • · command hierarchy planned
  • · subcommand signatures finalized
Failure modes
  • · slow startup time
  • · completion conflicts
  • · flag naming inconsistency
Trust signals
  • · Open-source: Jeffallan/claude-skills
  • · Versioned with stable releases
  • · Includes reference guides or templates
  • · Concrete working examples