Docs/MCP Tools/hivemind_skill

hivemind_skill

hivemind_skill

Manage on-demand skills — reusable prompt templates that agents can discover and execute.

Actions

ActionDescription
searchSemantic search across skills
getGet a skill by ID
addAdd a new skill
updateUpdate an existing skill
deleteDelete a skill
listList all skills
matchFind the best skill for a given task description

Add Example

hivemind_skill(
  action: "add",
  name: "code-review",
  description: "Review code changes for bugs, security issues, and style",
  prompt: "Review the following code changes. Check for bugs, security vulnerabilities, and adherence to project conventions...",
  tags: ["review", "quality"]
)

Match Example

hivemind_skill(action: "match", query: "I need to review a pull request")

Returns the best matching skill based on semantic similarity to the query.

Search Example

hivemind_skill(action: "search", query: "testing")