@dzhechkov/p-replicator 1.5.18 → 1.9.0
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 +173 -57
- package/CHANGELOG.md +262 -0
- package/MULTIPLATFORM_ROADMAP.md +1 -1
- package/README/eng/01_quickstart.md +2 -2
- package/README/eng/02_user_guide.md +1 -1
- package/README/eng/03_admin_guide.md +2 -2
- package/README/eng/05_architecture.md +6 -2
- package/README/eng/README.md +1 -1
- package/README/ru/01_quickstart.md +2 -2
- package/README/ru/02_user_guide.md +1 -1
- package/README/ru/03_admin_guide.md +2 -2
- package/README/ru/05_architecture.md +1 -1
- package/README/ru/README.md +1 -1
- package/README/ru/html/index.html +7 -7
- package/README.md +139 -16
- package/bin/cli.js +0 -0
- package/package.json +11 -10
- package/sbom.json +346 -56
- package/src/utils.js +4 -0
- package/templates/.claude/agents/doc-validator.md +2 -1
- package/templates/.claude/agents/product-discoverer.md +1 -1
- package/templates/.claude/commands/next.md +16 -0
- package/templates/.claude/commands/replicate.md +183 -9
- package/templates/.claude/commands/start.md +19 -1
- package/templates/.claude/hooks/autocommit-insights.cjs +95 -10
- package/templates/.claude/hooks/autocommit-plans.cjs +95 -10
- package/templates/.claude/hooks/autocommit-roadmap.cjs +96 -13
- package/templates/.claude/hooks/check-docs-complete.cjs +174 -0
- package/templates/.claude/hooks/check-growth-trace.cjs +191 -0
- package/templates/.claude/hooks/check-ports.cjs +232 -0
- package/templates/.claude/hooks/session-insights.cjs +13 -1
- package/templates/.claude/hooks/state-update.cjs +13 -1
- package/templates/.claude/hooks/statusline.cjs +145 -18
- package/templates/.claude/rules/docker-ports.md +123 -0
- package/templates/.claude/rules/replicate-pipeline.md +19 -6
- package/templates/.claude/rules/skill-interface-protocol.md +9 -0
- package/templates/.claude/settings.json +5 -5
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/modules/01-detect-parse.md +57 -14
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/modules/02-analyze-map.md +9 -7
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/modules/03-generate-p0.md +6 -4
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/modules/08-skill-composition.md +2 -2
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/enhanced-recommendations.md +6 -4
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/extended-mapping.md +2 -2
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/ddd-agents.md +2 -2
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/ddd-skills.md +1 -1
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/enhanced-claude-md.md +2 -2
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/feature-lifecycle.md +2 -2
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/feature-suggestions.md +11 -2
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/start-command.md +1 -1
- package/templates/.claude/skills/requirements-validator/SKILL.md +59 -0
- package/templates/.claude/skills/requirements-validator/references/scoring-system.md +28 -0
- package/templates/.claude/skills/reverse-engineering-unicorn/modules/01-intelligence.md +4 -4
- package/templates/.claude/skills/reverse-engineering-unicorn/modules/02-product-customers.md +2 -2
- package/templates/.claude/skills/reverse-engineering-unicorn/modules/025-cjm-prototype.md +9 -1
- package/templates/.claude/skills/reverse-engineering-unicorn/modules/03-market-competition.md +3 -3
- package/templates/.claude/skills/reverse-engineering-unicorn/modules/04-business-finance.md +3 -3
- package/templates/.claude/skills/reverse-engineering-unicorn/modules/05-growth-engine.md +132 -12
- package/templates/.claude/skills/reverse-engineering-unicorn/modules/06-playbook-synthesis.md +1 -1
- package/templates/.claude/skills/sparc-prd-mini/SKILL.md +152 -10
- package/tests/e2e/lifecycle.test.js +21 -10
- package/tests/snapshot/baseline.json +42 -38
- package/tests/snapshot/update-baseline.js +2 -1
- package/tests/unit/adr-decision-coverage.test.js +137 -0
- package/tests/unit/adr-scanner-contract.test.js +108 -0
- package/tests/unit/autocommit-deletion.test.js +242 -0
- package/tests/unit/check-docs-complete.test.js +249 -0
- package/tests/unit/check-growth-trace.test.js +188 -0
- package/tests/unit/check-ports.test.js +184 -0
- package/tests/unit/db-port-rule.test.js +216 -0
- package/tests/unit/detect-parse-anchor.test.js +109 -0
- package/tests/unit/external-dependency-check.test.js +209 -0
- package/tests/unit/growth-axes-and-compliance.test.js +169 -0
- package/tests/unit/growth-gate-conditional.test.js +122 -0
- package/tests/unit/growth-module-b2b-gate.test.js +122 -0
- package/tests/unit/growth-requirements-bridge.test.js +127 -0
- package/tests/unit/hooks-project-anchored.test.js +223 -0
- package/tests/unit/hooks-report-failures.test.js +207 -0
- package/tests/unit/module-copy-identity.test.js +76 -0
- package/tests/unit/pipeline-file-ownership.test.js +95 -0
- package/tests/unit/roadmap-one-schema.test.js +179 -0
- package/tests/unit/skill-paths-prebaked.test.js +174 -0
- package/tests/unit/sparc-reconciliation.test.js +117 -0
- package/tests/unit/spec-pseudocode-traceability.test.js +146 -0
- package/tests/unit/statusline-honest-labels.test.js +178 -0
- package/tests/unit/statusline-two-roots.test.js +237 -0
- package/tests/unit/sync-templates-guard.test.js +209 -0
- package/tests/unit/utils.test.js +2 -2
- package/tests/unit/validation-gate-teeth.test.js +158 -0
- package/LICENSE +0 -21
package/sbom.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"hashes": [
|
|
16
16
|
{
|
|
17
17
|
"alg": "SHA-256",
|
|
18
|
-
"content": "
|
|
18
|
+
"content": "57b20e3bfd20ed2a97f783d77af52bb6c74ceff5466cacb20ddb058c0a344c48"
|
|
19
19
|
}
|
|
20
20
|
]
|
|
21
21
|
},
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"hashes": [
|
|
46
46
|
{
|
|
47
47
|
"alg": "SHA-256",
|
|
48
|
-
"content": "
|
|
48
|
+
"content": "a6fed19895b2c93a1be5f3416f021b2d5165449ff6dadd9bf6d96ba8c0491192"
|
|
49
49
|
}
|
|
50
50
|
]
|
|
51
51
|
},
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"hashes": [
|
|
56
56
|
{
|
|
57
57
|
"alg": "SHA-256",
|
|
58
|
-
"content": "
|
|
58
|
+
"content": "d65437974585200f0db8ef082dfbd0519f61cc29cadf3224732ae7a459a20186"
|
|
59
59
|
}
|
|
60
60
|
]
|
|
61
61
|
},
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"hashes": [
|
|
66
66
|
{
|
|
67
67
|
"alg": "SHA-256",
|
|
68
|
-
"content": "
|
|
68
|
+
"content": "8fe8dc32ddb603bfae2c71c8bafed51dd4d291a3f32942c06a049cab25dbf490"
|
|
69
69
|
}
|
|
70
70
|
]
|
|
71
71
|
},
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"hashes": [
|
|
76
76
|
{
|
|
77
77
|
"alg": "SHA-256",
|
|
78
|
-
"content": "
|
|
78
|
+
"content": "307cf6c2a9bd6ebee678e47c0a13c15fdaaebcfdc9a17a0a08fe7892ed1afee0"
|
|
79
79
|
}
|
|
80
80
|
]
|
|
81
81
|
},
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"hashes": [
|
|
86
86
|
{
|
|
87
87
|
"alg": "SHA-256",
|
|
88
|
-
"content": "
|
|
88
|
+
"content": "e4c5c190383570dd0f9853ec18221d0ccd24a85a4a42575e819c7b283fc42077"
|
|
89
89
|
}
|
|
90
90
|
]
|
|
91
91
|
},
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"hashes": [
|
|
106
106
|
{
|
|
107
107
|
"alg": "SHA-256",
|
|
108
|
-
"content": "
|
|
108
|
+
"content": "6cd5056f9e315bd910187925f0085910fa6905490559a58cb3c604d7bd63ebc4"
|
|
109
109
|
}
|
|
110
110
|
]
|
|
111
111
|
},
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"hashes": [
|
|
136
136
|
{
|
|
137
137
|
"alg": "SHA-256",
|
|
138
|
-
"content": "
|
|
138
|
+
"content": "19cddc3b70de2f8ae440d7dfcd5268cf195df32e35a0b17f861f727df76cc3ca"
|
|
139
139
|
}
|
|
140
140
|
]
|
|
141
141
|
},
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"hashes": [
|
|
146
146
|
{
|
|
147
147
|
"alg": "SHA-256",
|
|
148
|
-
"content": "
|
|
148
|
+
"content": "3d5b2a8dd9c9f7c0f35ae7b280ed22d865086a07a5f07866ce496549d4623e9b"
|
|
149
149
|
}
|
|
150
150
|
]
|
|
151
151
|
},
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
"hashes": [
|
|
156
156
|
{
|
|
157
157
|
"alg": "SHA-256",
|
|
158
|
-
"content": "
|
|
158
|
+
"content": "20b8f60be4755fcdacfb845b8bfc9f12cc26bd999fefb5f98ab6dd0a2948f1c7"
|
|
159
159
|
}
|
|
160
160
|
]
|
|
161
161
|
},
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"hashes": [
|
|
166
166
|
{
|
|
167
167
|
"alg": "SHA-256",
|
|
168
|
-
"content": "
|
|
168
|
+
"content": "c7923e865819d4d544f64066a4ef9ab729266dc2e11eeaed5e736f0357fcd2e8"
|
|
169
169
|
}
|
|
170
170
|
]
|
|
171
171
|
},
|
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
"hashes": [
|
|
186
186
|
{
|
|
187
187
|
"alg": "SHA-256",
|
|
188
|
-
"content": "
|
|
188
|
+
"content": "f11803686a9b0d1cfe526d36d5ad3fe7e527b73bdf5bbcd2bb9e8207abbd9a94"
|
|
189
189
|
}
|
|
190
190
|
]
|
|
191
191
|
},
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"hashes": [
|
|
216
216
|
{
|
|
217
217
|
"alg": "SHA-256",
|
|
218
|
-
"content": "
|
|
218
|
+
"content": "b98cda9099c19497ddcdc1b58d17d62a75ef73cf6c6e64beac723b0e0363b661"
|
|
219
219
|
}
|
|
220
220
|
]
|
|
221
221
|
},
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"hashes": [
|
|
236
236
|
{
|
|
237
237
|
"alg": "SHA-256",
|
|
238
|
-
"content": "
|
|
238
|
+
"content": "31baddce9668e9802bc042c8a0df326061c1db7662f64df6861f7ed419890b88"
|
|
239
239
|
}
|
|
240
240
|
]
|
|
241
241
|
},
|
|
@@ -275,7 +275,7 @@
|
|
|
275
275
|
"hashes": [
|
|
276
276
|
{
|
|
277
277
|
"alg": "SHA-256",
|
|
278
|
-
"content": "
|
|
278
|
+
"content": "195281e31da3a3e5ecde1b7087ec5904f35d8f2639e6270f2d8ae685adcfa0c5"
|
|
279
279
|
}
|
|
280
280
|
]
|
|
281
281
|
},
|
|
@@ -355,7 +355,7 @@
|
|
|
355
355
|
"hashes": [
|
|
356
356
|
{
|
|
357
357
|
"alg": "SHA-256",
|
|
358
|
-
"content": "
|
|
358
|
+
"content": "d4fc297e21682290c15aa64499190ee49b7aa62e69d527c2b5332fffad02f401"
|
|
359
359
|
}
|
|
360
360
|
]
|
|
361
361
|
},
|
|
@@ -365,7 +365,7 @@
|
|
|
365
365
|
"hashes": [
|
|
366
366
|
{
|
|
367
367
|
"alg": "SHA-256",
|
|
368
|
-
"content": "
|
|
368
|
+
"content": "e57950758cd4764b2cb54b3f1905567e9dbc1ed20ac6ecd30998614894689f4f"
|
|
369
369
|
}
|
|
370
370
|
]
|
|
371
371
|
},
|
|
@@ -385,7 +385,7 @@
|
|
|
385
385
|
"hashes": [
|
|
386
386
|
{
|
|
387
387
|
"alg": "SHA-256",
|
|
388
|
-
"content": "
|
|
388
|
+
"content": "f74683fe91b4357d6fb4024ed47b4d5a129ea6375ca6b223dee97176d74acf1c"
|
|
389
389
|
}
|
|
390
390
|
]
|
|
391
391
|
},
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
"hashes": [
|
|
466
466
|
{
|
|
467
467
|
"alg": "SHA-256",
|
|
468
|
-
"content": "
|
|
468
|
+
"content": "1e4984306c3aa80dfc8734dc1c975dfe5fdf2cf6396ddd759e4c7635646107b8"
|
|
469
469
|
}
|
|
470
470
|
]
|
|
471
471
|
},
|
|
@@ -485,7 +485,7 @@
|
|
|
485
485
|
"hashes": [
|
|
486
486
|
{
|
|
487
487
|
"alg": "SHA-256",
|
|
488
|
-
"content": "
|
|
488
|
+
"content": "8862d0dc117815b1c3fc7f6e929996e2458783f1ac443eb70bc2a7ebe63a67c3"
|
|
489
489
|
}
|
|
490
490
|
]
|
|
491
491
|
},
|
|
@@ -505,7 +505,7 @@
|
|
|
505
505
|
"hashes": [
|
|
506
506
|
{
|
|
507
507
|
"alg": "SHA-256",
|
|
508
|
-
"content": "
|
|
508
|
+
"content": "4aaebc10ca8d607d4b2b43883d82392e9788c2f183878a49fc0d1ed54d07ee95"
|
|
509
509
|
}
|
|
510
510
|
]
|
|
511
511
|
},
|
|
@@ -515,7 +515,7 @@
|
|
|
515
515
|
"hashes": [
|
|
516
516
|
{
|
|
517
517
|
"alg": "SHA-256",
|
|
518
|
-
"content": "
|
|
518
|
+
"content": "5e7cef87b24d457f25315d79fe15f0dfaf94d9269495d638817f0faee2593c6f"
|
|
519
519
|
}
|
|
520
520
|
]
|
|
521
521
|
},
|
|
@@ -525,7 +525,7 @@
|
|
|
525
525
|
"hashes": [
|
|
526
526
|
{
|
|
527
527
|
"alg": "SHA-256",
|
|
528
|
-
"content": "
|
|
528
|
+
"content": "9bb404b7f4fda5de03e6c2f16bf8939a79ec1944538767b04bcccc6cf50cc03d"
|
|
529
529
|
}
|
|
530
530
|
]
|
|
531
531
|
},
|
|
@@ -535,7 +535,37 @@
|
|
|
535
535
|
"hashes": [
|
|
536
536
|
{
|
|
537
537
|
"alg": "SHA-256",
|
|
538
|
-
"content": "
|
|
538
|
+
"content": "f4dcc9ffd9a3aed91dd56e011e699fcf8af903cc81594e4ab1ef61e5432a36ad"
|
|
539
|
+
}
|
|
540
|
+
]
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"type": "file",
|
|
544
|
+
"name": "templates/.claude/hooks/check-docs-complete.cjs",
|
|
545
|
+
"hashes": [
|
|
546
|
+
{
|
|
547
|
+
"alg": "SHA-256",
|
|
548
|
+
"content": "13eca8ab8f18325031ca707baa2f7068f8c05484f8e4b12d4129a1023cc7a478"
|
|
549
|
+
}
|
|
550
|
+
]
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"type": "file",
|
|
554
|
+
"name": "templates/.claude/hooks/check-growth-trace.cjs",
|
|
555
|
+
"hashes": [
|
|
556
|
+
{
|
|
557
|
+
"alg": "SHA-256",
|
|
558
|
+
"content": "91994fc109c8440306c9dd3d5eea176c533eb0818fcdb09bac2b309397d9908a"
|
|
559
|
+
}
|
|
560
|
+
]
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"type": "file",
|
|
564
|
+
"name": "templates/.claude/hooks/check-ports.cjs",
|
|
565
|
+
"hashes": [
|
|
566
|
+
{
|
|
567
|
+
"alg": "SHA-256",
|
|
568
|
+
"content": "e5f2d2bd8899df27c2dfedf76128467becae1868210eb8525a1bad2869a8c78f"
|
|
539
569
|
}
|
|
540
570
|
]
|
|
541
571
|
},
|
|
@@ -545,7 +575,7 @@
|
|
|
545
575
|
"hashes": [
|
|
546
576
|
{
|
|
547
577
|
"alg": "SHA-256",
|
|
548
|
-
"content": "
|
|
578
|
+
"content": "46f8357e3886a6d54db1ab4af969b9b8643ae5937ba59038a5651ffbcfd0d30e"
|
|
549
579
|
}
|
|
550
580
|
]
|
|
551
581
|
},
|
|
@@ -555,7 +585,7 @@
|
|
|
555
585
|
"hashes": [
|
|
556
586
|
{
|
|
557
587
|
"alg": "SHA-256",
|
|
558
|
-
"content": "
|
|
588
|
+
"content": "47146a76b768ac2273abe8f2f017856a0e28b45afaf90048148da417dd19604e"
|
|
559
589
|
}
|
|
560
590
|
]
|
|
561
591
|
},
|
|
@@ -565,7 +595,17 @@
|
|
|
565
595
|
"hashes": [
|
|
566
596
|
{
|
|
567
597
|
"alg": "SHA-256",
|
|
568
|
-
"content": "
|
|
598
|
+
"content": "948edf98ccabaa4e2dc59078435fb444639aa740baa08967d3a78067e4de3416"
|
|
599
|
+
}
|
|
600
|
+
]
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"type": "file",
|
|
604
|
+
"name": "templates/.claude/rules/docker-ports.md",
|
|
605
|
+
"hashes": [
|
|
606
|
+
{
|
|
607
|
+
"alg": "SHA-256",
|
|
608
|
+
"content": "bef41c25c875479341f68783c2d64572800d4710f55401e55519245f03d22efb"
|
|
569
609
|
}
|
|
570
610
|
]
|
|
571
611
|
},
|
|
@@ -605,7 +645,7 @@
|
|
|
605
645
|
"hashes": [
|
|
606
646
|
{
|
|
607
647
|
"alg": "SHA-256",
|
|
608
|
-
"content": "
|
|
648
|
+
"content": "99289f711c34cfddddbef5328b74749fc63d1f74636c6a4e4d61caa202fad05d"
|
|
609
649
|
}
|
|
610
650
|
]
|
|
611
651
|
},
|
|
@@ -615,7 +655,7 @@
|
|
|
615
655
|
"hashes": [
|
|
616
656
|
{
|
|
617
657
|
"alg": "SHA-256",
|
|
618
|
-
"content": "
|
|
658
|
+
"content": "7669309b0ae4330bc6cf6b26bd9cfc01d7b99a8e70c1f056a52574430db9378e"
|
|
619
659
|
}
|
|
620
660
|
]
|
|
621
661
|
},
|
|
@@ -625,7 +665,7 @@
|
|
|
625
665
|
"hashes": [
|
|
626
666
|
{
|
|
627
667
|
"alg": "SHA-256",
|
|
628
|
-
"content": "
|
|
668
|
+
"content": "b1df6cf834ccfa227f3318a70862115c17838ab31253e9d8d89381b7763e61fd"
|
|
629
669
|
}
|
|
630
670
|
]
|
|
631
671
|
},
|
|
@@ -735,7 +775,7 @@
|
|
|
735
775
|
"hashes": [
|
|
736
776
|
{
|
|
737
777
|
"alg": "SHA-256",
|
|
738
|
-
"content": "
|
|
778
|
+
"content": "85c72f6daa5af88b4a7ff520a387f47a7c92b81cb1f0757550c8b58100a97be6"
|
|
739
779
|
}
|
|
740
780
|
]
|
|
741
781
|
},
|
|
@@ -745,7 +785,7 @@
|
|
|
745
785
|
"hashes": [
|
|
746
786
|
{
|
|
747
787
|
"alg": "SHA-256",
|
|
748
|
-
"content": "
|
|
788
|
+
"content": "5939f3fe6ae542fabb8e665dc373a20410d8de917362fcb3ecac504286f41836"
|
|
749
789
|
}
|
|
750
790
|
]
|
|
751
791
|
},
|
|
@@ -755,7 +795,7 @@
|
|
|
755
795
|
"hashes": [
|
|
756
796
|
{
|
|
757
797
|
"alg": "SHA-256",
|
|
758
|
-
"content": "
|
|
798
|
+
"content": "e1ae2dd69db0d68fe276c1d0e57bd19921bf98fe91fe054716add76338442891"
|
|
759
799
|
}
|
|
760
800
|
]
|
|
761
801
|
},
|
|
@@ -805,7 +845,7 @@
|
|
|
805
845
|
"hashes": [
|
|
806
846
|
{
|
|
807
847
|
"alg": "SHA-256",
|
|
808
|
-
"content": "
|
|
848
|
+
"content": "683b254e400414b432827bedf4153a122322125eff053da4ccfeb3a62bab2a77"
|
|
809
849
|
}
|
|
810
850
|
]
|
|
811
851
|
},
|
|
@@ -845,7 +885,7 @@
|
|
|
845
885
|
"hashes": [
|
|
846
886
|
{
|
|
847
887
|
"alg": "SHA-256",
|
|
848
|
-
"content": "
|
|
888
|
+
"content": "657e35db0cb77d3a9d1a4d01215a9b8d50441dd863593bee3a84f62aad8b00bc"
|
|
849
889
|
}
|
|
850
890
|
]
|
|
851
891
|
},
|
|
@@ -855,7 +895,7 @@
|
|
|
855
895
|
"hashes": [
|
|
856
896
|
{
|
|
857
897
|
"alg": "SHA-256",
|
|
858
|
-
"content": "
|
|
898
|
+
"content": "5e87c91956eabc70b4a1084b47b2c9a20ede18bb245735812ead956eafabf3af"
|
|
859
899
|
}
|
|
860
900
|
]
|
|
861
901
|
},
|
|
@@ -895,7 +935,7 @@
|
|
|
895
935
|
"hashes": [
|
|
896
936
|
{
|
|
897
937
|
"alg": "SHA-256",
|
|
898
|
-
"content": "
|
|
938
|
+
"content": "c91f81da197a072b57378fd0018eea26c35d909a558bdca6f070eb60153c97b3"
|
|
899
939
|
}
|
|
900
940
|
]
|
|
901
941
|
},
|
|
@@ -915,7 +955,7 @@
|
|
|
915
955
|
"hashes": [
|
|
916
956
|
{
|
|
917
957
|
"alg": "SHA-256",
|
|
918
|
-
"content": "
|
|
958
|
+
"content": "2f1019d5da7d695983aee79186a47fcefccbfa24db48219c04f9bb9feb757d3a"
|
|
919
959
|
}
|
|
920
960
|
]
|
|
921
961
|
},
|
|
@@ -925,7 +965,7 @@
|
|
|
925
965
|
"hashes": [
|
|
926
966
|
{
|
|
927
967
|
"alg": "SHA-256",
|
|
928
|
-
"content": "
|
|
968
|
+
"content": "db6898b7202b84965cbff9195a6ce780cadd6aeb64adae3fbfd951443a6bc43d"
|
|
929
969
|
}
|
|
930
970
|
]
|
|
931
971
|
},
|
|
@@ -945,7 +985,7 @@
|
|
|
945
985
|
"hashes": [
|
|
946
986
|
{
|
|
947
987
|
"alg": "SHA-256",
|
|
948
|
-
"content": "
|
|
988
|
+
"content": "7b01140a304c060fb085ded8711189ac3f259f999df1cb42380d0274191f1b25"
|
|
949
989
|
}
|
|
950
990
|
]
|
|
951
991
|
},
|
|
@@ -955,7 +995,7 @@
|
|
|
955
995
|
"hashes": [
|
|
956
996
|
{
|
|
957
997
|
"alg": "SHA-256",
|
|
958
|
-
"content": "
|
|
998
|
+
"content": "3b1c20d2394e180720447416767fbfae99168cf9ca846bf64907f6fe5cd906da"
|
|
959
999
|
}
|
|
960
1000
|
]
|
|
961
1001
|
},
|
|
@@ -985,7 +1025,7 @@
|
|
|
985
1025
|
"hashes": [
|
|
986
1026
|
{
|
|
987
1027
|
"alg": "SHA-256",
|
|
988
|
-
"content": "
|
|
1028
|
+
"content": "e037a7e73e65e5216f95f27a255009c4c2b95f0f2d6b7c575d70813efac34438"
|
|
989
1029
|
}
|
|
990
1030
|
]
|
|
991
1031
|
},
|
|
@@ -1475,7 +1515,7 @@
|
|
|
1475
1515
|
"hashes": [
|
|
1476
1516
|
{
|
|
1477
1517
|
"alg": "SHA-256",
|
|
1478
|
-
"content": "
|
|
1518
|
+
"content": "d2b8e71f4053c642f455a0f245ae18471ab25b7a21e0658f0fe410912a47bf8b"
|
|
1479
1519
|
}
|
|
1480
1520
|
]
|
|
1481
1521
|
},
|
|
@@ -1515,7 +1555,7 @@
|
|
|
1515
1555
|
"hashes": [
|
|
1516
1556
|
{
|
|
1517
1557
|
"alg": "SHA-256",
|
|
1518
|
-
"content": "
|
|
1558
|
+
"content": "49afe072f31f5b4f9a33f6b59487244f494b0f5587b6cc10c797c4de59510114"
|
|
1519
1559
|
}
|
|
1520
1560
|
]
|
|
1521
1561
|
},
|
|
@@ -1565,7 +1605,7 @@
|
|
|
1565
1605
|
"hashes": [
|
|
1566
1606
|
{
|
|
1567
1607
|
"alg": "SHA-256",
|
|
1568
|
-
"content": "
|
|
1608
|
+
"content": "0770bd63a6a1eeb34e873cb101e2ba0cf88d507e9bc03242046eaa837b9f587c"
|
|
1569
1609
|
}
|
|
1570
1610
|
]
|
|
1571
1611
|
},
|
|
@@ -1575,7 +1615,7 @@
|
|
|
1575
1615
|
"hashes": [
|
|
1576
1616
|
{
|
|
1577
1617
|
"alg": "SHA-256",
|
|
1578
|
-
"content": "
|
|
1618
|
+
"content": "499bbded50ddd368a62301083e828a42bd0223aa58322b6a952f00086b462972"
|
|
1579
1619
|
}
|
|
1580
1620
|
]
|
|
1581
1621
|
},
|
|
@@ -1585,7 +1625,7 @@
|
|
|
1585
1625
|
"hashes": [
|
|
1586
1626
|
{
|
|
1587
1627
|
"alg": "SHA-256",
|
|
1588
|
-
"content": "
|
|
1628
|
+
"content": "11e2e101c99d42306ac1d0931475c5a8899e929514e41a393b6173e03856cfc3"
|
|
1589
1629
|
}
|
|
1590
1630
|
]
|
|
1591
1631
|
},
|
|
@@ -1595,7 +1635,7 @@
|
|
|
1595
1635
|
"hashes": [
|
|
1596
1636
|
{
|
|
1597
1637
|
"alg": "SHA-256",
|
|
1598
|
-
"content": "
|
|
1638
|
+
"content": "7c2e7164463371239d92f28153777e40ee0d6dad293d59886a4cf5b306fa3627"
|
|
1599
1639
|
}
|
|
1600
1640
|
]
|
|
1601
1641
|
},
|
|
@@ -1605,7 +1645,7 @@
|
|
|
1605
1645
|
"hashes": [
|
|
1606
1646
|
{
|
|
1607
1647
|
"alg": "SHA-256",
|
|
1608
|
-
"content": "
|
|
1648
|
+
"content": "dd08226391d498a82f111f0da665ea7cea1fa8a97683fab11070f879142727f7"
|
|
1609
1649
|
}
|
|
1610
1650
|
]
|
|
1611
1651
|
},
|
|
@@ -1615,7 +1655,7 @@
|
|
|
1615
1655
|
"hashes": [
|
|
1616
1656
|
{
|
|
1617
1657
|
"alg": "SHA-256",
|
|
1618
|
-
"content": "
|
|
1658
|
+
"content": "84658390dc7beb590f70164b391ace915e42926660bc1015e4be300752b74a37"
|
|
1619
1659
|
}
|
|
1620
1660
|
]
|
|
1621
1661
|
},
|
|
@@ -1625,7 +1665,7 @@
|
|
|
1625
1665
|
"hashes": [
|
|
1626
1666
|
{
|
|
1627
1667
|
"alg": "SHA-256",
|
|
1628
|
-
"content": "
|
|
1668
|
+
"content": "3cd76a218aa9f94e0ff8ff2fc257647540674f68df3883f0de5e76e1cea26d9b"
|
|
1629
1669
|
}
|
|
1630
1670
|
]
|
|
1631
1671
|
},
|
|
@@ -1665,7 +1705,7 @@
|
|
|
1665
1705
|
"hashes": [
|
|
1666
1706
|
{
|
|
1667
1707
|
"alg": "SHA-256",
|
|
1668
|
-
"content": "
|
|
1708
|
+
"content": "71f97e269e8b1807550a4ef91b2f0ac4dd892a074781504890d33db8f32685d2"
|
|
1669
1709
|
}
|
|
1670
1710
|
]
|
|
1671
1711
|
},
|
|
@@ -1705,7 +1745,7 @@
|
|
|
1705
1745
|
"hashes": [
|
|
1706
1746
|
{
|
|
1707
1747
|
"alg": "SHA-256",
|
|
1708
|
-
"content": "
|
|
1748
|
+
"content": "fd4af066e9e20c7c0f711337f3afdfd2f8e13ec8c845f8784befeb0785270e14"
|
|
1709
1749
|
}
|
|
1710
1750
|
]
|
|
1711
1751
|
},
|
|
@@ -1715,7 +1755,7 @@
|
|
|
1715
1755
|
"hashes": [
|
|
1716
1756
|
{
|
|
1717
1757
|
"alg": "SHA-256",
|
|
1718
|
-
"content": "
|
|
1758
|
+
"content": "0d5af8aadd98bf1f5f07a02b9d6d7a5dd243d4263a5b03de1a249fdaa5111a56"
|
|
1719
1759
|
}
|
|
1720
1760
|
]
|
|
1721
1761
|
},
|
|
@@ -1735,7 +1775,247 @@
|
|
|
1735
1775
|
"hashes": [
|
|
1736
1776
|
{
|
|
1737
1777
|
"alg": "SHA-256",
|
|
1738
|
-
"content": "
|
|
1778
|
+
"content": "1f50d0c2ec86f1c865ee6ed8c59725e57c397d487b7a24baf051dc5d4b294459"
|
|
1779
|
+
}
|
|
1780
|
+
]
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
"type": "file",
|
|
1784
|
+
"name": "tests/unit/adr-decision-coverage.test.js",
|
|
1785
|
+
"hashes": [
|
|
1786
|
+
{
|
|
1787
|
+
"alg": "SHA-256",
|
|
1788
|
+
"content": "34f9bf0700b4c45fb905f606567f2a6d3ba152f8f1db29f479963667b298ede4"
|
|
1789
|
+
}
|
|
1790
|
+
]
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"type": "file",
|
|
1794
|
+
"name": "tests/unit/adr-scanner-contract.test.js",
|
|
1795
|
+
"hashes": [
|
|
1796
|
+
{
|
|
1797
|
+
"alg": "SHA-256",
|
|
1798
|
+
"content": "08c8b7d862ae0ddcd72116462458b71d3fe29b09cbaf08fa6a824e22ad6985c8"
|
|
1799
|
+
}
|
|
1800
|
+
]
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
"type": "file",
|
|
1804
|
+
"name": "tests/unit/autocommit-deletion.test.js",
|
|
1805
|
+
"hashes": [
|
|
1806
|
+
{
|
|
1807
|
+
"alg": "SHA-256",
|
|
1808
|
+
"content": "87ebe50e164cfa3aeda3d4f04e6b6aa98ab8af44711cbeb94252d770c07ad8ad"
|
|
1809
|
+
}
|
|
1810
|
+
]
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
"type": "file",
|
|
1814
|
+
"name": "tests/unit/check-docs-complete.test.js",
|
|
1815
|
+
"hashes": [
|
|
1816
|
+
{
|
|
1817
|
+
"alg": "SHA-256",
|
|
1818
|
+
"content": "0dbc15c1077c9c02766cfa9b1eb357b30b59639f2fa91003e44e3c6485da3e7b"
|
|
1819
|
+
}
|
|
1820
|
+
]
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"type": "file",
|
|
1824
|
+
"name": "tests/unit/check-growth-trace.test.js",
|
|
1825
|
+
"hashes": [
|
|
1826
|
+
{
|
|
1827
|
+
"alg": "SHA-256",
|
|
1828
|
+
"content": "733d87fe8eca897fcfc5cad9342d4db2085270c21d0d8866d817a9b9418511c2"
|
|
1829
|
+
}
|
|
1830
|
+
]
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"type": "file",
|
|
1834
|
+
"name": "tests/unit/check-ports.test.js",
|
|
1835
|
+
"hashes": [
|
|
1836
|
+
{
|
|
1837
|
+
"alg": "SHA-256",
|
|
1838
|
+
"content": "72d9eeaa8c47d83fba867722f4b8efc8d079e2d9649e1a20abff46571c2f6f15"
|
|
1839
|
+
}
|
|
1840
|
+
]
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
"type": "file",
|
|
1844
|
+
"name": "tests/unit/db-port-rule.test.js",
|
|
1845
|
+
"hashes": [
|
|
1846
|
+
{
|
|
1847
|
+
"alg": "SHA-256",
|
|
1848
|
+
"content": "a97c913ccba8da16f7b8ef3094cac4ba8b499df2d644b3094c58945306d98c09"
|
|
1849
|
+
}
|
|
1850
|
+
]
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
"type": "file",
|
|
1854
|
+
"name": "tests/unit/detect-parse-anchor.test.js",
|
|
1855
|
+
"hashes": [
|
|
1856
|
+
{
|
|
1857
|
+
"alg": "SHA-256",
|
|
1858
|
+
"content": "ecfa57bfcb34e12081009d0bdf4be83a6eab7a8b7a6a0dc27c1cb02ae5561be0"
|
|
1859
|
+
}
|
|
1860
|
+
]
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"type": "file",
|
|
1864
|
+
"name": "tests/unit/external-dependency-check.test.js",
|
|
1865
|
+
"hashes": [
|
|
1866
|
+
{
|
|
1867
|
+
"alg": "SHA-256",
|
|
1868
|
+
"content": "d85109f8e86648d61fc17d0128e9d4881950a70641c246e667d7e54ffc1f0273"
|
|
1869
|
+
}
|
|
1870
|
+
]
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
"type": "file",
|
|
1874
|
+
"name": "tests/unit/growth-axes-and-compliance.test.js",
|
|
1875
|
+
"hashes": [
|
|
1876
|
+
{
|
|
1877
|
+
"alg": "SHA-256",
|
|
1878
|
+
"content": "88e4d8c7ae278c46dfce4d89fcbd1dee49c0b545ebc07e459306bfdc70567048"
|
|
1879
|
+
}
|
|
1880
|
+
]
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
"type": "file",
|
|
1884
|
+
"name": "tests/unit/growth-gate-conditional.test.js",
|
|
1885
|
+
"hashes": [
|
|
1886
|
+
{
|
|
1887
|
+
"alg": "SHA-256",
|
|
1888
|
+
"content": "bff4149b339294ac822d1a8fe732d21560ea8d70bcb80b10f3491105a4a9b75c"
|
|
1889
|
+
}
|
|
1890
|
+
]
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
"type": "file",
|
|
1894
|
+
"name": "tests/unit/growth-module-b2b-gate.test.js",
|
|
1895
|
+
"hashes": [
|
|
1896
|
+
{
|
|
1897
|
+
"alg": "SHA-256",
|
|
1898
|
+
"content": "05ce46882984905ba41983c34b8d983e9fa9bf5eb4b1af988841a46e78142098"
|
|
1899
|
+
}
|
|
1900
|
+
]
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
"type": "file",
|
|
1904
|
+
"name": "tests/unit/growth-requirements-bridge.test.js",
|
|
1905
|
+
"hashes": [
|
|
1906
|
+
{
|
|
1907
|
+
"alg": "SHA-256",
|
|
1908
|
+
"content": "2f560a16f1757df46d5d52e5d29a7aad3e4c327cd07ea9cc69240c7dd1c93f2a"
|
|
1909
|
+
}
|
|
1910
|
+
]
|
|
1911
|
+
},
|
|
1912
|
+
{
|
|
1913
|
+
"type": "file",
|
|
1914
|
+
"name": "tests/unit/hooks-project-anchored.test.js",
|
|
1915
|
+
"hashes": [
|
|
1916
|
+
{
|
|
1917
|
+
"alg": "SHA-256",
|
|
1918
|
+
"content": "2fa5b44982d72701d7a8486ac24ee3a91c6fa6123ef7303a0e065bf1e60987d7"
|
|
1919
|
+
}
|
|
1920
|
+
]
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
"type": "file",
|
|
1924
|
+
"name": "tests/unit/hooks-report-failures.test.js",
|
|
1925
|
+
"hashes": [
|
|
1926
|
+
{
|
|
1927
|
+
"alg": "SHA-256",
|
|
1928
|
+
"content": "35d3fca74c22e1bc88b6fbb25f172b66a21561a947e2b6e90a366d5a854376b8"
|
|
1929
|
+
}
|
|
1930
|
+
]
|
|
1931
|
+
},
|
|
1932
|
+
{
|
|
1933
|
+
"type": "file",
|
|
1934
|
+
"name": "tests/unit/module-copy-identity.test.js",
|
|
1935
|
+
"hashes": [
|
|
1936
|
+
{
|
|
1937
|
+
"alg": "SHA-256",
|
|
1938
|
+
"content": "a1269ad9f68a38faa7710fc63ce850feacb2304996b85ef38237b222815a3532"
|
|
1939
|
+
}
|
|
1940
|
+
]
|
|
1941
|
+
},
|
|
1942
|
+
{
|
|
1943
|
+
"type": "file",
|
|
1944
|
+
"name": "tests/unit/pipeline-file-ownership.test.js",
|
|
1945
|
+
"hashes": [
|
|
1946
|
+
{
|
|
1947
|
+
"alg": "SHA-256",
|
|
1948
|
+
"content": "dd5b6e2ddb3078fb5ccafed6c55a6079bbd20d73fd5c2dacbb988263ceeda806"
|
|
1949
|
+
}
|
|
1950
|
+
]
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
"type": "file",
|
|
1954
|
+
"name": "tests/unit/roadmap-one-schema.test.js",
|
|
1955
|
+
"hashes": [
|
|
1956
|
+
{
|
|
1957
|
+
"alg": "SHA-256",
|
|
1958
|
+
"content": "3e7ac9dbc9796a791fc95c43b4346c6da2455f3c0ace45bbc440502c5957d3dc"
|
|
1959
|
+
}
|
|
1960
|
+
]
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
"type": "file",
|
|
1964
|
+
"name": "tests/unit/skill-paths-prebaked.test.js",
|
|
1965
|
+
"hashes": [
|
|
1966
|
+
{
|
|
1967
|
+
"alg": "SHA-256",
|
|
1968
|
+
"content": "efb13ca5d2fa68f3186e5af4142509d260d7cf63c902f59e915110bb550887df"
|
|
1969
|
+
}
|
|
1970
|
+
]
|
|
1971
|
+
},
|
|
1972
|
+
{
|
|
1973
|
+
"type": "file",
|
|
1974
|
+
"name": "tests/unit/sparc-reconciliation.test.js",
|
|
1975
|
+
"hashes": [
|
|
1976
|
+
{
|
|
1977
|
+
"alg": "SHA-256",
|
|
1978
|
+
"content": "4020c623cb351d42b3b184d23194d48cf04e4a3ce8d95ff96c4261ade75632c9"
|
|
1979
|
+
}
|
|
1980
|
+
]
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
"type": "file",
|
|
1984
|
+
"name": "tests/unit/spec-pseudocode-traceability.test.js",
|
|
1985
|
+
"hashes": [
|
|
1986
|
+
{
|
|
1987
|
+
"alg": "SHA-256",
|
|
1988
|
+
"content": "fc01a561458f35e789a6d22ce3def23f3553493ba9f06493666306c603fa3c8c"
|
|
1989
|
+
}
|
|
1990
|
+
]
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
"type": "file",
|
|
1994
|
+
"name": "tests/unit/statusline-honest-labels.test.js",
|
|
1995
|
+
"hashes": [
|
|
1996
|
+
{
|
|
1997
|
+
"alg": "SHA-256",
|
|
1998
|
+
"content": "3188892491df4133566c20fc336b8d5ceedac7e14c7053088be2e3bee3e10594"
|
|
1999
|
+
}
|
|
2000
|
+
]
|
|
2001
|
+
},
|
|
2002
|
+
{
|
|
2003
|
+
"type": "file",
|
|
2004
|
+
"name": "tests/unit/statusline-two-roots.test.js",
|
|
2005
|
+
"hashes": [
|
|
2006
|
+
{
|
|
2007
|
+
"alg": "SHA-256",
|
|
2008
|
+
"content": "73eb6c542058b3969e97ac0fb7f363e5b2d396bd5328b4cb186fba102aa3fd01"
|
|
2009
|
+
}
|
|
2010
|
+
]
|
|
2011
|
+
},
|
|
2012
|
+
{
|
|
2013
|
+
"type": "file",
|
|
2014
|
+
"name": "tests/unit/sync-templates-guard.test.js",
|
|
2015
|
+
"hashes": [
|
|
2016
|
+
{
|
|
2017
|
+
"alg": "SHA-256",
|
|
2018
|
+
"content": "75e8e0d0d2dfc16f14c586d399b5c9c075cc3a0494c558fe39d8528516185cfe"
|
|
1739
2019
|
}
|
|
1740
2020
|
]
|
|
1741
2021
|
},
|
|
@@ -1745,7 +2025,17 @@
|
|
|
1745
2025
|
"hashes": [
|
|
1746
2026
|
{
|
|
1747
2027
|
"alg": "SHA-256",
|
|
1748
|
-
"content": "
|
|
2028
|
+
"content": "2ccc68f9a91d188d56ebad77c4a64653cc5ff7aec093a739eb707774a37e1732"
|
|
2029
|
+
}
|
|
2030
|
+
]
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
"type": "file",
|
|
2034
|
+
"name": "tests/unit/validation-gate-teeth.test.js",
|
|
2035
|
+
"hashes": [
|
|
2036
|
+
{
|
|
2037
|
+
"alg": "SHA-256",
|
|
2038
|
+
"content": "d4f42a26b67b2fa1dfa8db9984c301a7d7e91657e5e2cdabb1bab307c766138d"
|
|
1749
2039
|
}
|
|
1750
2040
|
]
|
|
1751
2041
|
}
|