Origin Docs

Agents

Parallel worktrees, CDE Agent Sessions, and Studio agent chats — three related agent surfaces in ORGN.

CDE and ORGN Studio use the word "agent" in several places. This page separates them so you know which surface to open for which job.

Three surfaces at a glance

Origin AgentAgent Sessions (CDE)Agent chats (Studio)
WhatIn-IDE assistant — Q&A, edits, and tool use on demandDesktop UI for browsing long-running agent sessionsBrowser sidebar for autonomous build agents on tasks
ProductCDE desktopCDE desktopORGN Studio browser
WhereChat panelAgent Sessions Welcome page; chat auxiliary barProject sidebar — labeled Agent Chats
Open viaChat panel in the workbenchCommand palette: Open Agent Sessions WelcomeAppears when build agents are running on tasks
Best forDay-to-day work in your current workspaceReview, switch, and project focused session viewsMonitor autonomous agents launched from the task board

These are not interchangeable. Origin Agent is the in-IDE assistant in your current workspace. Agent Sessions is a separate session browser. Agent chats in Studio tracks autonomous build agents tied to tasks.

Origin Agent in CDE

Origin Agent is the in-IDE assistant — it answers questions, edits files, and runs terminal commands when the task requires it. There is no separate mode to switch into; the agent is multifaceted on demand.

Typical workflow

  1. Open a cloud worktree or local project
  2. Open Origin Agent and describe the task — reference files with @ mentions when helpful
  3. Review and approve tool calls as they execute
  4. Commit or push changes from the integrated Git UI

On cloud worktrees, tool calls (file edits, terminal commands) run inside the TDX sandbox — same runtime boundary as your code. Inference still routes through ORGN Gateway; see Origin Agent for ZDR vs TEE models.

Parallel agents via worktrees

Run multiple agents concurrently by giving each one its own worktree:

  • Each worktree is a separate branch in a separate sandbox (or local tree)
  • Agents on different worktrees do not stomp each other
  • Create worktrees from the Projects sidebar per task

Recommended pattern: one worktree, one agent focus, one branch.

Agent Sessions in CDE desktop

Agent Sessions is a VS Code feature in CDE for browsing and managing long-running agent sessions — separate from the Origin Agent chat panel.

Where to find it

  • Agent Sessions Welcome — optional startup editor tab with onboarding and session cards
  • Agent Sessions sidebar — viewer in the chat auxiliary bar for filtering and refreshing sessions

Session providers

CDE labels sessions by where they run:

ProviderMeaning
LocalAgent session on your machine
Origin CLIBackground agent running via Origin CLI in an isolated local worktree
CloudCloud-hosted agent session

Open the welcome page from the command palette: Open Agent Sessions Welcome.

Agent Session Projection

When viewing a session in projection mode, CDE focuses the workbench on a single session — title bar status, narrowed context, and an explicit exit path (Escape). Use this to review agent output without chat panel clutter, not to start new inference.

Agent chats in ORGN Studio

In the ORGN Studio browser app, the project sidebar shows Agent Chats when autonomous build agents are active on tasks.

This panel:

  • Lists running and completed build agents per project
  • Links each agent to its worktrees and browser Code Mode sessions
  • Polls for status while agents are active

Studio agent chats are tied to the task board — they are not the same as Origin Agent in CDE or CDE's Agent Sessions window. Launching the desktop app from a Studio task is marked Soon; today, download CDE and sign in with the same id-orgn session.

Skills

Repositories can extend agent behavior with skills — instruction files that attach to agent requests when declared in agent frontmatter.

Skills live in .agents/skills/ in your repo. Each skill is a SKILL.md file with YAML frontmatter:

.agents/skills/launch/SKILL.md (example)
---
name: launch
description: "Launch and automate VS Code using agent-browser via Chrome DevTools Protocol."
---

When an agent declares a skill in its header, CDE attaches the skill instructions to requests for that agent. See the VS Code agents documentation for the full skills model.

Project-level model and sandbox settings are configured in ORGN Studio — CDE inherits team context through your signed-in session.

Tasks and automation

Studio tasks linked to worktrees can trigger automation when a worktree is created (runOn: worktreeCreated) — for example dependency install or environment validation before an agent starts.

Next steps

On this page