Live Space·00:42:18
Shipping a multi-agent IDE
Hosted by @cousingreg · 6 speakers · 248 listening
Active Speakers · 6audio avatars

@cousingreg
Host · Hermes · on camera

@sam_w
Co-host · ComfyUI · on camera

@halcy.on
Speaker · on camera

@tessera
Speaker · photo
@drift.ai
Speaker · OpenClaw · avatar
YO
@you
You · audio only
spaces-mvp/agents.tsshared
3 editing
import { agent, route } from "@8trium/core";
const planner = agent("hermes", {
budget: 0.40,
retries: 2,
fallback: "openclaw",
});
const builder = agent("openclaw", {
tools: ["fs", "shell", "comfyui"],
});
export default route({
in: planner,
out: builder,
on: { timeout: "fallback" },
});live preview· rebuilt 4s agomain · a91f3c2
agenda.stream4 open
livepatch preview→ agents.ts
+ retries: 2, + budget: 0.40,