Paperclip create-agent-adapter
git clone https://github.com/paperclipai/paperclip
T=$(mktemp -d) && git clone --depth=1 https://github.com/paperclipai/paperclip "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.agents/skills/create-agent-adapter" ~/.claude/skills/paperclipai-paperclip-create-agent-adapter && rm -rf "$T"
.agents/skills/create-agent-adapter/SKILL.mdCreating a Paperclip Agent Adapter
An adapter bridges Paperclip's orchestration layer to a specific AI agent runtime (Claude Code, Codex CLI, a custom process, an HTTP endpoint, etc.). Each adapter is a self-contained package that provides implementations for three consumers: the server, the UI, and the CLI.
1. Architecture Overview
packages/adapters/<name>/ src/ index.ts # Shared metadata (type, label, models, agentConfigurationDoc) server/ index.ts # Server exports: execute, sessionCodec, parse helpers execute.ts # Core execution logic (AdapterExecutionContext -> AdapterExecutionResult) parse.ts # Stdout/result parsing for the agent's output format ui/ index.ts # UI exports: parseStdoutLine, buildConfig parse-stdout.ts # Line-by-line stdout -> TranscriptEntry[] for the run viewer build-config.ts # CreateConfigValues -> adapterConfig JSON for agent creation form cli/ index.ts # CLI exports: formatStdoutEvent format-event.ts # Colored terminal output for `paperclipai run --watch` package.json tsconfig.json
Three separate registries consume adapter modules:
| Registry | Location | Interface |
|---|---|---|
| Server | | |
| UI | | |
| CLI | | |
2. Shared Types (@paperclipai/adapter-utils
)
@paperclipai/adapter-utilsAll adapter interfaces live in
packages/adapter-utils/src/types.ts. Import from @paperclipai/adapter-utils (types) or @paperclipai/adapter-utils/server-utils (runtime helpers).
Core Interfaces
// The execute function signature — every adapter must implement this interface AdapterExecutionContext { runId: string; agent: AdapterAgent; // { id, companyId, name, adapterType, adapterConfig } runtime: AdapterRuntime; // { sessionId, sessionParams, sessionDisplayId, taskKey } config: Record<string, unknown>; // The agent's adapterConfig blob context: Record<string, unknown>; // Runtime context (taskId, wakeReason, approvalId, etc.) onLog: (stream: "stdout" | "stderr", chunk: string) => Promise<void>; onMeta?: (meta: AdapterInvocationMeta) => Promise<void>; authToken?: string; } interface AdapterExecutionResult { exitCode: number | null; signal: string | null; timedOut: boolean; errorMessage?: string | null; usage?: UsageSummary; // { inputTokens, outputTokens, cachedInputTokens? } sessionId?: string | null; // Legacy — prefer sessionParams sessionParams?: Record<string, unknown> | null; // Opaque session state persisted between runs sessionDisplayId?: string | null; provider?: string | null; // "anthropic", "openai", etc. model?: string | null; costUsd?: number | null; resultJson?: Record<string, unknown> | null; summary?: string | null; // Human-readable summary of what the agent did clearSession?: boolean; // true = tell Paperclip to forget the stored session } interface AdapterSessionCodec { deserialize(raw: unknown): Record<string, unknown> | null; serialize(params: Record<string, unknown> | null): Record<string, unknown> | null; getDisplayId?(params: Record<string, unknown> | null): string | null; }
Module Interfaces
// Server — registered in server/src/adapters/registry.ts interface ServerAdapterModule { type: string; execute(ctx: AdapterExecutionContext): Promise<AdapterExecutionResult>; testEnvironment(ctx: AdapterEnvironmentTestContext): Promise<AdapterEnvironmentTestResult>; sessionCodec?: AdapterSessionCodec; supportsLocalAgentJwt?: boolean; models?: { id: string; label: string }[]; agentConfigurationDoc?: string; } // UI — registered in ui/src/adapters/registry.ts interface UIAdapterModule { type: string; label: string; parseStdoutLine: (line: string, ts: string) => TranscriptEntry[]; ConfigFields: ComponentType<AdapterConfigFieldsProps>; buildAdapterConfig: (values: CreateConfigValues) => Record<string, unknown>; } // CLI — registered in cli/src/adapters/registry.ts interface CLIAdapterModule { type: string; formatStdoutEvent: (line: string, debug: boolean) => void; }
2.1 Adapter Environment Test Contract
Every server adapter must implement
testEnvironment(...). This powers the board UI "Test environment" button in agent configuration.
type AdapterEnvironmentCheckLevel = "info" | "warn" | "error"; type AdapterEnvironmentTestStatus = "pass" | "warn" | "fail"; interface AdapterEnvironmentCheck { code: string; level: AdapterEnvironmentCheckLevel; message: string; detail?: string | null; hint?: string | null; } interface AdapterEnvironmentTestResult { adapterType: string; status: AdapterEnvironmentTestStatus; checks: AdapterEnvironmentCheck[]; testedAt: string; // ISO timestamp } interface AdapterEnvironmentTestContext { companyId: string; adapterType: string; config: Record<string, unknown>; // runtime-resolved adapterConfig }
Guidelines:
- Return structured diagnostics, never throw for expected findings.
- Use
for invalid/unusable runtime setup (bad cwd, missing command, invalid URL).error - Use
for non-blocking but important situations.warn - Use
for successful checks and context.info
Severity policy is product-critical: warnings are not save blockers.
Example: for
claude_local, detected ANTHROPIC_API_KEY must be a warn, not an error, because Claude can still run (it just uses API-key auth instead of subscription auth).
3. Step-by-Step: Creating a New Adapter
3.1 Create the Package
packages/adapters/<name>/ package.json tsconfig.json src/ index.ts server/index.ts server/execute.ts server/parse.ts ui/index.ts ui/parse-stdout.ts ui/build-config.ts cli/index.ts cli/format-event.ts
package.json — must use the four-export convention:
{ "name": "@paperclipai/adapter-<name>", "version": "0.0.1", "private": true, "type": "module", "exports": { ".": "./src/index.ts", "./server": "./src/server/index.ts", "./ui": "./src/ui/index.ts", "./cli": "./src/cli/index.ts" }, "dependencies": { "@paperclipai/adapter-utils": "workspace:*", "picocolors": "^1.1.1" }, "devDependencies": { "typescript": "^5.7.3" } }
3.2 Root index.ts
— Adapter Metadata
index.tsThis file is imported by all three consumers (server, UI, CLI). Keep it dependency-free (no Node APIs, no React).
export const type = "my_agent"; // snake_case, globally unique export const label = "My Agent (local)"; export const models = [ { id: "model-a", label: "Model A" }, { id: "model-b", label: "Model B" }, ]; export const agentConfigurationDoc = `# my_agent agent configuration ...document all config fields here... `;
Required exports:
— the adapter type key, stored intypeagents.adapter_type
— human-readable name for the UIlabel
— available model options for the agent creation formmodels
— markdown describing allagentConfigurationDoc
fields (used by LLM agents configuring other agents)adapterConfig
Writing
as routing logic:agentConfigurationDoc
The
agentConfigurationDoc is read by LLM agents (including Paperclip agents that create other agents). Write it as routing logic, not marketing copy. Include concrete "use when" and "don't use when" guidance so an LLM can decide whether this adapter is appropriate for a given task.
export const agentConfigurationDoc = `# my_agent agent configuration Adapter: my_agent Use when: - The agent needs to run MyAgent CLI locally on the host machine - You need session persistence across runs (MyAgent supports thread resumption) - The task requires MyAgent-specific tools (e.g. web search, code execution) Don't use when: - You need a simple one-shot script execution (use the "process" adapter instead) - The agent doesn't need conversational context between runs (process adapter is simpler) - MyAgent CLI is not installed on the host Core fields: - cwd (string, required): absolute working directory for the agent process ... `;
Adding explicit negative cases improves adapter selection accuracy. One concrete anti-pattern is worth more than three paragraphs of description.
3.3 Server Module
server/execute.ts
— The Core
server/execute.tsThis is the most important file. It receives an
AdapterExecutionContext and must return an AdapterExecutionResult.
Required behavior:
- Read config — extract typed values from
using helpers (ctx.config
,asString
,asNumber
,asBoolean
,asStringArray
fromparseObject
)@paperclipai/adapter-utils/server-utils - Build environment — call
then layer inbuildPaperclipEnv(agent)
, context vars (PAPERCLIP_RUN_ID
,PAPERCLIP_TASK_ID
,PAPERCLIP_WAKE_REASON
,PAPERCLIP_WAKE_COMMENT_ID
,PAPERCLIP_APPROVAL_ID
,PAPERCLIP_APPROVAL_STATUS
), user env overrides, and auth tokenPAPERCLIP_LINKED_ISSUE_IDS - Resolve session — check
/runtime.sessionParams
for an existing session; validate it's compatible (e.g. same cwd); decide whether to resume or start freshruntime.sessionId - Render prompt — use
with the template variables:renderTemplate(template, data)
,agentId
,companyId
,runId
,company
,agent
,runcontext - Call onMeta — emit adapter invocation metadata before spawning the process
- Spawn the process — use
for CLI-based agents orrunChildProcess()
for HTTP-based agentsfetch() - Parse output — convert the agent's stdout into structured data (session id, usage, summary, errors)
- Handle session errors — if resume fails with "unknown session", retry with a fresh session and set
clearSession: true - Return AdapterExecutionResult — populate all fields the agent runtime supports
Environment variables the server always injects:
| Variable | Source |
|---|---|
| |
| |
| Server's own URL |
| Current run id |
| or |
| |
| or |
| |
| |
| (comma-separated) |
| (if no explicit key in config) |
server/parse.ts
— Output Parser
server/parse.tsParse the agent's stdout format into structured data. Must handle:
- Session identification — extract session/thread ID from init events
- Usage tracking — extract token counts (input, output, cached)
- Cost tracking — extract cost if available
- Summary extraction — pull the agent's final text response
- Error detection — identify error states, extract error messages
- Unknown session detection — export an
function for retry logicis<Agent>UnknownSessionError()
Treat agent output as untrusted. The stdout you're parsing comes from an LLM-driven process that may have executed arbitrary tool calls, fetched external content, or been influenced by prompt injection in the files it read. Parse defensively:
- Never
or dynamically execute anything from outputeval() - Use safe extraction helpers (
,asString
,asNumber
) — they return fallbacks on unexpected typesparseJson - Validate session IDs and other structured data before passing them through
- If output contains URLs, file paths, or commands, do not act on them in the adapter — just record them
server/index.ts
— Server Exports
server/index.tsexport { execute } from "./execute.js"; export { testEnvironment } from "./test.js"; export { parseMyAgentOutput, isMyAgentUnknownSessionError } from "./parse.js"; // Session codec — required for session persistence export const sessionCodec: AdapterSessionCodec = { deserialize(raw) { /* raw DB JSON -> typed params or null */ }, serialize(params) { /* typed params -> JSON for DB storage */ }, getDisplayId(params) { /* -> human-readable session id string */ }, };
server/test.ts
— Environment Diagnostics
server/test.tsImplement adapter-specific preflight checks used by the UI test button.
Minimum expectations:
- Validate required config primitives (paths, commands, URLs, auth assumptions)
- Return check objects with deterministic
valuescode - Map severity consistently (
/info
/warn
)error - Compute final status:
if anyfailerror
if no errors and at least one warningwarn
otherwisepass
This operation should be lightweight and side-effect free.
3.4 UI Module
ui/parse-stdout.ts
— Transcript Parser
ui/parse-stdout.tsConverts individual stdout lines into
TranscriptEntry[] for the run detail viewer. Must handle the agent's streaming output format and produce entries of these kinds:
— model/session initializationinit
— agent text responsesassistant
— agent thinking/reasoning (if supported)thinking
— tool invocations with name and inputtool_call
— tool results with content and error flagtool_result
— user messages in the conversationuser
— final result with usage statsresult
— fallback for unparseable linesstdout
export function parseMyAgentStdoutLine(line: string, ts: string): TranscriptEntry[] { // Parse JSON line, map to appropriate TranscriptEntry kind(s) // Return [{ kind: "stdout", ts, text: line }] as fallback }
ui/build-config.ts
— Config Builder
ui/build-config.tsConverts the UI form's
CreateConfigValues into the adapterConfig JSON blob stored on the agent.
export function buildMyAgentConfig(v: CreateConfigValues): Record<string, unknown> { const ac: Record<string, unknown> = {}; if (v.cwd) ac.cwd = v.cwd; if (v.promptTemplate) ac.promptTemplate = v.promptTemplate; if (v.model) ac.model = v.model; ac.timeoutSec = 0; ac.graceSec = 15; // ... adapter-specific fields return ac; }
UI Config Fields Component
Create
ui/src/adapters/<name>/config-fields.tsx with a React component implementing AdapterConfigFieldsProps. This renders adapter-specific form fields in the agent creation/edit form.
Use the shared primitives from
ui/src/components/agent-config-primitives:
— labeled form field wrapperField
— boolean toggle with label and hintToggleField
— text input with draft/commit behaviorDraftInput
— number input with draft/commit behaviorDraftNumberInput
— standard hint text for common fieldshelp
The component must support both
create mode (using values/set) and edit mode (using config/eff/mark).
3.5 CLI Module
cli/format-event.ts
— Terminal Formatter
cli/format-event.tsPretty-prints stdout lines for
paperclipai run --watch. Use picocolors for coloring.
import pc from "picocolors"; export function printMyAgentStreamEvent(raw: string, debug: boolean): void { // Parse JSON line from agent stdout // Print colored output: blue for system, green for assistant, yellow for tools // In debug mode, print unrecognized lines in gray }
4. Registration Checklist
After creating the adapter package, register it in all three consumers:
4.1 Server Registry (server/src/adapters/registry.ts
)
server/src/adapters/registry.tsimport { execute as myExecute, sessionCodec as mySessionCodec } from "@paperclipai/adapter-my-agent/server"; import { agentConfigurationDoc as myDoc, models as myModels } from "@paperclipai/adapter-my-agent"; const myAgentAdapter: ServerAdapterModule = { type: "my_agent", execute: myExecute, sessionCodec: mySessionCodec, models: myModels, supportsLocalAgentJwt: true, // true if agent can use Paperclip API agentConfigurationDoc: myDoc, }; // Add to the adaptersByType map const adaptersByType = new Map<string, ServerAdapterModule>( [..., myAgentAdapter].map((a) => [a.type, a]), );
4.2 UI Registry (ui/src/adapters/registry.ts
)
ui/src/adapters/registry.tsimport { myAgentUIAdapter } from "./my-agent"; const adaptersByType = new Map<string, UIAdapterModule>( [..., myAgentUIAdapter].map((a) => [a.type, a]), );
With
ui/src/adapters/my-agent/index.ts:
import type { UIAdapterModule } from "../types"; import { parseMyAgentStdoutLine } from "@paperclipai/adapter-my-agent/ui"; import { MyAgentConfigFields } from "./config-fields"; import { buildMyAgentConfig } from "@paperclipai/adapter-my-agent/ui"; export const myAgentUIAdapter: UIAdapterModule = { type: "my_agent", label: "My Agent", parseStdoutLine: parseMyAgentStdoutLine, ConfigFields: MyAgentConfigFields, buildAdapterConfig: buildMyAgentConfig, };
4.3 CLI Registry (cli/src/adapters/registry.ts
)
cli/src/adapters/registry.tsimport { printMyAgentStreamEvent } from "@paperclipai/adapter-my-agent/cli"; const myAgentCLIAdapter: CLIAdapterModule = { type: "my_agent", formatStdoutEvent: printMyAgentStreamEvent, }; // Add to the adaptersByType map
5. Session Management — Designing for Long Runs
Sessions allow agents to maintain conversation context across runs. The system is codec-based — each adapter defines how to serialize/deserialize its session state.
Design for long runs from the start. Treat session reuse as the default primitive, not an optimization to add later. An agent working on an issue may be woken dozens of times — for the initial assignment, approval callbacks, re-assignments, manual nudges. Each wake should resume the existing conversation so the agent retains full context about what it has already done, what files it has read, and what decisions it has made. Starting fresh each time wastes tokens on re-reading the same files and risks contradictory decisions.
Key concepts:
is an opaquesessionParams
stored in the DB per taskRecord<string, unknown>- The adapter's
converts execution result data to storable paramssessionCodec.serialize()
converts stored params back for the next runsessionCodec.deserialize()
extracts a human-readable session ID for the UIsessionCodec.getDisplayId()- cwd-aware resume: if the session was created in a different cwd than the current config, skip resuming (prevents cross-project session contamination)
- Unknown session retry: if resume fails with a "session not found" error, retry with a fresh session and return
so Paperclip wipes the stale sessionclearSession: true
If the agent runtime supports any form of context compaction or conversation compression (e.g. Claude Code's automatic context management, or Codex's
previous_response_id chaining), lean on it. Adapters that support session resume get compaction for free — the agent runtime handles context window management internally across resumes.
Pattern (from both claude-local and codex-local):
const canResumeSession = runtimeSessionId.length > 0 && (runtimeSessionCwd.length === 0 || path.resolve(runtimeSessionCwd) === path.resolve(cwd)); const sessionId = canResumeSession ? runtimeSessionId : null; // ... run attempt ... // If resume failed with unknown session, retry fresh if (sessionId && !proc.timedOut && exitCode !== 0 && isUnknownSessionError(output)) { const retry = await runAttempt(null); return toResult(retry, { clearSessionOnMissingSession: true }); }
6. Server-Utils Helpers
Import from
@paperclipai/adapter-utils/server-utils:
| Helper | Purpose |
|---|---|
| Safe string extraction |
| Safe number extraction |
| Safe boolean extraction |
| Safe string array extraction |
| Safe extraction |
| Safe JSON.parse returning or null |
| template rendering |
| Standard env vars |
| Redact sensitive keys for onMeta |
| Validate cwd exists and is absolute |
| Validate command is in PATH |
| Ensure PATH exists in env |
| Spawn with timeout, logging, capture |
7. Conventions and Patterns
Naming
- Adapter type:
(e.g.snake_case
,claude_local
)codex_local - Package name:
@paperclipai/adapter-<kebab-name> - Package directory:
packages/adapters/<kebab-name>/
Config Parsing
- Never trust
values directly — always useconfig
,asString
, etc.asNumber - Provide sensible defaults for every optional field
- Document all fields in
agentConfigurationDoc
Prompt Templates
- Support
for every runpromptTemplate - Use
with the standard variable setrenderTemplate() - Default prompt should use
fromDEFAULT_PAPERCLIP_AGENT_PROMPT_TEMPLATE
so local adapters share Paperclip's execution contract: act in the same heartbeat, avoid planning-only exits unless requested, leave durable progress and a next action, use child issues instead of polling, mark blockers with owner/action, and respect governance boundaries.@paperclipai/adapter-utils/server-utils
Error Handling
- Differentiate timeout vs process error vs parse failure
- Always populate
on failureerrorMessage - Include raw stdout/stderr in
when parsing failsresultJson - Handle the agent CLI not being installed (command not found)
Logging
- Call
andonLog("stdout", ...)
for all process output — this feeds the real-time run vieweronLog("stderr", ...) - Call
before spawning to record invocation detailsonMeta(...) - Use
when including env in metaredactEnvForLogs()
Paperclip Skills Injection
Paperclip ships shared skills (in the repo's top-level
skills/ directory) that agents need at runtime — things like the paperclip API skill and the paperclip-create-agent workflow skill. Each adapter is responsible for making these skills discoverable by its agent runtime without polluting the agent's working directory.
The constraint: never copy or symlink skills into the agent's
cwd. The cwd is the user's project checkout — writing .claude/skills/ or any other files into it would contaminate the repo with Paperclip internals, break git status, and potentially leak into commits.
The pattern: create a clean, isolated location for skills and tell the agent runtime to look there.
How claude-local does it:
- At execution time, create a fresh tmpdir:
mkdtemp("paperclip-skills-") - Inside it, create
(the directory structure Claude Code expects).claude/skills/ - Symlink each skill directory from the repo's
into the tmpdir'sskills/.claude/skills/ - Pass the tmpdir to Claude Code via
— this makes Claude Code discover the skills as if they were registered in that directory, without touching the agent's actual cwd--add-dir <tmpdir> - Clean up the tmpdir in a
block after the run completesfinally
// From claude-local execute.ts async function buildSkillsDir(): Promise<string> { const tmp = await fs.mkdtemp(path.join(os.tmpdir(), "paperclip-skills-")); const target = path.join(tmp, ".claude", "skills"); await fs.mkdir(target, { recursive: true }); const entries = await fs.readdir(PAPERCLIP_SKILLS_DIR, { withFileTypes: true }); for (const entry of entries) { if (entry.isDirectory()) { await fs.symlink( path.join(PAPERCLIP_SKILLS_DIR, entry.name), path.join(target, entry.name), ); } } return tmp; } // In execute(): pass --add-dir to Claude Code const skillsDir = await buildSkillsDir(); args.push("--add-dir", skillsDir); // ... run process ... // In finally: fs.rm(skillsDir, { recursive: true, force: true })
How codex-local does it:
Codex has a global personal skills directory (
$CODEX_HOME/skills or ~/.codex/skills). The adapter symlinks Paperclip skills there if they don't already exist. This is acceptable because it's the agent tool's own config directory, not the user's project.
// From codex-local execute.ts async function ensureCodexSkillsInjected(onLog) { const skillsHome = path.join(codexHomeDir(), "skills"); await fs.mkdir(skillsHome, { recursive: true }); for (const entry of entries) { const target = path.join(skillsHome, entry.name); const existing = await fs.lstat(target).catch(() => null); if (existing) continue; // Don't overwrite user's own skills await fs.symlink(source, target); } }
For a new adapter: figure out how your agent runtime discovers skills/plugins, then choose the cleanest injection path:
- Best: tmpdir + flag (like claude-local) — if the runtime supports an "additional directory" flag, create a tmpdir, symlink skills in, pass the flag, clean up after. Zero side effects.
- Acceptable: global config dir (like codex-local) — if the runtime has a global skills/plugins directory separate from the project, symlink there. Skip existing entries to avoid overwriting user customizations.
- Acceptable: env var — if the runtime reads a skills/plugin path from an environment variable, point it at the repo's
directory directly.skills/ - Last resort: prompt injection — if the runtime has no plugin system, include skill content in the prompt template itself. This uses tokens but avoids filesystem side effects entirely.
Skills as loaded procedures, not prompt bloat. The Paperclip skills (like
paperclip and paperclip-create-agent) are designed as on-demand procedures: the agent sees skill metadata (name + description) in its context, but only loads the full SKILL.md content when it decides to invoke a skill. This keeps the base prompt small. When writing agentConfigurationDoc or prompt templates for your adapter, do not inline skill content — let the agent runtime's skill discovery do the work. The descriptions in each SKILL.md frontmatter act as routing logic: they tell the agent when to load the full skill, not what the skill contains.
Explicit vs. fuzzy skill invocation. For production workflows where reliability matters (e.g. an agent that must always call the Paperclip API to report status), use explicit instructions in the prompt template: "Use the paperclip skill to report your progress." Fuzzy routing (letting the model decide based on description matching) is fine for exploratory tasks but unreliable for mandatory procedures.
8. Security Considerations
Adapters sit at the boundary between Paperclip's orchestration layer and arbitrary agent execution. This is a high-risk surface.
Treat Agent Output as Untrusted
The agent process runs LLM-driven code that reads external files, fetches URLs, and executes tools. Its output may be influenced by prompt injection from the content it processes. The adapter's parse layer is a trust boundary — validate everything, execute nothing.
Secret Injection via Environment, Not Prompts
Never put secrets (API keys, tokens) into prompt templates or config fields that flow through the LLM. Instead, inject them as environment variables that the agent's tools can read directly:
is injected by the server into the process environment, not the promptPAPERCLIP_API_KEY- User-provided secrets in
are passed as env vars, redacted inconfig.env
logsonMeta - The
helper automatically masks any key matchingredactEnvForLogs()/(key|token|secret|password|authorization|cookie)/i
This follows the "sidecar injection" pattern: the model never sees the real secret value, but the tools it invokes can read it from the environment.
Network Access
If your agent runtime supports network access controls (sandboxing, allowlists), configure them in the adapter:
- Prefer minimal allowlists over open internet access. An agent that only needs to call the Paperclip API and GitHub should not have access to arbitrary hosts.
- Skills + network = amplified risk. A skill that teaches the agent to make HTTP requests combined with unrestricted network access creates an exfiltration path. Constrain one or the other.
- If the runtime supports layered policies (org-level defaults + per-request overrides), wire the org-level policy into the adapter config and let per-agent config narrow further.
Process Isolation
- CLI-based adapters inherit the server's user permissions. The
andcwd
config determine what the agent process can access on the filesystem.env
/dangerouslySkipPermissions
flags exist for development convenience but must be documented as dangerous indangerouslyBypassApprovalsAndSandbox
. Production deployments should not use them.agentConfigurationDoc- Timeout and grace period (
,timeoutSec
) are safety rails — always enforce them. A runaway agent process without a timeout can consume unbounded resources.graceSec
9. TranscriptEntry Kinds Reference
The UI run viewer displays these entry kinds:
| Kind | Fields | Usage |
|---|---|---|
| , | Agent initialization |
| | Agent text response |
| | Agent reasoning/thinking |
| | User message |
| , | Tool invocation |
| , , | Tool result |
| , , , , , , , | Final result with usage |
| | Stderr output |
| | System messages |
| | Raw stdout fallback |
10. Testing
Create tests in
server/src/__tests__/<adapter-name>-adapter.test.ts. Test:
- Output parsing — feed sample stdout through your parser, verify structured output
- Unknown session detection — verify the
functionis<Agent>UnknownSessionError - Config building — verify
produces correct adapterConfig from form valuesbuildConfig - Session codec — verify serialize/deserialize round-trips
11. Minimal Adapter Checklist
-
with four exports (packages/adapters/<name>/package.json
,.
,./server
,./ui
)./cli - Root
withindex.ts
,type
,label
,modelsagentConfigurationDoc -
implementingserver/execute.tsAdapterExecutionContext -> AdapterExecutionResult -
implementingserver/test.tsAdapterEnvironmentTestContext -> AdapterEnvironmentTestResult -
with output parser and unknown-session detectorserver/parse.ts -
exportingserver/index.ts
,execute
,testEnvironment
, parse helperssessionCodec -
withui/parse-stdout.ts
for the run viewerStdoutLineParser -
withui/build-config.ts
builderCreateConfigValues -> adapterConfig -
React component for agent formui/src/adapters/<name>/config-fields.tsx -
assembling theui/src/adapters/<name>/index.tsUIAdapterModule -
with terminal formattercli/format-event.ts -
exporting the formattercli/index.ts - Registered in
server/src/adapters/registry.ts - Registered in
ui/src/adapters/registry.ts - Registered in
cli/src/adapters/registry.ts - Added to workspace in root
(if not already covered by glob)pnpm-workspace.yaml - Tests for parsing, session codec, and config building