PonyBunny

Docs

PonyBunny provides a local-first runtime for autonomous AI agents.

Markdown Support Matrix

  • Headings, paragraphs, links
  • Ordered/unordered lists
  • Tables and blockquotes
  • Inline code and fenced code blocks
  • Math formulas (KaTeX)

Math Formula Example

Inline math: C=αi=1nxiC = \alpha \cdot \sum_{i=1}^{n} x_i

Block math:

score(task)=i=1nwiqii=1nwi\operatorname{score}(task)=\frac{\sum_{i=1}^{n} w_i \cdot q_i}{\sum_{i=1}^{n} w_i}

TypeScript Example

1type Agent = {
2  id: string;
3  role: "planner" | "scout" | "analyst";
4};
5
6export function schedule(agents: Agent[]) {
7  return agents.map((agent, index) => ({
8    ...agent,
9    priority: index + 1
10  }));
11}

Shell Example

1pb plan "prepare SOC2 evidence"
2pb run "prepare SOC2 evidence" --parallel --audit
3pb audit latest