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

# Command

> List and inspect file-based custom command templates

Manage **custom commands** discovered from `.praisonai/commands/*.md`.

## Commands

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai command list [--verbose]
praisonai command show <name> [--preview]
```

| Command                 | Description                                |
| ----------------------- | ------------------------------------------ |
| `list`                  | Show Name, Source, Description             |
| `list --verbose`        | Also Path                                  |
| `show <name>`           | Template body                              |
| `show <name> --preview` | Interpolated preview with sample arguments |

## Examples

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai command list
praisonai command show summarise
praisonai command show summarise --preview
```

<Tip>
  No commands yet? Run [`praisonai init`](/docs/cli/init) to scaffold a working starter command in `.praisonai/commands/review.md`.
</Tip>

## Related

<CardGroup cols={2}>
  <Card title="Custom Agents & Commands" icon="file-code" href="/docs/features/custom-agents-commands">
    Template syntax and discovery
  </Card>

  <Card title="Run" icon="play" href="/docs/cli/run">
    Run with --command
  </Card>

  <Card title="Init" icon="wand-magic-sparkles" href="/docs/cli/init">
    Scaffold a starter command in one command
  </Card>
</CardGroup>
