Borrowing it
Nothing to install: this file belongs to cohen-liel/hivemind. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/cohen-liel/hivemind/main/CLAUDE.mdgit clone --depth 1 https://github.com/cohen-liel/hivemindWrote 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/instructions/cohen-liel/hivemind/claude-md)<a href="https://agentmods.dev/instructions/cohen-liel/hivemind/claude-md"><img src="https://agentmods.dev/badge/instructions/cohen-liel/hivemind/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.01103 | $0.01103 |
| Opus 5 | $0.00551 | $0.00551 |
| Sonnet 5 | $0.00221 | $0.00221 |
| Haiku 4.5 | $0.00110 | $0.00110 |
Grade A, and why
hivemind CLAUDE.md 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 4d 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 — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md — Hivemind Project Guide
What is this project?
Hivemind is a multi-agent software engineering orchestrator. It takes a user prompt, decomposes it into a DAG of tasks, assigns specialist agents, executes them with dependency awareness, and delivers tested/reviewed code.
Architecture Overview
User message
→ Triage (_triage_is_simple) # Simple? Skip PM+Architect
→ Architect Agent (architect_agent) # Codebase review → ArchitectureBrief
→ PM Agent (pm_agent) # Decompose → TaskGraph (DAG)
→ LangGraph DAG Executor # select_batch → execute_batch → post_batch → loop
→ Review (read-only critique) # ACC-Collab pattern + lint/format + test safety net
→ Memory Agent # Update project memory with lessons learned
Key Design Decisions
- One DAG per project, always. New messages inject tasks into the live DAG (add or cancel). Never spawn parallel DAGs on the same project. Deferred messages are buffered during PM/Architect phase and drained when the graph is ready.
- Read-only reviewer. The reviewer critiques code but never modifies it. Automated lint/format runs separately. If lint/format breaks tests, changes are reverted to pre-review HEAD.
- Adaptive triage. Simple tasks (short prompt, no complex keywords) skip PM + Architect and go straight to a single fullstack agent. Complex tasks get the full pipeline.
- Writer/Reader separation. Writer agents (modify files) run sequentially under
asyncio.Lock. Reader agents (analysis, research) run in parallel. - Typed contracts.
TaskInput → TaskOutputwith structured artifacts, not free-form text.
Key Files
| File | Purpose |
|---|---|
orchestrator.py |
Central coordinator — session lifecycle, triage, DAG dispatch, message injection, event emission |
dag_executor_langgraph.py |
LangGraph StateGraph: select_batch → execute_batch → post_batch → review_code. SQLite checkpointing. Self-healing. |
pm_agent.py |
PM Agent — decomposes user requests into TaskGraph DAGs. Task count scales with complexity (no forced minimums). |
architect_agent.py |
Architect Agent — pre-planning codebase review, produces ArchitectureBrief |
contracts.py |
TaskInput, TaskOutput, TaskGraph, TaskStatus — typed contracts for all agent communication |
config.py |
All configuration constants (DAG_MAX_CONCURRENT_NODES, agent registry, timeouts, budgets) |
src/workers/task_queue.py |
ProjectTaskQueue with per-project asyncio.Lock for writer serialization |
memory_agent.py |
Post-execution memory updates + lessons-learned injection |
blackboard.py |
Shared state for complexity classification, inter-agent notes |
debate_engine.py |
Structured debate for critical tasks (currently proactive, planned: reactive on failure) |
reflexion.py |
Self-reflection on failed tasks before retry |
orch_watchdog.py |
Agent silence detection (5 stuck signals) + active escalation |
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.
- 4d ago First seen · 77 lines · 1,103 tokens per session scan A 800ff55ebc85
hivemind CLAUDE.md is an instructions file published in the GitHub repository cohen-liel/hivemind (108 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 1,103 tokens to every session, about $0.0055 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-09-03.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.