{{cookiecutter.project_description}}
This skill provides access to the {{cookiecutter.project_slug}} CLI tool. {{cookiecutter.project_description}}.
Use this skill when:
Do NOT use this skill for:
The {{cookiecutter.project_slug}} is a command-line interface tool that {{cookiecutter.project_description}}.
# Clone and install
git clone https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.project_slug}}.git
cd {{cookiecutter.project_slug}}
uv tool install .
# Example 1: Basic usage
{{cookiecutter.project_slug}} --help
# Example 2: Show version
{{cookiecutter.project_slug}} --version
Display help information for CLI commands.
Usage:
{{cookiecutter.project_slug}} --help
{{cookiecutter.project_slug}} COMMAND --help
Examples:
# General help
{{cookiecutter.project_slug}} --help
# Command help
{{cookiecutter.project_slug}} command --help
# Version info
{{cookiecutter.project_slug}} --version
Control logging detail with progressive verbosity levels. All logs output to stderr.
Logging Levels:
| Flag | Level | Output | Use Case |
|---|---|---|---|
| (none) | WARNING | Errors and warnings only | Production, quiet mode |
-v | INFO | + High-level operations | Normal debugging |
-vv | DEBUG | + Detailed info, full tracebacks | Development, troubleshooting |
-vvv | TRACE | + Library internals | Deep debugging |
Examples:
# INFO level - see operations
{{cookiecutter.project_slug}} command -v
# DEBUG level - see detailed info
{{cookiecutter.project_slug}} command -vv
# TRACE level - see all internals
{{cookiecutter.project_slug}} command -vvv
Native shell completion for bash, zsh, and fish.
Installation:
# Bash (add to ~/.bashrc)
eval "$({{cookiecutter.project_slug}} completion bash)"
# Zsh (add to ~/.zshrc)
eval "$({{cookiecutter.project_slug}} completion zsh)"
# Fish (save to completions)
{{cookiecutter.project_slug}} completion fish > ~/.config/fish/completions/{{cookiecutter.project_slug}}.fish
Compose commands with Unix pipes for powerful workflows.
Examples:
# Example pipeline workflows will be added when CLI commands are implemented
{{cookiecutter.project_slug}} command --json | jq '.'
Issue: Command not found
# Verify installation
{{cookiecutter.project_slug}} --version
# Reinstall if needed
cd {{cookiecutter.project_slug}}
uv tool install . --reinstall
Issue: General errors
-vv to see detailed error information# Show help
{{cookiecutter.project_slug}} --help
# Command-specific help
{{cookiecutter.project_slug}} COMMAND --help
0: Success1: Client error (invalid arguments, validation failed)2: Server error (API error, network issue)3: Network error (connection failed, timeout)Default Output:
JSON Output (--json flag):
-v, increase to -vv/-vvv only if needed--help to understand command options