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

# Use Poolside in Zed

> Configure Zed to use Poolside through Agent Client Protocol.

## Prerequisites

* You have Poolside Agent CLI installed and authenticated. See [Install Poolside Agent CLI](/cli/install).

## Steps

1. Configure Zed.

   ```bash theme={null}
   pool acp setup --editor zed
   ```

   This writes Poolside agent configuration to `~/.config/zed/settings.json`.

2. Restart Zed.

3. Select **Poolside** from the agent picker.

## Configure Zed manually

If you prefer to configure Zed manually, add the following configuration to `~/.config/zed/settings.json`:

```json theme={null}
{
  "agent_servers": {
    "Poolside": {
      "command": "pool",
      "args": ["acp"],
      "type": "custom"
    }
  }
}
```

For more information, see [Zed external agent documentation](https://zed.dev/docs/ai/external-agents#add-more-agents).

## Related resources

* [Editors](/cli/editor-integration)
* [Use Poolside in another ACP-compatible editor](/tools/other-acp)
* [Zed external agent documentation](https://zed.dev/docs/ai/external-agents#add-more-agents)
