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

# drevon prompt

> List and create reusable workflow prompts.

## Usage

```bash theme={null}
drevon prompt <action> [arguments]
```

## Actions

### prompt list

Show all available prompts with their titles and descriptions.

```bash theme={null}
drevon prompt list
```

**Output:**

```
Available prompts:

  code-review     Thorough code review checklist covering correctness, security, and performance
  debug           Structured debugging workflow
  new-feature     Feature implementation guide with requirements, design, and testing
  refactor        Safe refactoring methodology with incremental execution
  write-tests     Test writing methodology using AAA structure
```

Titles and descriptions are extracted from YAML frontmatter in each prompt file.

***

### prompt create

Create a new prompt template with scaffolded frontmatter.

```bash theme={null}
drevon prompt create <name>
```

**Example:**

```bash theme={null}
drevon prompt create deploy-checklist
```

Creates `.drevon/prompts/deploy-checklist.md`:

```markdown theme={null}
---
title: Deploy Checklist
description: ""
tags: []
---

## Steps

1.
```

Edit this file to add your workflow steps, then agents can reference it during relevant tasks.

<Tip>
  Keep prompts focused and prescriptive. The best prompts describe a specific workflow with numbered steps that agents can follow systematically.
</Tip>
