hivemind_knowledge
hivemind_knowledge
Manage persistent project knowledge documents. Unlike events (which are ephemeral), knowledge docs persist and can be updated.
Actions
| Action | Description |
|---|---|
| search | Semantic search across knowledge docs |
| get | Get a specific document by ID |
| add | Add a new knowledge document |
| update | Update an existing document |
| delete | Delete a document |
| list | List all documents |
| list-stale | List knowledge docs flagged as stale (age-based or contradiction-based) |
Add Example
hivemind_knowledge(
action: "add",
title: "Auth Architecture",
content: "We use JWT tokens with Clerk for authentication...",
tags: ["auth", "architecture"]
)
Search Example
hivemind_knowledge(action: "search", query: "how does auth work?")