CLI (wgl)
wgl (waggle) is the CLI for every Honeybee product. One tool for coordination, security scanning, cloud management, and local development.
Install
Section titled “Install”# Global installnpm install -g @honeybee-ai/waggle-cli
# Or run via npxnpx @honeybee-ai/waggle-cli <command>Command groups
Section titled “Command groups”Coordination (ACP)
Section titled “Coordination (ACP)”wgl init # Interactive setupwgl join <url> # Quick join a coordination serverwgl status # Show protocol, phase, claimswgl leave # Release claims, disconnectwgl team # Show connected agentswgl protocol show # Show protocol detailswgl protocol validate # Validate a protocol YAML fileEvents & State
Section titled “Events & State”wgl events list # List eventswgl events tail # Live-stream eventswgl events publish # Publish an eventwgl state get [key] # Get shared statewgl state set <k> <v> # Set shared statewgl state delete <key> # Delete state keyCommunication
Section titled “Communication”wgl msg send <to> <msg> # Send a direct messagewgl msg list # List messageswgl msg broadcast <msg> # Send to all agentswgl help ask <problem> # Request helpwgl help list # Show open help requestswgl help claim <id> # Claim a help requestwgl help resolve <id> # Resolve a help requestControl
Section titled “Control”wgl halt [reason] # Emergency stopwgl pause [reason] # Pause coordinationwgl resume # Resume coordinationResources
Section titled “Resources”wgl claim <resource> # Claim a resource (mutex)wgl release <resource> # Release a claimBrood (Local Development)
Section titled “Brood (Local Development)”wgl up # Start local brood from brood.yamlwgl down # Stop running broodServer
Section titled “Server”wgl serve # Start local incubatorwgl hooks install # Install Claude Code hookswgl hooks uninstall # Remove hookswgl hooks list # Show installed hookswgl namespace list # List namespaceswgl namespace create # Create namespacewgl namespace delete # Delete namespacePlatform (Authentication)
Section titled “Platform (Authentication)”wgl auth login # Device flow loginwgl auth logout # Clear credentialswgl auth status # Show auth statewgl auth switch # Switch profileswgl config set <k> <v> # Set preferencewgl config get <key> # Get preferencewgl config list # Show all preferencesCloud (Colony + Marketplace)
Section titled “Cloud (Colony + Marketplace)”wgl swarm create # Create a managed hivewgl swarm list # List your hiveswgl swarm info # Show hive detailswgl swarm delete # Delete a hivewgl swarm start # Start a hivewgl swarm stop # Stop a hivewgl swarm keys # Manage API keyswgl swarm logs # Tail hive eventswgl secret set <provider> # Set provider API keywgl secret list # List stored keyswgl secret delete # Delete a keywgl marketplace search # Search protocolswgl marketplace install # Install a protocolwgl marketplace publish # Publish a protocolwgl integrations search # Search integrationswgl integrations install # Install an integrationTelemetry
Section titled “Telemetry”wgl telemetry overview # Aggregate counterswgl telemetry events # Recent eventswgl telemetry timeline # Daily breakdownwgl scan <text> # Scan for prompt injectionwgl completion <shell> # Generate shell completionswgl upgrade # Update to latest versionProduct mapping
Section titled “Product mapping”| Commands | Product |
|---|---|
| init, join, status, team, leave | ACP (coordination) |
| protocol, events, state, claim, release | ACP (primitives) |
| msg, help | ACP (messaging) |
| halt, pause, resume | ACP (control) |
| up, down | Incubator (brood) |
| serve, hooks, namespace | Incubator (server) |
| auth, config | Hivemind (platform) |
| swarm, secret | Colony (managed) |
| marketplace, integrations | Marketplace |
| telemetry | Telemetry |
| scan | Carapace |
Configuration
Section titled “Configuration”wgl reads configuration from multiple sources (highest precedence first):
- CLI flags
- Environment variables
- Project
.wglrc*(closest ancestor directory) - Global
~/.wglrc* - Defaults
Supported formats: .wglrc.yaml, .wglrc.json, .wglrc (key=value).
State lives in .honeyb/ (project) and ~/.honeyb/ (global).