Delegators

A delegator is a named pairing of an LLM tool (e.g. claude) and a model alias (e.g. opus) that Operator uses to launch agents for tickets. Delegators give you control over which tool and model handles which tickets, and let you configure launch behavior per pairing. LLM tasks can be launched on behalf on a named delegator, which allows you to refine and version their prompts.

Quick start

Add a [[delegators]] entry to your operator.toml:

[[delegators]]
name        = "claude-sonnet-auto"
llm_tool    = "claude"
model       = "sonnet"

[delegators.launch_config]
yolo        = true

Then run cargo run -- launch (or use the VS Code sidebar “Add Delegator” button) to create one interactively.

How delegators relate to LLM Tools and Model Servers

Three concepts work together:

Concept What it picks Example
LLM Tool Which CLI binary to run claude, codex, gemini
Delegator Which tool + model to use claude + opus
Model Server Which inference endpoint to call ollama-local, anthropic-api

A delegator bridges a tool (the binary) to a model server (the backend). If model_server is omitted, the tool’s implicit vendor default is used (claude → Anthropic API, codex → OpenAI API, gemini → Google API).

Fields

Field Required Description
name Yes Unique identifier (e.g. "claude-opus-auto")
llm_tool Yes Tool name matching a detected binary ("claude", "codex", "gemini")
model Yes Model alias passed to the tool (e.g. "opus", "sonnet", "gpt-4o")
display_name No Human-readable label shown in the UI
model_server No Name of a declared [[model_servers]] entry; omit to use the tool’s vendor default
model_properties No Arbitrary key-value pairs forwarded to the model (e.g. reasoning_effort = "high")
launch_config No Per-delegator launch overrides (see below)

Launch configuration

[delegators.launch_config] lets you override launch behavior for a specific delegator:

[[delegators]]
name     = "claude-opus-yolo"
llm_tool = "claude"
model    = "opus"

[delegators.launch_config]
yolo             = true          # auto-accept all prompts
permission_mode  = "bypassPermissions"
use_worktrees    = true          # override global git.use_worktrees
prompt_suffix    = "\n\nBe concise."
Option Default Description
yolo false Run in auto-accept mode (skips all confirmation prompts)
permission_mode inherit Permission mode override
flags [] Extra CLI flags appended to the launch command
use_worktrees inherit Override global git.use_worktrees for this delegator
create_branch inherit Whether to create a git branch per ticket
target none Name of an execution target, such as a remote host, docker container or coder workspace
prompt_prefix none Text prepended before the generated ticket prompt
prompt_suffix none Text appended after the generated ticket prompt

inherit means the global config value is used.

Execution targets

Where does the agent process run? One [[targets]] registry answers it for every launch path (TUI, web, VS Code, REST). A delegator references a target by name, exactly like model_server:

[[targets]]
name  = "sandbox"
kind  = "docker"
image = "untra/operator:latest"

[[targets]]
name     = "cloud"
kind     = "coder"
template = "operator-agent"      # child workspaces come from this template

[[targets]]
name      = "gpu-vm"
kind      = "ssh"
ssh_alias = "gpu-vm"             # resolved via ~/.ssh/config
workdir   = "/home/me/proj"

[[delegators]]
name   = "heavy"
llm_tool = "claude"
model  = "opus"
[delegators.launch_config]
target = "cloud"

Resolution precedence (first match wins):

  1. target name — explicit [[targets]] entry, the synthesized local/docker targets, or a [[hosts]] name. Unknown names are a hard error, never a silent fallback to local.
  2. host name (deprecated) — the [[hosts]] entry of that name
  3. docker = true (deprecated) — the synthesized docker target
  4. docker = false — local
  5. launch.docker.enabled = true — the synthesized docker target. Behavior change: this was previously only a TUI dialog gate; it is now a real fallback, so REST/CLI/auto launches with it set run in docker.
  6. otherwise — local

Legacy inputs are synthesized rather than special-cased: [launch.docker] becomes a target named docker, and every [[hosts]] entry becomes an ssh target of the same name. Setting both docker and host now resolves deterministically to the host (with a deprecation warning) instead of erroring.

Coder targets

A coder target’s execution shape is an SSH target with a dynamically provisioned alias: Operator creates (or restarts) a per-ticket workspace from template, writes an SSH config fragment (ProxyCommand coder ssh --stdio <workspace>), prepares the git checkout, and launches over the shared SSH remote path. Workspaces are stopped on completion and never deleted — reclamation belongs to the Coder admin’s autostop policy.

