← ClaudeAtlas

hedgehog-bootstraplisted

Use once, at the start of a new Hedgehog project, to land the core workspace and scaffold whichever add-ons (Auth, Queue, Mobile) planning intake turned on (`.hedgehog/addons.yaml`). Runs when the `bootstrap` agent runs, which `planner` invokes automatically after Confirm & Lock. Scoped to project scaffolding; per-module work runs through the `hedgehog-loop` skill, one step at a time.
skyf0xx/hedgehog · ★ 38 · AI & Automation · score 78
Install: claude install-skill skyf0xx/hedgehog
# Hedgehog Bootstrap Scaffolds a Hedgehog project's Bootstrap phase: the always-on core, plus whichever named add-ons (Auth, Queue, Mobile) planning intake's scope boundary (`planner`, running BMAD-METHOD's planning shelf then mining it — see that agent) actually calls for. This is Phase 2 (Scaffold) of the overall bootstrap sequence — Phase 0 (BMAD elicitation) and Phase 1 (mining into the build graph and `.hedgehog/addons.yaml`) already closed by the time this skill runs. After this closes, `hedgehog-loop` takes over per module, one step at a time. This skill touches no domain modules — no schema, no contract, nothing under `libs/<module>/`. That's Phase A, started fresh after Bootstrap closes. **Core lands via `hedgehog-bootstrap-full-stack-app-core`, run first, unconditionally.** That skill copies a pre-built, pre-verified workspace (Nx, enforcement config, `packages/db`, `apps/api`, `apps/web`) rather than generating it live — core is identical on every project, so it's built once upstream and copied, not re-derived per project. This skill covers only what's still genuinely project-specific: whether Auth, Queue, and Mobile are on, and �� if so — scaffolding them. Run the `nx g` commands below via nrwl's [nx-generate](https://github.com/nrwl/nx-ai-agents-config/tree/main/skills/nx-generate) skill — it dry-runs and verifies generator flags against the installed Nx version. Run the `nx run` / `nx affected` commands via [nx-run-tasks](https://github.com/nrwl/nx-ai-agents-