ワンクリックで
acp
Spawn external coding agents via the Agent Client Protocol (ACP)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Spawn external coding agents via the Agent Client Protocol (ACP)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Read, search, send, and manage messages across Gmail, Outlook, Telegram, and other platforms
An on-demand personal daily briefing — weather, headlines, the shape of your day, and one thing worth your attention — in a sharp executive-assistant voice. The general-purpose morning brief; richer work or admin digests compose it as their general layer.
One-time migration of an existing memory-v2 concept corpus into the memory-v3 section-grain "wiki" — topical articles with a stand-alone lead and queryable sections — with loss-proof staging, assistant-reviewed authoring, and a retrieval-eval gate before cutover.
Delegate a big or high-stakes job to a fleet of parallel subagents, orchestrated deterministically; runs unattended and reports back
Manage contacts, communication channels, access control, and invite links
Build and edit small, personal visual tools and artifacts — dashboards, trackers, calculators, data visualizations, charts, simple landing pages, and slide decks the user wants for THEMSELVES. This is the right skill whenever the user asks to "visualize this," "make a chart," or "build an artifact" for their own use, or to edit an app they already built here. Do NOT reach for a ui_show dynamic_page to fake an artifact — build a real persistent app here. NOT for complex, multi-user, or shippable products — those go to a real project folder with a coding agent (see Scope below).
| name | acp |
| description | Spawn external coding agents via the Agent Client Protocol (ACP) |
| compatibility | Designed for Vellum personal assistants |
| metadata | {"emoji":"🔗","vellum":{"display-name":"ACP","category":"development","activation-hints":["User asks to use Claude Code or Codex to do something","User wants to delegate a coding task to Claude Code, Codex, or another ACP agent","User wants to hand a coding task to another agent and check on it later","User wants to spawn an external coding agent that runs autonomously and streams results back","User mentions ACP, claude-agent-acp, codex-acp, or running multiple coding agents in parallel"],"avoid-when":["Task is small enough to do inline with the assistant's own tools - no need for an external agent"]}} |
ACP agent orchestration - spawn external coding agents (Claude Code, Codex) to work on tasks via the Agent Client Protocol. Each agent runs as its own subprocess speaking ACP over stdio and streams results back into the conversation.
Use acp_spawn to delegate a coding task to an external agent. The agent runs as a subprocess speaking the ACP protocol over stdio and streams results back.
Users can refer to agents by natural names: "claude code", "codex cli", and "openai codex" all resolve to the canonical claude and codex ids (unless the user's config defines an agent literally keyed by that name, which always wins).
ACP is always available - default profiles for claude and codex ship out-of-box, so no config edit is needed to start. First-time setup is just making the adapter binary available, then spawning:
Install the adapter binary if it's missing. This happens automatically: when acp_spawn finds the agent's binary missing from PATH, the assistant installs it once via a sandboxed bun global install and proceeds in the same call (see "Automatic adapter availability" below).
Call acp_spawn. Do NOT run vellum sleep && vellum wake - that kills the conversation.
When acp_spawn finds the agent's binary missing from PATH, the assistant installs it once via a sandboxed bun global install and then runs the real installed binary. The install runs in a fresh empty temporary directory (never the task's project directory), with known secrets stripped from the installer environment and the registry pinned to the public npm registry, so a malicious project directory cannot hijack package resolution or capture a token. After this one-time install, the adapter is a normal trusted binary on PATH and every later spawn (and resume) uses it directly.
Only the allowlisted out-of-box packages are ever installed this way (@agentclientprotocol/claude-agent-acp, @zed-industries/codex-acp); user-configured agents with custom commands are never installed automatically.
Manual installation is fallback guidance for unusual setups: bun unavailable, restricted global installs, or an auto-install failure (the failure reason is surfaced in the tool result).
bun add -g @agentclientprotocol/claude-agent-acp # claude
bun add -g @zed-industries/codex-acp # codex
The claude-agent-acp adapter requires a Claude OAuth token. Store it once in the credential store and every spawn injects it as CLAUDE_CODE_OAUTH_TOKEN automatically:
assistant credentials set --service acp --field claude_oauth_token <token>
When the token is missing, do NOT ask the user to paste it into chat. Collect it via the secure prompt instead: assistant credentials prompt --service acp --field claude_oauth_token --label "Claude OAuth Token". That prompts the user through a secure UI so the token never enters the conversation or the workspace config. Users generate the token by running claude setup-token on a machine where they are logged in to Claude.
The codex-acp adapter is installed automatically when missing, but it shells out to the underlying codex CLI, which must also be on PATH:
Install the Codex CLI (version 0.111 or higher) via OpenAI's distribution channel of choice. The adapter will fail if codex isn't on PATH.
Authenticate. The codex-acp adapter inherits whatever auth the underlying codex CLI uses. Typical flows:
codex login (OAuth)CODEX_API_KEY environment variableOPENAI_API_KEY environment variableDo NOT put API keys (or any secret) in the workspace config file - secrets never belong in the workspace directory. Use the credential store instead.
claude (via the claude-agent-acp adapter) and codex (via the codex-acp adapter).claude, claude -p, claude --acp, or the bare codex CLI as the ACP command. Claude and Codex only speak the protocol through their dedicated *-acp adapters.agents.<id> entry in config if they want to override the defaults (e.g. point to a custom binary path or pass extra args/env). An acp.agents.<id> entry replaces the bundled default entirely (no field merge), so any override must spell out the full command and args, not just the field being changed.claude-agent-acp or codex-acp, leave it alone.Adapters are installed once via a bun global install. To update one to the latest version, ask the user first, then re-install it globally:
bun add -g @agentclientprotocol/claude-agent-acp@latest
# or
bun add -g @zed-industries/codex-acp@latest
Then retry the acp_spawn call.
acp_steer interrupts the in-flight prompt. Use it to course-correct ("stop, do X instead"). It cancels whatever the agent is currently working on and replaces it with the new instruction. Queued follow-ups behind a running prompt are not supported - wait for the acp_session_completed notification instead.acp_steer transparently resumes it. The session is restored from persisted history via ACP session loading when the agent supports it, and the new instruction runs with the agent's full prior context. This is the primary way to do follow-up work on an existing session id - prefer it over spawning a fresh session that would lose context.acp_spawn. For claude sessions, the completion message also includes a claude --resume <id> CLI hint for resuming outside the assistant.Use acp_list_agents to see what's set up and what's missing. It returns each available agent profile, whether the agent's binary is on PATH (missing binaries are installed automatically on first spawn), and an install hint if not. This is the right tool to call when deciding between claude and codex, or when the user asks "what coding agents do I have?"
Default to the conversation's current working directory when spawning an agent. For risky changes or parallel work where you don't want the agent touching the same checkout the user is editing, create a git worktree first via the shell tool and pass that worktree path as cwd to acp_spawn. That keeps the agent isolated from the user's in-progress work.
acp_status to check on running agents and acp_abort to stop them.cwd parameter controls where the agent works - set it to the project root the user wants the agent to operate in.