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:
Block math:
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