Skip to content
GitHub Get Started
Agent

Pi

server.ts
import { agentOS, setup } from "@rivet-dev/agentos";
import pi from "@agentos-software/pi";
const vm = agentOS({ software: [pi] });
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 on the session’s env, sourced from your server’s environment:

  • ANTHROPIC_API_KEY — Anthropic (Claude), the default.
  • Other providers — use the provider-named key (e.g. OPENAI_API_KEY, GEMINI_API_KEY, OPENROUTER_API_KEY).

See LLM Credentials, and Pi’s providers docs for the full list.

Pi discovers SKILL.md files from its skills directory, but only when at least one Pi extension is also present in the VM. The headless adapter skips skill loading entirely when no .js extension is discovered, so write the skill and an extension into the VM before creating a session.

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/.pi/agent/skills/commit-style", { recursive: true });
await agent.writeFile("/home/agentos/.pi/agent/skills/commit-style/SKILL.md", skill);
// Skills are only loaded when a Pi extension is also present
await agent.mkdir("/home/agentos/.pi/agent/extensions", { recursive: true });
await agent.writeFile("/home/agentos/.pi/agent/extensions/enable-skills.js", "export default function(pi) {}\n");
// Pi loads the skill automatically
const session = await agent.createSession("pi", {
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("pi", {
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" },
},
],
});

Pi supports extensions that let you register custom tools, modify the system prompt, and hook into agent lifecycle events. Write a .js file into the VM’s extensions directory before creating a session and Pi discovers it automatically.

Pi scans two directories for .js extension files:

DirectoryScope
~/.pi/agent/extensions/Global — applies to all Pi sessions
<cwd>/.pi/extensions/Project — applies only when cwd matches
const extensionCode = `
export default function(pi) {
// Modify the system prompt before each agent turn
pi.on("before_agent_start", async (event) => {
return {
systemPrompt: event.systemPrompt +
"\\n\\nAlways respond in formal English."
};
});
}
`;
// Write the extension before creating the session
await agent.mkdir("/home/agentos/.pi/agent/extensions", { recursive: true });
await agent.writeFile("/home/agentos/.pi/agent/extensions/formal.js", extensionCode);
// Pi discovers the extension automatically
const { sessionId } = await agent.createSession("pi", {
env: { ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY },
});

See the Pi extension documentation for the full extension API.

Pi 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 Pi build as a new agent, see Custom Agents.