Orchestrating the build

SkillProductivity

Use at the start of any session on a project with a build graph (`.hedgehog/hedgehog.db`), and again at every claim/dispatch/verify cycle within it. Owns consuming the build graph, claiming task packets, delegating each to the layer's agent, running `hedgehog verify` to gate the commit, recording debt and decisions, the intent check at an intent's last layer, and when to clear context. Not for a build agent handed an already-claimed packet, that agent never claims, dispatches, or verifies; this skill is the orchestrating session's own.

Available today. Use it from your connected AI after setup.

Add ahel to your AI once: Claude, ChatGPT, Cursor, Claude Code or Codex. Then ask it to use this.

Then ask your AI: use the Orchestrating the build skill

What this skill tells your AI

The instructions your AI receives, as published by skyf0xx/hedgehog in src/skills/hedgehog-orchestrating/SKILL.md and read by ahel’s review.

.hedgehog/hedgehog.db is the source of truth for what's next — never re-derive build state from prose. To work from it:

  1. Run hedgehog claim --count N --owner <owner>. It's atomic and lease-based, and returns up to N tasks (each with its own full STATUS/INTENT/RELEVANT RULES/INHERITED DEBT/INHERITED DECISIONS/WHY NOW/BLOCKED DOWNSTREAM/ALLOWED SCOPE/VERIFICATION packet) that the scheduler has already verified are safe to run together right now — scope and verify-radius disjoint. --count is a maximum, not a promise: a call may return fewer than N, or zero. hedgehog ready is a read-only preview of the claimable/held-back split (and why a task is held back — conflict with another claimable task, or exclusivity) before you claim.
  2. Delegate each claimed packet to this core's loop skill (named in the project's core section), one dispatch per packet, running concurrently.
  3. As each agent reports its packet done, run hedgehog verify <task-id> --owner <owner> serially — one at a time, even though the building happened concurrently, because verify writes git commits and those must land one at a time. It checks the touched files against the packet's ALLOWED SCOPE, runs the verification command, and on a pass writes the commit and unlocks whatever the task was blocking. An agent reporting success never moves the task — only a passing hedgehog verify exit code does.

hedgehog claim hands out only tasks safe to run together. Never run two tasks it didn't hand you together.

The packet's INTENT block names the goal and outcome of the whole intent, not just this layer. A layer's own verify command runs the tests that layer wrote, so it measures internal consistency and never coverage of what was asked — a layer that builds half the intent and tests that half exhaustively is green. Build the layer's share of the goal, and say so when the packet doesn't account for something the goal asks for. When hedgehog verify closes the last layer of an intent it prints that goal and outcome back as an INTENT CHECK: read the built work against it there, because nothing else in the build does.

A layer that discovers a limitation the next layer has to compensate for records it with hedgehog debt add <task-id> "<note>" — it lands in the INHERITED DEBT section of every packet that depends on that task. A comment in a source file is not a mechanism; nothing reads it.

A layer that makes a choice a dependent layer needs to know about — a pattern, a library, a trade-off, anything the next task should follow rather than reinvent or contradict — records it with hedgehog decision add <task-id> "<note>", landing in the INHERITED DECISIONS section the same way. Debt is what's still wrong with a task; a decision is why it was built the way it was.

planner owns writing intents (hedgehog intent add) at planning intake; hedgehog plan compiles them into the task graph the loop consumes. Nothing checks a box — there is no checklist, only queryable state.

