@skyf0xx/hedgehog 5.1.0 → 5.1.2
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 +1 -1
- package/src/db/plan.mjs +6 -6
- package/src/registry/index.mjs +5 -5
package/package.json
CHANGED
package/src/db/plan.mjs
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
// hedgehog-persistent-build-graph.md, "The build graph" and "Task
|
|
4
4
|
// lifecycle", plus the readiness SELECT under "Schema".
|
|
5
5
|
//
|
|
6
|
-
// full-stack-app: one task per layer per intent (an intent is
|
|
7
|
-
// module — see the core definition's `{module}` placeholder).
|
|
8
|
-
// one task per phase, no module axis.
|
|
9
|
-
// a core definition's layer chain once per intent
|
|
10
|
-
// chain is the degenerate case of the layer graph
|
|
11
|
-
// item 5).
|
|
6
|
+
// full-stack-app and pwa-app: one task per layer per intent (an intent is
|
|
7
|
+
// a domain module — see the core definition's `{module}` placeholder).
|
|
8
|
+
// landing-page: one task per phase, no module axis. All three are the
|
|
9
|
+
// same operation — walk a core definition's layer chain once per intent
|
|
10
|
+
// — because a linear chain is the degenerate case of the layer graph
|
|
11
|
+
// (spec: MVP scope item 5).
|
|
12
12
|
//
|
|
13
13
|
// Layer cardinality: a layer marked `once: true` in the core definition
|
|
14
14
|
// opts out of that per-intent multiplication and compiles a single task
|
package/src/registry/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Core package registry. One entry per Hedgehog core — full-stack-app,
|
|
2
|
-
// landing-page, authored — naming the npm package that ships its
|
|
3
|
-
// skills, and (for the
|
|
4
|
-
// `hedgehog init` accepts for it and the prose `planner` reads aloud
|
|
5
|
-
// Phase 0 to choose one. A fixed table, one entry per core, discovered
|
|
6
|
-
// name or flag rather than convention.
|
|
2
|
+
// pwa-app, landing-page, authored — naming the npm package that ships its
|
|
3
|
+
// agents, skills, and (for the three shipped cores) scaffold, plus the CLI
|
|
4
|
+
// flag `hedgehog init` accepts for it and the prose `planner` reads aloud
|
|
5
|
+
// in Phase 0 to choose one. A fixed table, one entry per core, discovered
|
|
6
|
+
// by name or flag rather than convention.
|
|
7
7
|
//
|
|
8
8
|
// `authored` carries no flag — it is never selected off a fixed list at
|
|
9
9
|
// install time. hedgehog-core-design chooses it during planning, from the
|