@skyf0xx/hedgehog-core-full-stack-app 1.0.6 → 1.0.8
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyf0xx/hedgehog-core-full-stack-app",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
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": {
|
|
@@ -156,7 +156,10 @@ writes `docs/design/<module>.md`, not its own compiled layer — the
|
|
|
156
156
|
SCOPE — in ONE message with parallel tool calls, not one agent call
|
|
157
157
|
after another. This is a Claude session orchestrating via the Agent
|
|
158
158
|
tool's parallel-call mechanism: N claimed tasks means N Agent calls in
|
|
159
|
-
the same message.
|
|
159
|
+
the same message. If a dispatch by name reports the agent as not
|
|
160
|
+
found — expected right after `init`/`update` installed it this same
|
|
161
|
+
session — see root CLAUDE.md's "Delegating on this host" note rather
|
|
162
|
+
than treating it as fatal.
|
|
160
163
|
3. Each agent **runs typecheck/lint/test on its own work** (mirrors
|
|
161
164
|
lefthook, wired at bootstrap) as a sanity check before reporting
|
|
162
165
|
back — necessary, not sufficient. Per task, per agent: the agent
|
|
@@ -453,7 +456,10 @@ When a downstream step reveals an upstream step was wrong:
|
|
|
453
456
|
claimed but not yet started (`hedgehog release <task-id> --owner
|
|
454
457
|
<owner>`).
|
|
455
458
|
2. Once nothing is in flight (`hedgehog quiesce` exits 0), patch the
|
|
456
|
-
upstream step directly, in place.
|
|
459
|
+
upstream step directly, in place. Before editing, run the LSP tool's
|
|
460
|
+
findReferences/incomingCalls against the symbol being changed to see
|
|
461
|
+
what already depends on it — the blast radius a stale mental model
|
|
462
|
+
would otherwise miss.
|
|
457
463
|
3. Fast-forward every dependent step that breaks, each its own small
|
|
458
464
|
commit. If the patched step lives in a workspace package (e.g.
|
|
459
465
|
`packages/hooks`, `packages/contracts`) that a running `web`/`mobile`
|