hive-bringup

hive-bringup is a skill for Claude Code, Codex from Hivemind-OSS/Hivemind. It costs 90 tokens per session (1,324 once invoked), scanned A, original, Apache-2.0.

A guide for managing the Hivemind MCP server, including starting, stopping, restarting, and checking its health. Hivemind is a server whose specific purpose is only partly described in the input.

In plain words
What is it for?
For bringing the server online, stopping or restarting it, checking whether it is serving, and following boot logs.
Why use it?
It provides documented lifecycle steps and health checks for a Hivemind server, including its first startup and crash-loop diagnosis.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit For bringing the server online, stopping or restarting it, checking whether it is serving, and following boot logs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hivemind-oss/hivemind/hive-bringup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Hivemind-OSS/Hivemind --skill hive-bringup
Clone the repo
git clone --depth 1 https://github.com/Hivemind-OSS/Hivemind

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for hive-bringup

README.md
[![agentmods](https://agentmods.dev/badge/skills/hivemind-oss/hivemind/hive-bringup/github.svg)](https://agentmods.dev/skills/hivemind-oss/hivemind/hive-bringup)
Your own site
<a href="https://agentmods.dev/skills/hivemind-oss/hivemind/hive-bringup"><img src="https://agentmods.dev/badge/skills/hivemind-oss/hivemind/hive-bringup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for hive-bringup

Your own site · 80×15
<a href="https://agentmods.dev/skills/hivemind-oss/hivemind/hive-bringup"><img src="https://agentmods.dev/badge/skills/hivemind-oss/hivemind/hive-bringup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,324 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00090 $0.01324
Opus 5 $0.00045 $0.00662
Sonnet 5 $0.00018 $0.00265
Haiku 4.5 $0.00009 $0.00132

Measured 9d ago against content hash c4682a654c2d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

hive-bringup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/hive-bringup/SKILL.md · 87 lines

How it starts

The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.

hive-bringup — start, stop & health-check the server

Bring the Hivemind daemon up on its host and confirm it is serving. Lifecycle only: to connect agents use hive-connect-team, to snapshot / reset the store use hive-backup-restore, to tune a running server use hive-operate. Full reference: HIVE-ADMIN.md §1 & §5.

Prerequisites (server host)

  • Docker + Docker Compose v2, and Python 3.11+ (the hive CLI drives Compose).
  • The hive command: pip install -e . from the repo root (on a PEP-668 "externally-managed" Python, inside a venv — or skip the install entirely: the CLI is stdlib-only). Uninstalled, every hive … below is exactly python3 -m hive.tools.cli … (Windows: py -m hive.tools.cli). Resolve the form mechanically, once per shell, and every literal command below works either way:
command -v hive >/dev/null 2>&1 || hive() { python3 -m hive.tools.cli "$@"; }

Bring it up

cp .env.example .env   # optional: makes the persistent-store choice explicit (sets HIVE_STORE__DB_PATH)
hive up                # zero-config: builds the image, warms the embedder, blocks until healthy
  • The store persists by default. The containerized daemon DEFAULTS to /data/shared.db in the hive-data volume (the entrypoint injects it when the env is unset); only an explicit HIVE_STORE__DB_PATH=:memory: boots ephemeral — such a boot WARNs loudly (container.store_ephemeral) and hive_health reports store_ephemeral. cp .env.example .env makes the persistent choice explicit. Edit .env for any other override (hive-operate) or the tunnel secrets (hive-connect-team).
  • The first hive up is slow, and that is normal — it builds the image and bakes the offline embedder (no network at runtime). It is not hung.
  • up then blocks on a bounded health-wait (default 180 s; "healthy" ≡ the embedder is resident). On a slow host raise it: HIVE_HEALTH_TIMEOUT=600 hive up. On timeout or unhealthy it dumps recent logs and exits non-zero.

Read the full file on GitHub · 87 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 87 lines · 90 tokens per session scan A c4682a654c2d

Subscribe to this mod's changes

hive-bringup is a skill published in the GitHub repository Hivemind-OSS/Hivemind (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 90 tokens to every session and 1,324 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.