-
-
Notifications
You must be signed in to change notification settings - Fork 6
Agent Packs
Drop-in work agent bundles for Minnow. Copy a folder to:
~/.minnow/agent-packs/<pack-id>/
manifest.json
prompts/
my-agent.full.md
my-agent.lite.md
See src/agents/schema/agent-pack.schema.json for the JSON Schema.
-
Pack id must match the folder name (
^[a-z][a-z0-9-]{0,63}$). -
Agent ids are namespaced as
packId.agentKey(e.g.security.auditor). - Prompt paths are relative to the pack root; path traversal is rejected at scan time.
- Tool names must exist in the built-in tool catalog.
- Default: enabled (unless
enabled: falsein manifest). - User override:
~/.minnow/agent-packs.json→{ "<pack-id>": { "enabled": false } }. - Settings → Agent packs toggles call
PATCH /api/agent-packs/:id.
| Method | Path | Description |
|---|---|---|
| GET | /api/agent-packs |
List packs with validation status |
| GET | /api/agent-packs/:id |
One pack |
| PATCH | /api/agent-packs/:id |
{ "enabled": true | false } |
| POST | /api/agent-packs/upload |
Multipart .zip install (see Settings → Agent packs → Upload pack) |
Pack agents are merged into GET /api/work-agents with source: "pack".
- Built-in work agent
- Pack agent (if enabled and valid)
- User scalars in
~/.minnow/work-agents.json - User prompt files in
~/.minnow/prompts/work-agents/<id>/
On first npm start, ~/.minnow/agent-packs/_template/ is created (ignored by the scanner). Copy it to a new id without the leading underscore.
In the app: Settings → Agents → Agent packs → Download template (GET /api/agent-packs/template) saves minnow-agent-pack-template.zip with a starter manifest.json and example prompts. Download default pack (GET /api/agent-packs/builtin) exports the shipped work agents as minnow-default-agent-pack.zip (minnow/ folder, agents appear as minnow.<key> when installed). Upload pack (POST /api/agent-packs/upload, multipart field file) installs a .zip archive: the server finds manifest.json (at the zip root or inside one folder), writes files to ~/.minnow/agent-packs/<manifest.id>/, and returns validation status.
Generated from documentation/. Do not edit generated pages directly.
Extensions
Developer reference
Contributing
- Accessibility and keyboard-first audit
- Minnow apps
- Architecture overview
- Command reference
- LAN companion
- Orchestrator V2 board testing
- Contributing to Minnow
- Setup from source
Design system
- CSS file map
- Layout shell
- UI primitives
- Minnow design system (current state)
- Minnow Shell
- Themes
- Design tokens
Guides
- Accessibility and keyboard-first audit
- Minnow apps
- Architecture overview
- Command reference
- Configuration & storage
- Keyboard shortcuts
- LAN companion
- Model bench: Flip Match v1
- Orchestrate board testing
- Minnow guides
- Release E2E testing guide
- Setup guide
- Troubleshooting
- Minnow wiki
Maintainers
- macOS release signing & notarization
- Prompt ownership matrix (MIN-379)
- Releasing Minnow
- Settings reference
- GitHub Wiki publishing
Apps
Chat
Core concepts
Extend Minnow
Get started
Orchestrate
Overview
Reference