@rivet-dev/agentos-flue
v0.2.19
Published
agentOS sandbox adapter for Flue
Keywords
Readme
@rivet-dev/agentos-flue
Use agentOS as the sandbox for a Flue agent.
import { agentOS, setup } from "@rivet-dev/agentos";
import { agentOSSandbox } from "@rivet-dev/agentos-flue";
import { createAgent } from "@flue/runtime";
const registry = setup({ use: { vm: agentOS() } });
export default createAgent(() => ({
model: "anthropic/claude-sonnet-5",
sandbox: agentOSSandbox({ actor: "vm", registry }),
}));Each Flue context maps to a stable agentOS actor with a durable /workspace
filesystem. The registry starts lazily in the same process.
See the Flue integration guide and complete example.