When the build is done: once hedgehog status shows every task complete and hedgehog boundary exits 0 (see Managing context below — it checks nothing-in-flight, a clean tree, and a closed intent together), the build session is complete. The permanent record is the committed intents (.hedgehog/intents/*.json), the friction log (.hedgehog/friction/*.md), the core definition (root core.yaml for a shipped core, .hedgehog/core.yaml for an authored one), and the git commit history itself — not the database. .hedgehog/hedgehog.db is gitignored: a derived index, rebuildable at any time via hedgehog db rebuild, which replays those committed sources against git history. That rebuild also runs automatically on a fresh clone when the DB is missing but .hedgehog/intents/ exists. That's what makes every later session cheap.

A completed build is extendable, not sealed. Offer the user a fresh-context handoff, and name both ways forward:

  • Adjustments to what's built → the tweaker agent, from a new chat window, not a subagent call inside this one — this session's context has been building the whole project and is exactly what "clearing context now costs nothing" (below) means to discard. Tell the user plainly: close this chat window and open a new one, then paste this to start it:

    The build for {{PROJECT_NAME}} is complete. Use the tweaker agent: first review the friction log and ask me for feedback on the build, then take my tweak requests one at a time.

    In the new window, tweaker starts clean, once reviews the friction log (hedgehog friction list) for possible discipline-improvement issues and separately asks the user directly for feedback on the build, filing each real pattern or piece of feedback as its own GitHub issue against the Hedgehog repo itself, never this project's repo (friction as bug/help wanted, feedback as suggestion, each only after showing the exact content and getting explicit approval), then takes any tweak requests one at a time.

  • New scope — a new module or feature, anything beyond adjusting what exists → on a core with a module axis, the planner agent, which runs hedgehog-planning-intake's Re-entry pass. It reads the existing planning archive as context and elicits only what's new, then adds intents and runs hedgehog plan. This is append-only: plan skips intents already compiled, so every complete task keeps its status and its commits, and hedgehog claim resumes at the first tasks of the new work. Planning is not re-run from scratch, and the workspace is not re-scaffolded. (This core's own section states where new scope goes if this core has no module axis to add an intent to.)

If a request turns out to be structural rather than either of those — something already built is wrong at its source — that's the Correction Protocol's post-build entry, in this core's own loop skill.

Managing context

Hedgehog is designed so the conversation is disposable. Keep the working context small:

  • Clear context at natural boundaries — a module's Phase A, a landing page section, whatever this core's own unit boundary is — once that unit is done and committed. Ask hedgehog boundary rather than judging it: it exits 0 only when all three of nothing-in-flight, a clean working tree, and a last closed task that completed its intent hold, and names which one failed otherwise. Clear the conversation and start fresh, then run hedgehog status/hedgehog claim and continue. Nothing is lost, because the build graph, commits, and code hold all the state. Prefer this over letting one session accumulate the entire project.
  • hedgehog quiesce and hedgehog boundary answer different questions. quiesce reports whether anything is still in flight — necessary before clearing (clearing while a lease is outstanding orphans that lease until it expires), but not sufficient: a graph can be perfectly settled halfway through an intent, with a dirty working tree. boundary is the whole question — is this a moment to throw the conversation away — and it includes the quiesce check as its first condition. Use quiesce when you're waiting for dispatched work to land (the Correction Protocol), boundary when you're deciding whether to clear.
  • A cleared or new session recovers by running hedgehog status and reading the commit log, never by needing the prior conversation. hedgehog boundary --handoff prints that recovery block directly — where the build is, what's next and why, what's in flight, what's blocked — derived from the graph, so no session hands a summary to the next one.
  • Delegate heavy work to agents. Scaffolding and every build step run in their own isolated context, so work doesn't pile up in the main thread. Planning intake's BMAD Phase 0 is the exception — the project's own instructions file states it — and stays in that session through Confirm & Lock; the mining, bootstrap, and per-module steps after it delegate as usual.
  • Don't paste large context back in. If you find yourself re-explaining the architecture, stop — it's fixed and stated in the project's core section, not something to reconstruct. If you need a project specific, read it from the code. That's the self-documenting design working as intended.

Signals

GitHub stars
41
Forks
5
Last commit
Sep 2026
Advanced
Catalog kind
skill
Key
hedgehog-orchestrating
Source
github.com/skyf0xx/hedgehog