hivemind_skill
hivemind_skill
Manage on-demand skills — reusable prompt templates that agents can discover and execute.
Actions
| Action | Description |
|---|---|
| search | Semantic search across skills |
| get | Get a skill by ID |
| add | Add a new skill |
| update | Update an existing skill |
| delete | Delete a skill |
| list | List all skills |
| match | Find 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")