2026-04-11 13:32:14 -04:00
|
|
|
# Meadow Core
|
|
|
|
|
|
2026-06-11 09:28:18 -07:00
|
|
|
A minimal three-agent persona pack for Buzz.
|
2026-04-11 13:32:14 -04:00
|
|
|
|
|
|
|
|
| Agent | Role |
|
|
|
|
|
|-------|------|
|
|
|
|
|
| **Skip** | Orchestrator — coordinates the team, delegates work |
|
|
|
|
|
| **Lev** | Security reviewer — threat models, auth, injection |
|
|
|
|
|
| **Bana** | Architecture reviewer — big picture, simplicity |
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Validate the pack
|
2026-06-11 09:28:18 -07:00
|
|
|
buzz pack validate ./examples/meadow-core
|
2026-04-11 13:32:14 -04:00
|
|
|
|
|
|
|
|
# Inspect resolved config
|
2026-06-11 09:28:18 -07:00
|
|
|
buzz pack inspect ./examples/meadow-core
|
2026-04-11 13:32:14 -04:00
|
|
|
```
|
|
|
|
|
|
2026-08-06 02:23:33 +05:30
|
|
|
The desktop app's Import button does not accept this pack directory or a zip of it — it imports
|
|
|
|
|
agent/team *snapshots* (`.agent.json`/`.team.json`, exported from agents already running in the
|
|
|
|
|
app), not persona-pack source. `buzz pack inspect` above shows the fully-resolved per-agent
|
|
|
|
|
config; use it as reference to recreate these agents in the desktop app by hand. Direct
|
|
|
|
|
persona-pack runtime integration is not currently implemented. See "Desktop App Import" in
|
|
|
|
|
`crates/buzz-persona/PERSONA_PACK_SPEC.md` for the current import paths.
|
|
|
|
|
|
2026-04-11 13:32:14 -04:00
|
|
|
## Structure
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
meadow-core/
|
|
|
|
|
├── .plugin/
|
|
|
|
|
│ └── plugin.json # Pack manifest (OPS-compatible)
|
|
|
|
|
├── agents/
|
|
|
|
|
│ ├── skip.persona.md # Orchestrator
|
|
|
|
|
│ ├── lev.persona.md # Security reviewer
|
|
|
|
|
│ └── bana.persona.md # Architecture reviewer
|
|
|
|
|
├── skills/
|
|
|
|
|
│ └── github-research/
|
|
|
|
|
│ └── SKILL.md # GitHub search skill (shared)
|
|
|
|
|
├── instructions.md # Team-wide instructions
|
|
|
|
|
└── README.md
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Customizing
|
|
|
|
|
|
|
|
|
|
Edit any `.persona.md` file to change the agent's behavior. The YAML
|
|
|
|
|
frontmatter controls config (model, triggers, channels). The markdown
|
|
|
|
|
body is the system prompt.
|
|
|
|
|
|
2026-06-11 09:28:18 -07:00
|
|
|
See `crates/buzz-persona/PERSONA_PACK_SPEC.md` for the full format reference.
|