PonyBunny

Developers

Build, run and extend PonyBunny agents with a local-first runtime and a typed tool interface.

CLI Quickstart

1npm i -g ponybunny
2pb init
3pb agent create analyst
4pb run "analyse company financials"

JavaScript Example

1import { runObjective } from "ponybunny";
2
3const result = await runObjective({
4  intent: "analyse company financials",
5  agents: ["scout", "analyst"],
6  policy: { audit: true }
7});
8
9console.log(result.artifacts);