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

# Cline

> Drevon's adapter for the Cline VS Code extension.

## Overview

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

## Output File

```
.clinerules
```

## Enabling

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

Or in `drevon.config.json`:

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

## Agent-Specific Settings

```json theme={null}
{
  "agents": {
    "cline": {
      "enabled": true,
      "extraInstructions": [
        "Always ask before modifying files outside the src/ directory",
        "Use the file tree view to understand project structure first"
      ]
    }
  }
}
```

## Requirements

* [Cline](https://github.com/clinebot/cline) VS Code extension installed
* `.clinerules` in the repository root (Drevon handles this)
