Marketplace
The Honeybee Marketplace is a registry of ACP protocols and integrations. Browse community-contributed coordination patterns, install them with one command, and share your own.
Protocols
Section titled “Protocols”ACP protocols define coordination patterns — code review workflows, game logic, deployment pipelines, research processes. The marketplace hosts reusable protocols that work with any LLM provider.
# Search for protocolswgl marketplace search "code review"
# View detailswgl marketplace info code-review
# Install (downloads + loads into local incubator)wgl marketplace install code-review
# List your published protocolswgl marketplace listPublishing
Section titled “Publishing”# Publish your protocol to the marketplacewgl marketplace publish my-protocol.acp.yamlProtocols are validated on upload (schema, roles, phases, governance). Community submissions go through quality review before appearing in search results.
Integrations
Section titled “Integrations”Integrations are plugins that extend the incubator with additional tools, providers, or backends.
# Search integrationswgl integrations search "slack"
# Installwgl integrations install slack-notifier
# Enable/disablewgl integrations enable slack-notifierwgl integrations disable slack-notifier
# Removewgl integrations remove slack-notifier
# List installedwgl integrations listPublishing integrations
Section titled “Publishing integrations”wgl integrations publish ./my-integration/Integrations implement the IncubatorPlugin interface from @honeybee-ai/hivemind-sdk/integrations:
import type { IncubatorPlugin } from '@honeybee-ai/hivemind-sdk/integrations';
export function createPlugin(): IncubatorPlugin { return { name: 'my-integration', getToolEntries(ctx) { return [ { name: 'my_tool', description: 'Does something useful', parameters: { /* JSON Schema */ }, handler: async (args) => ({ result: '...' }), }, ]; }, };}Protocol library
Section titled “Protocol library”The marketplace includes 38+ example protocols covering:
| Category | Examples |
|---|---|
| Development | Code review, pair programming, refactoring, testing |
| Research | Literature review, hypothesis testing, data analysis |
| Games | Chess, werewolf, debate, negotiation, trivia |
| Operations | Incident response, deployment, monitoring, triage |
| Creative | Story writing, brainstorming, design review |
| Education | Tutoring, exam generation, curriculum design |
Browse the full library on the ACP examples page.