@skyf0xx/hedgehog-core-full-stack-app 1.0.11 → 1.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CLAUDE.core.md +7 -6
  2. package/package.json +1 -1
package/CLAUDE.core.md CHANGED
@@ -17,10 +17,11 @@ The discipline is packaged as skills. Use them; don't reconstruct their
17
17
  steps from memory:
18
18
 
19
19
  - **`hedgehog-loop`** — every unit of work once bootstrapped: `hedgehog
20
- next` emits the packet for one ready layer, build exactly one, gate it
21
- via `hedgehog verify`, which commits it on a pass. Also holds the
22
- Correction Protocol for fixing a wrong upstream step. Invoke it at the
23
- start of any build session and for "what's next".
20
+ claim` reserves the packet for one ready layer (`hedgehog next` previews
21
+ it read-only, without reserving), build exactly one, gate it via
22
+ `hedgehog verify`, which commits it on a pass. Also holds the Correction
23
+ Protocol for fixing a wrong upstream step. Invoke it at the start of any
24
+ build session and for "what's next".
24
25
  - **`hedgehog-bootstrap`** — run **once**, at project start, to scaffold
25
26
  the core stack, the enforcement config, and whichever add-ons (Auth,
26
27
  Queue, Mobile) planning intake turned on. Skip if `nx.json` already
@@ -48,7 +49,7 @@ steps from memory:
48
49
  already exists.
49
50
  - **`backend-eng`** — builds each module's Phase A layers (schema →
50
51
  contract → repository → service → controller → queue?), one
51
- `hedgehog next` packet at a time, gated by `hedgehog verify`.
52
+ `hedgehog claim`ed packet at a time, gated by `hedgehog verify`.
52
53
  - **`ux-planner`** — once per module in Phase B, after the hook exists and
53
54
  before the screen: writes `docs/design/<module>.md`, reading
54
55
  `.hedgehog/BMAD/05-ux-spec/` directly (or
@@ -56,7 +57,7 @@ steps from memory:
56
57
  the archive holds no UX spec, it asks for visual input rather than
57
58
  inferring a direction.
58
59
  - **`front-end-eng`** — builds each module's Phase B layers (hook, screen)
59
- from the ux-planner rationale, one `hedgehog next` packet at a time,
60
+ from the ux-planner rationale, one `hedgehog claim`ed packet at a time,
60
61
  gated by `hedgehog verify`.
61
62
  - **`reviewer`** — phase-transition and Correction Protocol checks the
62
63
  mechanical gate can't make (port discipline, FK-by-ID discipline,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyf0xx/hedgehog-core-full-stack-app",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Hedgehog's full-stack-app core: an Nx/pnpm/NestJS/Next.js workspace, backend-first domain module build discipline, and the agents and skills that drive it.",
5
5
  "type": "module",
6
6
  "scripts": {