---
sidebar_label: "Cheat Sheet"
sidebar_custom_props:
  section: "Templates"
  section_position: 1
---

{/*

Cheat Sheets provide concise, quick-reference information for the most common commands and patterns. 
Focus on practical, copy-paste ready examples without extensive explanation. Keep it brief – use 
CLI Reference for comprehensive documentation.

*/}

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

# Cheat Sheet Template

Quick reference for the most commonly used commands and patterns.

## Basic Operations

```bash
# List all items
command list

# Show detailed information
command info <name>

# Create new item
command create <name>

# Delete an item
command delete <name>
```

## Common Options

| Option        | Description                          | Example                    |
|---------------|--------------------------------------|----------------------------|
| `-v, --verbose` | Enable verbose output              | `command -v list`          |
| `-o, --output`  | Specify output format (json/yaml)  | `command -o json list`     |
| `-f, --force`   | Skip confirmation prompts          | `command -f delete <name>` |
| `-h, --help`    | Show help information              | `command -h`               |

## Working with Configuration

```bash
# View current configuration
command config show

# Set a configuration value
command config set key=value

# Reset to defaults
command config reset
```

## Filtering and Searching

```bash
# Filter by status
command list --status active

# Search by name
command list --name "search-term"

# Combine multiple filters
command list --status active --tag production
```

## Output Formatting

<Tabs>
<TabItem value="json" label="JSON">

**JSON Output**

```bash
command list --output json
```

</TabItem>
<TabItem value="yaml" label="YAML">

**YAML Output**

```bash
command list --output yaml
```

</TabItem>
<TabItem value="table" label="Table">

**Table Output**

```bash
command list --output table
```

</TabItem>
</Tabs>

## Advanced Usage

```bash
# Batch operations
command delete item1 item2 item3

# Watch mode (continuous updates)
command watch list

# Export data
command export --format json > backup.json

# Import data
command import backup.json
```
