@skyf0xx/hedgehog-core-full-stack-app 1.0.8 → 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": {
|
|
@@ -202,7 +202,15 @@ outcome of the whole intent, not just this layer's objective. A layer's
|
|
|
202
202
|
verify command runs the tests that layer wrote, so it measures internal
|
|
203
203
|
consistency, never coverage of what was asked; build the layer's share of
|
|
204
204
|
the goal and say so when the packet doesn't account for something the
|
|
205
|
-
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
|
|
206
214
|
intent it prints the goal and outcome back as an **INTENT CHECK** — read
|
|
207
215
|
the built work against it there, because nothing else in the build does.
|
|
208
216
|
|