A CLAUDE.md is just a markdown file at the root of your repo. Copy the content below into your own project's CLAUDE.md to give your agent the same context.
npx versuz@latest install rivet-dev-rivet --kind=claude-mdcurl -o CLAUDE.md https://raw.githubusercontent.com/rivet-dev/rivet/HEAD/CLAUDE.md---
title: "Claude"
description: "Run the Claude coding agent inside a VM."
skill: false
---
<Note>
Claude agent documentation is coming soon.
</Note>
```ts @nocheck
import claude from "@rivet-dev/agent-os-claude";
const vm = await AgentOs.create({ software: [common, claude] });
const { sessionId } = await vm.createSession("claude", {
env: { ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY },
});
```