import { SandboxAgent } from "sandbox-agent";
const sdk = await SandboxAgent.start();
const session = await sdk.createSession({
agent: "claude",
});
await session.prompt([
{ type: "text", text: "Summarize this repository." },
]);
await sdk.dispose();