Generate documentation for command-line interface tools
Create CLI documentation for:
**Tool Name:** {{TOOL_NAME}}
**Purpose:** {{PURPOSE}}
**Language:** {{LANGUAGE}}
**Commands:**
{{COMMANDS}}
Generate comprehensive CLI documentation:
# {{TOOL_NAME}}
{{SHORT_DESCRIPTION}}
## Installation
### Via Package Manager
```bash
npm install -g {{TOOL_NAME}}
# or
brew install {{TOOL_NAME}}
```
### From Source
```bash
git clone ...
make install
```
## Quick Start
```bash
# Most common use case
{{TOOL_NAME}} [command] [options]
```
## Commands
### `{{TOOL_NAME}} command1`
Description of command
**Usage:**
```bash
{{TOOL_NAME}} command1 [options] <arguments>
```
**Arguments:**
| Argument | Description | Required |
|----------|-------------|----------|
**Options:**
| Option | Short | Description | Default |
|--------|-------|-------------|---------|
| --option | -o | Description | value |
**Examples:**
```bash
# Example 1: Basic usage
{{TOOL_NAME}} command1 arg
# Example 2: With options
{{TOOL_NAME}} command1 --option value arg
```
[Repeat for all commands]
## Global Options
Options available for all commands
## Configuration
### Config File
Location and format
### Environment Variables
| Variable | Description | Default |
|----------|-------------|---------|
## Output Formats
- JSON
- Table
- Plain text
## Exit Codes
| Code | Meaning |
|------|---------|
## Shell Completion
Bash/Zsh/Fish completion setup
## Troubleshooting
Common issues and solutions
## See Also
Related tools and resourcesOr press ⌘C to copy
Replace these placeholders with your own content before using the prompt.
[{TOOL_NAME][{PURPOSE][{LANGUAGE][{COMMANDS][{SHORT_DESCRIPTION]