> ## Documentation Index
> Fetch the complete documentation index at: https://docs.boxd.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# OSS integrations

> Open source agent frameworks that run their agents on boxd machines.

Open source agent frameworks can use boxd as their sandbox or runtime. Two integrations are live today, and one is in the making.

## Flue

<img src="https://mintcdn.com/azin/psRZbQh2QwMUVL3U/images/boxd-x-flue.png?fit=max&auto=format&n=psRZbQh2QwMUVL3U&q=85&s=d77b2a590b41a1dca0fb520546bb8982" alt="boxd.sh and Flue, the agent harness framework" width="2400" height="1640" data-path="images/boxd-x-flue.png" />

[Flue](https://flueframework.com) is the agent harness framework from [Fred K. Schott](https://github.com/FredKSchott), known from [Astro](https://astro.build). It feels like Claude Code, but fully headless and programmable in TypeScript. Flue agents can opt into a full sandbox, and the boxd connector gives each agent its own Linux VM:

```typescript theme={"theme":"github-dark"}
import { Compute } from '@boxd-sh/sdk';
import { boxd } from './connectors/boxd';

const c = new Compute({ apiKey: process.env.BOXD_API_KEY });
const box = await c.box.create({ name: 'my-agent' });
const agent = await init({ sandbox: boxd(box), model: 'anthropic/claude-sonnet-4-6' });
const session = await agent.session();
```

You own the machine's lifecycle through the [TypeScript SDK](/reference/typescript-sdk), and the connector adapts it to Flue's sandbox interface. The [connector](https://github.com/withastro/flue/blob/main/connectors/sandbox--boxd.md) is written so a coding agent can install it into your Flue project, and Flue's own docs cover it under [sandboxes](https://github.com/withastro/flue/blob/main/apps/docs/src/content/docs/ecosystem/sandboxes/boxd.md).

## Bindu

<img src="https://mintcdn.com/azin/psRZbQh2QwMUVL3U/images/boxd-x-bindu.jpg?fit=max&auto=format&n=psRZbQh2QwMUVL3U&q=85&s=b7f3733d42b65a30082a33b3c1b4ed16" alt="boxd.sh and Bindu, a starry night sky over a campfire" width="1600" height="1093" data-path="images/boxd-x-bindu.jpg" />

[Bindu](https://getbindu.com) is the identity, communication, and payments layer for AI agents. Wrap an agent written in any framework with `bindufy()` and it becomes a signed [A2A](https://github.com/a2aproject/A2A) microservice. With the boxd runtime, that microservice runs on a boxd machine instead of your laptop:

```bash theme={"theme":"github-dark"}
bindu deploy my_agent.py --runtime=boxd --auto-suspend=60
```

```
✓ my-agent serving at https://my-agent.boxd.sh
```

The agent gets its own HTTPS URL, and auto-suspend pairs naturally with it: the machine sleeps between requests and wakes when a call arrives. See the [Bindu repo](https://github.com/GetBindu/Bindu) for the full runtime options, including deploying from a custom Docker image.

## Harbor

A Harbor integration is in the making.

## Request an integration

Building an open source framework that should run on boxd, or using one you'd like to see supported? Email [contact@boxd.sh](mailto:contact@boxd.sh).
