@dzhechkov/harness-core 0.4.2 → 0.4.3
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/.dz-manifest.json +104 -28
- package/README.md +3 -2
- package/dist/backlog.d.ts +35 -0
- package/dist/backlog.d.ts.map +1 -1
- package/dist/backlog.js +167 -3
- package/dist/backlog.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/loop-plan-graph.d.ts +49 -0
- package/dist/loop-plan-graph.d.ts.map +1 -0
- package/dist/loop-plan-graph.js +128 -0
- package/dist/loop-plan-graph.js.map +1 -0
- package/dist/loop-plan.d.ts.map +1 -1
- package/dist/loop-plan.js +13 -15
- package/dist/loop-plan.js.map +1 -1
- package/dist/model-recommender.d.ts +91 -0
- package/dist/model-recommender.d.ts.map +1 -0
- package/dist/model-recommender.js +186 -0
- package/dist/model-recommender.js.map +1 -0
- package/dist/registry.d.ts.map +1 -1
- package/dist/registry.js +4 -1
- package/dist/registry.js.map +1 -1
- package/dist/trace-bundle.d.ts +209 -0
- package/dist/trace-bundle.d.ts.map +1 -0
- package/dist/trace-bundle.js +601 -0
- package/dist/trace-bundle.js.map +1 -0
- package/dist/usage.d.ts +7 -0
- package/dist/usage.d.ts.map +1 -1
- package/dist/usage.js +30 -2
- package/dist/usage.js.map +1 -1
- package/package.json +3 -3
- package/sbom.json +217 -27
- package/src/backlog.ts +176 -3
- package/src/index.ts +3 -0
- package/src/loop-plan-graph.ts +132 -0
- package/src/loop-plan.ts +13 -15
- package/src/model-recommender.ts +228 -0
- package/src/registry.ts +4 -1
- package/src/trace-bundle.ts +743 -0
- package/src/usage.ts +42 -2
package/src/registry.ts
CHANGED
|
@@ -184,7 +184,10 @@ function categoryFromPack(pack: string): string {
|
|
|
184
184
|
pack.includes('pm') ||
|
|
185
185
|
pack.includes('idea2prd') ||
|
|
186
186
|
pack.includes('reverse-engineering') ||
|
|
187
|
-
pack.includes('presentation')
|
|
187
|
+
pack.includes('presentation') ||
|
|
188
|
+
// decision-mockups: an owner-facing decision page is stakeholder communication, the same
|
|
189
|
+
// cluster as PRDs and presentations — not design, and not a QE artifact.
|
|
190
|
+
pack.includes('decision-mockups')
|
|
188
191
|
)
|
|
189
192
|
return 'product';
|
|
190
193
|
// Digitized-book knowledge packs (ADR-001 book-knowledge-digitizer) — `skills-book-*` and named
|