@skyf0xx/hedgehog-core-full-stack-app 1.0.7 → 1.0.9
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.9",
|
|
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
|
|
@@ -199,7 +202,15 @@ outcome of the whole intent, not just this layer's objective. A layer's
|
|
|
199
202
|
verify command runs the tests that layer wrote, so it measures internal
|
|
200
203
|
consistency, never coverage of what was asked; build the layer's share of
|
|
201
204
|
the goal and say so when the packet doesn't account for something the
|
|
202
|
-
goal asks for.
|
|
205
|
+
goal asks for. How deep those tests need to go is not uniform across
|
|
206
|
+
layers — see `hedgehog-authored-loop`'s "Test depth follows verify
|
|
207
|
+
radius" for the rule (`verify_radius`/`exclusive: true` mark where the
|
|
208
|
+
real bar and the `reviewer` pass belong). Every per-module layer here has
|
|
209
|
+
its verify radius equal to its own scope by construction (`core.yaml`'s
|
|
210
|
+
own header comment says so) — internally-consistent-only. The real
|
|
211
|
+
integration point is `join`, the workspace-wide `exclusive: true` layer
|
|
212
|
+
that runs the full typecheck and test suite after every module's layers
|
|
213
|
+
land; that is where the real test bar sits on this core. When `hedgehog verify` closes the **last** layer of an
|
|
203
214
|
intent it prints the goal and outcome back as an **INTENT CHECK** — read
|
|
204
215
|
the built work against it there, because nothing else in the build does.
|
|
205
216
|
|