Credentials are held by name: url_env / token_env name environment variables, and the token variable is stripped from every agent’s spawn environment on all target kinds. Blast radius: a Coder session token can create, delete, and SSH into every workspace its user owns — scope accordingly.

Known limitation: prompt files are written on the operator side, so a coder target currently requires the workspace to reach them (e.g. Operator itself running inside a Coder workspace via the coder module); callback_url keeps multi-step chains reporting when the SSH tunnel drops.

Remote constraints for ssh and coder targets: worktrees and relay MCP injection are forced off, and the zellij session wrapper is unsupported. See Remote Hosts (SSH) for the underlying mechanics.

Relay MCP injection

Set operator_relay = true to enable the relay MCP server for Claude Code launches from this delegator. Use false to disable it even when the global default is true. Omit the field to use the global relay.auto_inject_mcp default.

[delegators.coordination.launch_config]
operator_relay = true   # coordination-heavy delegators: enable relay

[delegators.task.launch_config]
operator_relay = false  # single-agent task delegators: disable relay

Using a custom model server

To route a delegator through a local Ollama instance:

[[model_servers]]
name     = "ollama-local"
kind     = "ollama"
base_url = "http://localhost:11434"

[[delegators]]
name         = "codex-qwen"
llm_tool     = "codex"
model        = "qwen2.5-coder"
model_server = "ollama-local"

Multiple delegators

You can declare as many delegators as you like. When launching a ticket, Operator selects a delegator based on the ticket’s delegator frontmatter field or the configured default:

[[delegators]]
name     = "claude-sonnet-auto"
llm_tool = "claude"
model    = "sonnet"

[[delegators]]
name     = "claude-opus-research"
llm_tool = "claude"
model    = "opus"

[delegators.launch_config]
prompt_suffix = "\n\nThink carefully before acting."

Agent profiles & remote agents

A delegator can be serialized to a portable agent profile (agent-profile.json) — a tool-agnostic interchange format with a shared core (provider, model, system_prompt, skills, mcp_servers, tools) plus namespaced extension bags: x_operator (Operator’s launch config and model properties) and per-platform opaque bags (x_agnt, x_openai) that are preserved verbatim. Profiles round-trip losslessly in both directions, so a profile authored on another platform survives import → export byte-for-byte.

A delegator may also carry a remote_agent reference — a { platform, id } pointer to a remote, named agent that lives on another service:

[[delegators]]
name  = "agnt-researcher"
# the agent lives on AGNT; Operator references it but never runs it
[delegators.remote_agent]
platform = "agnt"          # or "openai"
id       = "a1b2c3d4-…"            # AGNT agent UUID, or an OpenAI asst_… id

Remote agents are export-only: Operator has no runtime client for those platforms, so a delegator carrying a remote_agent cannot be launched locally — resolution returns a RemoteOnlyDelegator error on every launch path. When the platform is agnt, the reference is surfaced in the --format agnt workflow export as a native AGNT agnt-agent node; other platforms ride opaquely in the profile.

Caveat: a non-AGNT remote delegator (e.g. platform = "openai") used as a step agent in an agnt export still emits an ordinary operator-run-step node. If AGNT runs that node it calls back into Operator, which then hits the RemoteOnlyDelegator guard and errors. Don’t bind a non-AGNT remote delegator as the step agent of a workflow you intend to export to AGNT.

Design note — the interchange is tool-agnostic. AGNT was the first remote platform; adding OpenAI Assistants as the second cost only a generic remote_agent { platform, id } reference and an opaque x_openai bag mirroring x_agntno new mapping logic, no executor, no export node. That’s the evidence the schema core is not shaped around any one tool.

REST API

The running Operator API exposes full CRUD for delegators, plus agent-profile interchange:

Method Path Description
GET /api/v1/delegators List all delegators
POST /api/v1/delegators Create a delegator
POST /api/v1/delegators/from-tool Create from a detected tool (auto-generates name)
POST /api/v1/delegators/import-profile Create a delegator from an AgentProfile
GET /api/v1/delegators/{name} Get one delegator
GET /api/v1/delegators/{name}/profile Export a delegator as an AgentProfile
PUT /api/v1/delegators/{name} Update a delegator
DELETE /api/v1/delegators/{name} Delete a delegator

See the OpenAPI reference for request/response shapes.

See also