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

# Workspace lanes

> Configure workspace lanes for multi-context AI sessions.

Workspace lanes allow users to maintain separate AI contexts (history, memory, system prompt) within a single account. Each lane is stored as an isolated session namespace.

## Configuration

```yaml theme={"dark"}
lanes:
  enabled: true
  maxPerUser: 5
  storage: "sqlite"
  isolateMemory: true
  isolateSystemPrompt: false
```

| Key                   | Type    | Default                    | Description                            |
| --------------------- | ------- | -------------------------- | -------------------------------------- |
| `enabled`             | boolean | `false`                    | Enable workspace lanes for all users   |
| `maxPerUser`          | integer | `5`                        | Maximum lanes per user (max: 20)       |
| `storage`             | string  | inherits `session.storage` | Storage backend for lane data          |
| `isolateMemory`       | boolean | `true`                     | Separate memory store per lane         |
| `isolateSystemPrompt` | boolean | `false`                    | Allow per-lane system prompt overrides |

## Per-agent override

```yaml theme={"dark"}
agents:
  myagent:
    lanes:
      enabled: true
      maxPerUser: 3
```

## Storage considerations

Lanes inherit the same backend as sessions (`session.storage`). For large deployments, prefer `sqlite` or `postgres` over `memory`.
