Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ You don't have to choose: agentOS works with sandboxes through the [sandbox exte
## Quick start

```bash
npm install @rivet-dev/agent-os @rivet-dev/agent-os-common @rivet-dev/agent-os-pi
npm install @rivet-dev/agent-os-core @rivet-dev/agent-os-common @rivet-dev/agent-os-pi
```

```ts
import { AgentOs } from "@rivet-dev/agent-os";
import { AgentOs } from "@rivet-dev/agent-os-core";
import common from "@rivet-dev/agent-os-common";
import pi from "@rivet-dev/agent-os-pi";

Expand Down
6 changes: 3 additions & 3 deletions packages/core/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @rivet-dev/agent-os
# @rivet-dev/agent-os-core

A high-level SDK for running coding agents in isolated VMs. agentOS manages the full lifecycle of virtual machines — from filesystem setup and process management to launching AI agents via the Agent Communication Protocol (ACP).

Expand All @@ -19,13 +19,13 @@ Agents run inside sandboxed VMs with their own filesystem, process table, and ne
## Quick Start

```bash
npm install @rivet-dev/agent-os
npm install @rivet-dev/agent-os-core
# Install an agent adapter + its underlying agent
npm install pi-acp @mariozechner/pi-coding-agent
```

```typescript
import { AgentOs } from "@rivet-dev/agent-os";
import { AgentOs } from "@rivet-dev/agent-os-core";

// 1. Create a VM
const vm = await AgentOs.create();
Expand Down
2 changes: 1 addition & 1 deletion registry/file-system/google-drive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugin.
## Usage

```ts
import { AgentOs } from "@rivet-dev/agent-os";
import { AgentOs } from "@rivet-dev/agent-os-core";
import { createGoogleDriveBackend } from "@rivet-dev/agent-os-google-drive";

const vm = await AgentOs.create({
Expand Down