> ## 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.

# Output Styles

> Configure agent output formatting

The `output` command manages output style configuration.

## Quick Start

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# Show current output style
praisonai output status
```

## Usage

### Show Status

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai output status
```

**Expected Output:**

```
╭─ Output Style ───────────────────────────────────────────────────────────────╮
│  Style: concise                                                              │
│  Format: markdown                                                            │
│  Verbosity: minimal                                                          │
╰──────────────────────────────────────────────────────────────────────────────╯
```

### Set Style

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai output set concise
```

Available styles: `concise`, `detailed`, `technical`, `conversational`, `structured`, `minimal`

## Python API

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents.output import OutputStyle, OutputFormatter

# Use preset
style = OutputStyle.concise()
formatter = OutputFormatter(style)

# Format text
text = "# Hello\n\n**Bold** text"
plain = formatter.format(text)
```

## See Also

* [Output Styles Feature](/docs/features/output-styles)
