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.
npx skills add intertwine/hive-orchestrator --skill hive-mcpgit clone --depth 1 https://github.com/intertwine/hive-orchestratorWrote 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.
[](https://agentmods.dev/skills/intertwine/hive-orchestrator/hive-mcp)<a href="https://agentmods.dev/skills/intertwine/hive-orchestrator/hive-mcp"><img src="https://agentmods.dev/badge/skills/intertwine/hive-orchestrator/hive-mcp/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.
<a href="https://agentmods.dev/skills/intertwine/hive-orchestrator/hive-mcp"><img src="https://agentmods.dev/badge/skills/intertwine/hive-orchestrator/hive-mcp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00042 | $0.00558 |
| Opus 5 | $0.00021 | $0.00279 |
| Sonnet 5 | $0.00008 | $0.00112 |
| Haiku 4.5 | $0.00004 | $0.00056 |
Grade A, and why
hive-mcp 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Hive MCP Server
The MCP surface is intentionally small — two tools for agent integration:
search— query workspace stateexecute— run bounded Python code
Everything durable still goes through the hive CLI and the .hive/ substrate.
Setup
Example MCP config:
{
"mcpServers": {
"hive": {
"command": "hive-mcp",
"env": {
"HIVE_BASE_PATH": "/path/to/workspace"
}
}
}
}
HIVE_BASE_PATH should point at the workspace you want the server to search and execute against.
If running from a local checkout instead of an installed package, uv run hive-mcp is the equivalent launch command.
Available Tools
search
Search workspace state, API docs, examples, schemas, and project summaries.
Arguments:
queryrequiredscopesoptional — filter to specific indexes (api, examples, project, workspace)limitoptional, defaults to8
Example:
{
"name": "search",
"arguments": {
"query": "run acceptance",
"scopes": ["api", "workspace"],
"limit": 5
}
}
execute
Run bounded local code with a typed Hive client.
Arguments:
coderequiredlanguageoptional, Python only for nowprofileoptionaltimeout_secondsoptional
Example:
{
"name": "execute",
"arguments": {
"language": "python",
"profile": "default",
"code": "result = hive.task.ready(limit=3)"
}
}
Important Limits
executeis intentionally bounded and time-limited- Oversized execute payloads are rejected
- The Python runner is the only supported language today
- This MCP surface is not a substitute for the CLI
When To Prefer The CLI
Use the CLI for:
- Task creation, updates, claims, and releases
- Run lifecycle actions (start, finish, promote, steer)
- Evaluator configuration and PROGRAM.md management
- Projection sync and cache management
- Campaign and portfolio operations
- Memory observe, reflect, and search
- Migration and workspace bootstrap
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.
- 10d ago First seen · 105 lines · 42 tokens per session scan A 700b31f2bfab
hive-mcp is a skill published in the GitHub repository intertwine/hive-orchestrator (23 stars, last pushed 3d ago), licensed MIT. It adds 42 tokens to every session and 558 once invoked, about $0.0002 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-30.
Other skills, from other repositories
install-loop
Install Loop Engineering into a project via the unified CLI front door (@cobusgreyling/loop). Prefer this over invoking loop-init / loop-audit separately. Week-one is report-only; never enable auto-merge or unattended fixes unless the human explicitly asks and doctor is healthy.
loop-verifier
Independent verification agent for loop-produced changes. Finds reasons to reject. Runs tests. Confirms diff scope. Use after minimal-fix or any implementer sub-agent — never in the same role as the implementer.
pr-review-triage
Watch open PRs, check CI status, review staleness, merge conflicts, and unanswered review comments. Produces a prioritized watchlist.
changelog-scan
Scan merged PRs and commits since a given reference, extract titles, labels, types, and signals. Produces structured input for release notes drafting.
issue-triage
Scan open issues and discussions, deduplicate, prioritize, and propose labels. Provides a clean actionable queue.
dependency-triage
Scan package manifests and lockfiles for outdated and vulnerable dependencies. Classify by severity and update type.