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

# Windsurf

> Drevon's adapter for the Windsurf editor.

## Overview

Windsurf reads instructions from `.windsurfrules` in the repository root. Drevon generates this as a standard markdown file.

## Output File

```
.windsurfrules
```

## Enabling

```bash theme={null}
drevon add-agent windsurf
```

Or in `drevon.config.json`:

```json theme={null}
{
  "agents": {
    "windsurf": {
      "enabled": true
    }
  }
}
```

## Agent-Specific Settings

```json theme={null}
{
  "agents": {
    "windsurf": {
      "enabled": true,
      "extraInstructions": [
        "Use the built-in terminal for all commands",
        "Explain changes before applying them"
      ]
    }
  }
}
```

## Requirements

* [Windsurf](https://codeium.com/windsurf) editor installed
* `.windsurfrules` in the repository root (Drevon handles this)
