Agent Plugins Marketplace
All plugins

hivemind

v1.1.0

Shared, versioned knowledge graph + artifact store + tool registry that REPLACES local agent memory: read it before any work, persist all work into it.

Claude Code2 Skills

By Nik TsytsarkinLicense: Apache-2.01 GitHub starsUpdated 11 hours ago

Directory evidence

Runtimes
Claude Code
Parsed components
2 skill or MCP entries
Source updated
Sep 23, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install hivemind for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install hivemind@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/tsytsarkin/hivemind

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugin/.

Plugin files

plugin/
├── .claude-plugin/plugin.json
├── skills/hivemind/SKILL.md
└── skills/hivemind-schema/SKILL.md

Included Skills2

hivemindskills/hivemind/SKILL.md

Use the shared Hivemind knowledge graph, artifact store, and tool registry. Use whenever the task produces or needs durable knowledge: record research, findings, conclusions, decisions and evidence HERE rather than in local memory or scratch notes; look up what other agents already established; store or fetch artifacts (binaries, logs, PoCs, evidence); publish a reusable standalone tool or reuse one another agent built; coordinate state across agents/machines; publish a procedure you worked out or record a dead-end that wasted time (and check for both before starting). Hivemind REPLACES local memory: read it before any work and persist all work into it. Domain-agnostic — call schema_get and guide_get first to learn this project's vocabulary.

hivemind-schemaskills/hivemind-schema/SKILL.md

Design the node and edge types for a Hivemind project — interview the user about their work, then propose and apply a schema. Use when a project has no schema yet, when the types the current work needs do not exist in the project you are writing to, or when the user asks to define or extend a project's vocabulary. Covers the two versioning axes and the generic edge traits that give a relationship its behaviour.

Plugin manifests1

plugin/.claude-plugin/plugin.json
{
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
  "name": "hivemind",
  "displayName": "Hivemind",
  "version": "1.1.0",
  "description": "Shared, versioned knowledge graph + artifact store + tool registry that REPLACES local agent memory: read it before any work, persist all work into it.",
  "author": {
    "name": "Nik Tsytsarkin"
  },
  "license": "Apache-2.0",
  "keywords": [
    "knowledge-graph",
    "memory",
    "artifacts",
    "tool-registry",
    "mcp"
  ],
  "mcpServers": "./.mcp.json",
  "hooks": "./hooks/hooks.json",
  "userConfig": {
    "server_url": {
      "type": "string",
      "title": "Hivemind project URL",
      "description": "Full project base URL, including the project path, e.g. http://<server-host>:8787/p/default (LAN/Tailscale address of your Hivemind server).",
      "default": "http://127.0.0.1:8787/p/default"
    },
    "api_token": {
      "type": "string",
      "title": "API token",
      "description": "Bearer token for this project (from the server's tokens.json / `hivemind-admin mint-token`).",
      "sensitive": true
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[hivemind on Agent Plugins Marketplace](https://pluginsmp.com/plugins/hivemind)