Skip to content
GitHub Get Started
Agent

Claude Code

server.ts
import { agentOS, setup } from "@rivet-dev/agentos";
import claude from "@agentos-software/claude-code";
const vm = agentOS({ software: [claude] });
export const registry = setup({ use: { vm } });
registry.start();

Read Sessions first for session options, streaming events, prompts, and lifecycle management.

See Full Example

Set the relevant variable(s) on the session’s env, sourced from your server’s environment:

  • ANTHROPIC_API_KEY — Anthropic API key (direct API).
  • ANTHROPIC_AUTH_TOKEN — bearer token for proxy / OAuth auth.
  • ANTHROPIC_BASE_URL — route through a gateway or proxy endpoint.
  • ANTHROPIC_MODEL — override the default model.
  • CLAUDE_CODE_USE_BEDROCK=1 — use Amazon Bedrock (auth via the AWS credential chain: AWS_REGION, AWS_PROFILE, …).
  • CLAUDE_CODE_USE_VERTEX=1 — use Google Vertex AI (auth via Google Cloud credentials).

See LLM Credentials, and Claude Code’s environment variables for the full list.

Claude Code discovers agent skills from SKILL.md files under its skills directory. Write the skill into the VM before creating a session and Claude Code loads it automatically.

const skill = `---
name: commit-style
description: How to write commit messages in this project.
---
Write commit messages in the imperative mood and keep the subject under 50 characters.
`;
// Write the skill before creating the session
await agent.mkdir("/home/agentos/.claude/skills/commit-style", { recursive: true });
await agent.writeFile("/home/agentos/.claude/skills/commit-style/SKILL.md", skill);
// Claude Code discovers the skill automatically
const session = await agent.createSession("claude", {
env: { ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY! },
});

Expose extra tools to the agent by passing mcpServers to createSession. Both local child-process servers and remote URLs are supported.

const session = await agent.createSession("claude", {
env: { ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY! },
mcpServers: [
{
type: "local",
command: "npx",
args: ["-y", "@modelcontextprotocol/server-filesystem", "/home/agentos"],
env: {},
},
{
type: "remote",
url: "https://mcp.example.com/sse",
headers: { Authorization: "Bearer my-token" },
},
],
});

Claude Code is a built-in agent, but it’s just a software package under the hood. To ship your own ACP adapter, swap the underlying agent SDK, or register a tweaked build as a new agent, see Custom Agents.