Skip to content

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.

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.

Terminal window
# Search for protocols
wgl marketplace search "code review"
# View details
wgl marketplace info code-review
# Install (downloads + loads into local incubator)
wgl marketplace install code-review
# List your published protocols
wgl marketplace list
Terminal window
# Publish your protocol to the marketplace
wgl marketplace publish my-protocol.acp.yaml

Protocols are validated on upload (schema, roles, phases, governance). Community submissions go through quality review before appearing in search results.

Integrations are plugins that extend the incubator with additional tools, providers, or backends.

Terminal window
# Search integrations
wgl integrations search "slack"
# Install
wgl integrations install slack-notifier
# Enable/disable
wgl integrations enable slack-notifier
wgl integrations disable slack-notifier
# Remove
wgl integrations remove slack-notifier
# List installed
wgl integrations list
Terminal window
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: '...' }),
},
];
},
};
}

The marketplace includes 38+ example protocols covering:

CategoryExamples
DevelopmentCode review, pair programming, refactoring, testing
ResearchLiterature review, hypothesis testing, data analysis
GamesChess, werewolf, debate, negotiation, trivia
OperationsIncident response, deployment, monitoring, triage
CreativeStory writing, brainstorming, design review
EducationTutoring, exam generation, curriculum design

Browse the full library on the ACP examples page.