> ## Documentation Index
> Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Completion

> Shell completion scripts for PraisonAI CLI

The `completion` command generates shell completion scripts for bash, zsh, and fish.

## Usage

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai completion [OPTIONS] COMMAND [ARGS]...
```

## Commands

| Command | Description                     |
| ------- | ------------------------------- |
| `bash`  | Generate bash completion script |
| `zsh`   | Generate zsh completion script  |
| `fish`  | Generate fish completion script |

## Examples

### Bash completion

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# Generate and install
praisonai completion bash > ~/.bash_completion.d/praisonai
source ~/.bash_completion.d/praisonai
```

### Zsh completion

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# Generate and install
praisonai completion zsh > ~/.zfunc/_praisonai
```

### Fish completion

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# Generate and install
praisonai completion fish > ~/.config/fish/completions/praisonai.fish
```

## See Also

* [CLI Reference](/docs/cli/cli-reference) - Full CLI reference
