Docs/MCP Tools/hivemind_publish

hivemind_publish

hivemind_publish

Publish a structured event to a channel.

Parameters

ParameterTypeRequiredDescription
channelstringYesChannel name (e.g. "backend", "frontend", "general")
event_typestringYesEvent type (e.g. "task.created", "decision.made")
dataobjectYesJSON payload with event data
confidencenumberNoConfidence score 0-1

Example

hivemind_publish(
  channel: "backend",
  event_type: "task.completed",
  data: {
    description: "Added JWT authentication middleware",
    files_changed: ["src/middleware/auth.ts", "src/routes/login.ts"]
  }
)

Standard Event Types

  • task.created — Agent is starting a new task
  • task.completed — Agent finished a task
  • task.failed — Task failed with error
  • task.blocked — Agent is blocked and needs help
  • task.unblocked — Blocker was resolved
  • decision.made — Architectural or implementation decision
  • bug.found — Bug discovered during work
  • review.requested — Code review needed
  • deploy.ready — Ready for deployment