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

# Workspace Profile (ws)

> Multi-agent orchestration profile with OpenCode Zen free-plan defaults and premium model recommendations

## Overview

The `ws` profile provides a complete multi-agent orchestration harness for KDCO Workspace. By default, it ships with OpenCode Zen free-plan models (`Big Pickle` and `GPT-5 Nano`), and you can optionally customize it with premium model providers.

## Installation

```bash theme={null}
ocx profile add ws --source kit/ws --from https://ocx-kit.kdco.dev --global
ocx oc -p ws
```

## Default Model Assignments (OpenCode Zen free plan)

These are the out-of-the-box `ws` defaults.

| Agent        | Model      | Role                  |
| ------------ | ---------- | --------------------- |
| `plan`       | Big Pickle | Planning orchestrator |
| `build`      | Big Pickle | Build orchestrator    |
| `coder`      | Big Pickle | Implementation        |
| `explore`    | GPT-5 Nano | Codebase search       |
| `researcher` | GPT-5 Nano | External research     |
| `scribe`     | GPT-5 Nano | Documentation         |
| `reviewer`   | GPT-5 Nano | Code review           |

## Recommended Models

Use these when customizing with premium/custom providers (separate from the free-plan defaults above).

| Role                                            | Recommended                            | Why                                                                              |
| ----------------------------------------------- | -------------------------------------- | -------------------------------------------------------------------------------- |
| Orchestrators (`plan`, `build`)                 | `GPT-5.4` or `Claude Opus 4.6`         | Heavy reasoning and long-horizon planning.                                       |
| Implementation (`coder`)                        | `GPT-5.3 Codex` or `Claude Sonnet 4.6` | Strong agentic coding for complex implementation work.                           |
| Specialists (`explore`, `researcher`, `scribe`) | `Kimi K2.5`                            | Accurate, low hallucination, and usually cheaper/faster.                         |
| Review (`reviewer`)                             | `GPT-5.4` or `Claude Opus 4.6`         | Code review is high-stakes; use a very smart model to catch bugs and edge cases. |

## Customize

After installing, tune model choices in your local profile config:

```bash theme={null}
$EDITOR ~/.config/opencode/profiles/ws/opencode.jsonc
```

If you installed the profile under a different name, edit that profile's `opencode.jsonc` instead.

## See Also

* [KDCO Workspace Guide](/docs/guides/kdco-workspace) — Full installation walkthrough.
* [Workspace Integration](/docs/integrations/workspace) — Architecture and component details.
* [Profiles Overview](/docs/profiles/overview) — Profile concepts and configuration.
