@dzhechkov/p-replicator 1.5.17 → 1.6.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 -65
- package/CHANGELOG.md +135 -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 +41 -18
- package/bin/cli.js +0 -0
- package/package.json +11 -10
- package/sbom.json +347 -77
- package/src/utils.js +2 -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 +126 -8
- 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-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 +5 -2
- 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/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-suggestions.md +11 -2
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/start-command.md +1 -1
- package/templates/.claude/skills/goap-research-ed25519/SKILL.md +340 -47
- package/templates/.claude/skills/goap-research-ed25519/scripts/check_report_evidence.py +359 -3
- package/templates/.claude/skills/goap-research-ed25519/scripts/ed25519_verifier.py +386 -13
- package/templates/.claude/skills/goap-research-ed25519/scripts/fixture_legacy_v2_fact.json +23 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/fixtures_field_cases.json +133 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/goap_planner.py +314 -44
- package/templates/.claude/skills/goap-research-ed25519/scripts/learning_bridge.py +890 -303
- package/templates/.claude/skills/goap-research-ed25519/scripts/population_match.py +591 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/risk_statement.py +289 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_ed25519_verifier.py +57 -2
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_evidence_provenance.py +969 -344
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_goap_planner.py +420 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_population_match.py +544 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_risk_absolute.py +239 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_signature_v3.py +554 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_suite_completeness.py +90 -0
- package/templates/.claude/skills/requirements-validator/SKILL.md +7 -0
- package/templates/.claude/skills/requirements-validator/references/scoring-system.md +28 -0
- package/templates/.claude/skills/sparc-prd-mini/SKILL.md +143 -1
- package/tests/e2e/lifecycle.test.js +21 -10
- package/tests/snapshot/baseline.json +51 -34
- 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-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-module-b2b-gate.test.js +104 -0
- package/tests/unit/hooks-project-anchored.test.js +223 -0
- package/tests/unit/hooks-report-failures.test.js +207 -0
- package/tests/unit/pipeline-file-ownership.test.js +95 -0
- package/tests/unit/roadmap-one-schema.test.js +179 -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
|
@@ -11,31 +11,31 @@
|
|
|
11
11
|
"components": [
|
|
12
12
|
{
|
|
13
13
|
"type": "file",
|
|
14
|
-
"name": ".
|
|
14
|
+
"name": "CHANGELOG.md",
|
|
15
15
|
"hashes": [
|
|
16
16
|
{
|
|
17
17
|
"alg": "SHA-256",
|
|
18
|
-
"content": "
|
|
18
|
+
"content": "837815d5116c5e117c1249a414b7ae81927969d74a3b44685e8dc8a8dd3a6d8e"
|
|
19
19
|
}
|
|
20
20
|
]
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
23
|
"type": "file",
|
|
24
|
-
"name": "
|
|
24
|
+
"name": "KNOWN_LIMITATIONS.md",
|
|
25
25
|
"hashes": [
|
|
26
26
|
{
|
|
27
27
|
"alg": "SHA-256",
|
|
28
|
-
"content": "
|
|
28
|
+
"content": "983200d843d2f4ac01f20d443219fe59cbc75ab1d1309395a3207fa4435c78d7"
|
|
29
29
|
}
|
|
30
30
|
]
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"type": "file",
|
|
34
|
-
"name": "
|
|
34
|
+
"name": "LICENSE",
|
|
35
35
|
"hashes": [
|
|
36
36
|
{
|
|
37
37
|
"alg": "SHA-256",
|
|
38
|
-
"content": "
|
|
38
|
+
"content": "3b93f7070f6843f37e0cae255f7caff22b466a4017fd2020d7d3216237e5a701"
|
|
39
39
|
}
|
|
40
40
|
]
|
|
41
41
|
},
|
|
@@ -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": "6b863dbfd298c1788097d53a87425030a341684f67bbb5a81a90c192c0c90d22"
|
|
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,27 +275,7 @@
|
|
|
275
275
|
"hashes": [
|
|
276
276
|
{
|
|
277
277
|
"alg": "SHA-256",
|
|
278
|
-
"content": "
|
|
279
|
-
}
|
|
280
|
-
]
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"type": "file",
|
|
284
|
-
"name": "scripts/sync-templates.js",
|
|
285
|
-
"hashes": [
|
|
286
|
-
{
|
|
287
|
-
"alg": "SHA-256",
|
|
288
|
-
"content": "4a94587201cc339668ab58f20fc2fc4a650a467d43805c2a4127ea97a06624ae"
|
|
289
|
-
}
|
|
290
|
-
]
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"type": "file",
|
|
294
|
-
"name": "sources.json",
|
|
295
|
-
"hashes": [
|
|
296
|
-
{
|
|
297
|
-
"alg": "SHA-256",
|
|
298
|
-
"content": "787645f616702f008d70b85d47bd739ae6dc31298482cecc694dffb17fdd32e6"
|
|
278
|
+
"content": "8ae12d621050c3a4f992bc853b4ec961af5fbf32bf9c3fee639a182b546992de"
|
|
299
279
|
}
|
|
300
280
|
]
|
|
301
281
|
},
|
|
@@ -375,7 +355,7 @@
|
|
|
375
355
|
"hashes": [
|
|
376
356
|
{
|
|
377
357
|
"alg": "SHA-256",
|
|
378
|
-
"content": "
|
|
358
|
+
"content": "ec9d1695f4b0ef2ce0b3ee6908e90900ebac0941a32ea48df673f6cd20fc1387"
|
|
379
359
|
}
|
|
380
360
|
]
|
|
381
361
|
},
|
|
@@ -385,7 +365,7 @@
|
|
|
385
365
|
"hashes": [
|
|
386
366
|
{
|
|
387
367
|
"alg": "SHA-256",
|
|
388
|
-
"content": "
|
|
368
|
+
"content": "e57950758cd4764b2cb54b3f1905567e9dbc1ed20ac6ecd30998614894689f4f"
|
|
389
369
|
}
|
|
390
370
|
]
|
|
391
371
|
},
|
|
@@ -405,7 +385,7 @@
|
|
|
405
385
|
"hashes": [
|
|
406
386
|
{
|
|
407
387
|
"alg": "SHA-256",
|
|
408
|
-
"content": "
|
|
388
|
+
"content": "f74683fe91b4357d6fb4024ed47b4d5a129ea6375ca6b223dee97176d74acf1c"
|
|
409
389
|
}
|
|
410
390
|
]
|
|
411
391
|
},
|
|
@@ -485,7 +465,7 @@
|
|
|
485
465
|
"hashes": [
|
|
486
466
|
{
|
|
487
467
|
"alg": "SHA-256",
|
|
488
|
-
"content": "
|
|
468
|
+
"content": "1e4984306c3aa80dfc8734dc1c975dfe5fdf2cf6396ddd759e4c7635646107b8"
|
|
489
469
|
}
|
|
490
470
|
]
|
|
491
471
|
},
|
|
@@ -505,7 +485,7 @@
|
|
|
505
485
|
"hashes": [
|
|
506
486
|
{
|
|
507
487
|
"alg": "SHA-256",
|
|
508
|
-
"content": "
|
|
488
|
+
"content": "13f5e2ebe109f33b63cbcd75e3cf1b94224ab066aba1b0cb10cf34f668144a8a"
|
|
509
489
|
}
|
|
510
490
|
]
|
|
511
491
|
},
|
|
@@ -525,7 +505,7 @@
|
|
|
525
505
|
"hashes": [
|
|
526
506
|
{
|
|
527
507
|
"alg": "SHA-256",
|
|
528
|
-
"content": "
|
|
508
|
+
"content": "4aaebc10ca8d607d4b2b43883d82392e9788c2f183878a49fc0d1ed54d07ee95"
|
|
529
509
|
}
|
|
530
510
|
]
|
|
531
511
|
},
|
|
@@ -535,7 +515,7 @@
|
|
|
535
515
|
"hashes": [
|
|
536
516
|
{
|
|
537
517
|
"alg": "SHA-256",
|
|
538
|
-
"content": "
|
|
518
|
+
"content": "5e7cef87b24d457f25315d79fe15f0dfaf94d9269495d638817f0faee2593c6f"
|
|
539
519
|
}
|
|
540
520
|
]
|
|
541
521
|
},
|
|
@@ -545,7 +525,7 @@
|
|
|
545
525
|
"hashes": [
|
|
546
526
|
{
|
|
547
527
|
"alg": "SHA-256",
|
|
548
|
-
"content": "
|
|
528
|
+
"content": "9bb404b7f4fda5de03e6c2f16bf8939a79ec1944538767b04bcccc6cf50cc03d"
|
|
549
529
|
}
|
|
550
530
|
]
|
|
551
531
|
},
|
|
@@ -555,7 +535,17 @@
|
|
|
555
535
|
"hashes": [
|
|
556
536
|
{
|
|
557
537
|
"alg": "SHA-256",
|
|
558
|
-
"content": "
|
|
538
|
+
"content": "f4dcc9ffd9a3aed91dd56e011e699fcf8af903cc81594e4ab1ef61e5432a36ad"
|
|
539
|
+
}
|
|
540
|
+
]
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"type": "file",
|
|
544
|
+
"name": "templates/.claude/hooks/check-ports.cjs",
|
|
545
|
+
"hashes": [
|
|
546
|
+
{
|
|
547
|
+
"alg": "SHA-256",
|
|
548
|
+
"content": "e5f2d2bd8899df27c2dfedf76128467becae1868210eb8525a1bad2869a8c78f"
|
|
559
549
|
}
|
|
560
550
|
]
|
|
561
551
|
},
|
|
@@ -565,7 +555,7 @@
|
|
|
565
555
|
"hashes": [
|
|
566
556
|
{
|
|
567
557
|
"alg": "SHA-256",
|
|
568
|
-
"content": "
|
|
558
|
+
"content": "46f8357e3886a6d54db1ab4af969b9b8643ae5937ba59038a5651ffbcfd0d30e"
|
|
569
559
|
}
|
|
570
560
|
]
|
|
571
561
|
},
|
|
@@ -575,7 +565,7 @@
|
|
|
575
565
|
"hashes": [
|
|
576
566
|
{
|
|
577
567
|
"alg": "SHA-256",
|
|
578
|
-
"content": "
|
|
568
|
+
"content": "47146a76b768ac2273abe8f2f017856a0e28b45afaf90048148da417dd19604e"
|
|
579
569
|
}
|
|
580
570
|
]
|
|
581
571
|
},
|
|
@@ -585,7 +575,17 @@
|
|
|
585
575
|
"hashes": [
|
|
586
576
|
{
|
|
587
577
|
"alg": "SHA-256",
|
|
588
|
-
"content": "
|
|
578
|
+
"content": "1eca683baf67a17874dc5db6dfe38eb11944f550c66f46330bce0f794732245f"
|
|
579
|
+
}
|
|
580
|
+
]
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"type": "file",
|
|
584
|
+
"name": "templates/.claude/rules/docker-ports.md",
|
|
585
|
+
"hashes": [
|
|
586
|
+
{
|
|
587
|
+
"alg": "SHA-256",
|
|
588
|
+
"content": "bef41c25c875479341f68783c2d64572800d4710f55401e55519245f03d22efb"
|
|
589
589
|
}
|
|
590
590
|
]
|
|
591
591
|
},
|
|
@@ -625,7 +625,7 @@
|
|
|
625
625
|
"hashes": [
|
|
626
626
|
{
|
|
627
627
|
"alg": "SHA-256",
|
|
628
|
-
"content": "
|
|
628
|
+
"content": "b65e802d32a1e50bdfcd0cfc79c78e9234eac48a94f0cd1f5647cf4fea6c0162"
|
|
629
629
|
}
|
|
630
630
|
]
|
|
631
631
|
},
|
|
@@ -645,7 +645,7 @@
|
|
|
645
645
|
"hashes": [
|
|
646
646
|
{
|
|
647
647
|
"alg": "SHA-256",
|
|
648
|
-
"content": "
|
|
648
|
+
"content": "b1df6cf834ccfa227f3318a70862115c17838ab31253e9d8d89381b7763e61fd"
|
|
649
649
|
}
|
|
650
650
|
]
|
|
651
651
|
},
|
|
@@ -755,7 +755,7 @@
|
|
|
755
755
|
"hashes": [
|
|
756
756
|
{
|
|
757
757
|
"alg": "SHA-256",
|
|
758
|
-
"content": "
|
|
758
|
+
"content": "85c72f6daa5af88b4a7ff520a387f47a7c92b81cb1f0757550c8b58100a97be6"
|
|
759
759
|
}
|
|
760
760
|
]
|
|
761
761
|
},
|
|
@@ -765,7 +765,7 @@
|
|
|
765
765
|
"hashes": [
|
|
766
766
|
{
|
|
767
767
|
"alg": "SHA-256",
|
|
768
|
-
"content": "
|
|
768
|
+
"content": "5939f3fe6ae542fabb8e665dc373a20410d8de917362fcb3ecac504286f41836"
|
|
769
769
|
}
|
|
770
770
|
]
|
|
771
771
|
},
|
|
@@ -865,7 +865,7 @@
|
|
|
865
865
|
"hashes": [
|
|
866
866
|
{
|
|
867
867
|
"alg": "SHA-256",
|
|
868
|
-
"content": "
|
|
868
|
+
"content": "657e35db0cb77d3a9d1a4d01215a9b8d50441dd863593bee3a84f62aad8b00bc"
|
|
869
869
|
}
|
|
870
870
|
]
|
|
871
871
|
},
|
|
@@ -875,7 +875,7 @@
|
|
|
875
875
|
"hashes": [
|
|
876
876
|
{
|
|
877
877
|
"alg": "SHA-256",
|
|
878
|
-
"content": "
|
|
878
|
+
"content": "5e87c91956eabc70b4a1084b47b2c9a20ede18bb245735812ead956eafabf3af"
|
|
879
879
|
}
|
|
880
880
|
]
|
|
881
881
|
},
|
|
@@ -915,7 +915,7 @@
|
|
|
915
915
|
"hashes": [
|
|
916
916
|
{
|
|
917
917
|
"alg": "SHA-256",
|
|
918
|
-
"content": "
|
|
918
|
+
"content": "c91f81da197a072b57378fd0018eea26c35d909a558bdca6f070eb60153c97b3"
|
|
919
919
|
}
|
|
920
920
|
]
|
|
921
921
|
},
|
|
@@ -935,7 +935,7 @@
|
|
|
935
935
|
"hashes": [
|
|
936
936
|
{
|
|
937
937
|
"alg": "SHA-256",
|
|
938
|
-
"content": "
|
|
938
|
+
"content": "2f1019d5da7d695983aee79186a47fcefccbfa24db48219c04f9bb9feb757d3a"
|
|
939
939
|
}
|
|
940
940
|
]
|
|
941
941
|
},
|
|
@@ -945,7 +945,7 @@
|
|
|
945
945
|
"hashes": [
|
|
946
946
|
{
|
|
947
947
|
"alg": "SHA-256",
|
|
948
|
-
"content": "
|
|
948
|
+
"content": "db6898b7202b84965cbff9195a6ce780cadd6aeb64adae3fbfd951443a6bc43d"
|
|
949
949
|
}
|
|
950
950
|
]
|
|
951
951
|
},
|
|
@@ -975,7 +975,7 @@
|
|
|
975
975
|
"hashes": [
|
|
976
976
|
{
|
|
977
977
|
"alg": "SHA-256",
|
|
978
|
-
"content": "
|
|
978
|
+
"content": "3b1c20d2394e180720447416767fbfae99168cf9ca846bf64907f6fe5cd906da"
|
|
979
979
|
}
|
|
980
980
|
]
|
|
981
981
|
},
|
|
@@ -1005,7 +1005,7 @@
|
|
|
1005
1005
|
"hashes": [
|
|
1006
1006
|
{
|
|
1007
1007
|
"alg": "SHA-256",
|
|
1008
|
-
"content": "
|
|
1008
|
+
"content": "e037a7e73e65e5216f95f27a255009c4c2b95f0f2d6b7c575d70813efac34438"
|
|
1009
1009
|
}
|
|
1010
1010
|
]
|
|
1011
1011
|
},
|
|
@@ -1045,7 +1045,7 @@
|
|
|
1045
1045
|
"hashes": [
|
|
1046
1046
|
{
|
|
1047
1047
|
"alg": "SHA-256",
|
|
1048
|
-
"content": "
|
|
1048
|
+
"content": "404cb696d537d29585ec35f97a86173a582cd6fcf8d5f172a4f5bbd75ec971a8"
|
|
1049
1049
|
}
|
|
1050
1050
|
]
|
|
1051
1051
|
},
|
|
@@ -1085,7 +1085,7 @@
|
|
|
1085
1085
|
"hashes": [
|
|
1086
1086
|
{
|
|
1087
1087
|
"alg": "SHA-256",
|
|
1088
|
-
"content": "
|
|
1088
|
+
"content": "5053e677f11d00b4dd8365a81eafa1d2c961eebd25c33f72b02455573a934a32"
|
|
1089
1089
|
}
|
|
1090
1090
|
]
|
|
1091
1091
|
},
|
|
@@ -1095,7 +1095,7 @@
|
|
|
1095
1095
|
"hashes": [
|
|
1096
1096
|
{
|
|
1097
1097
|
"alg": "SHA-256",
|
|
1098
|
-
"content": "
|
|
1098
|
+
"content": "f4a2ac9e6473201583643fe8abf47560863cec600344dad5c9df06091b4298f5"
|
|
1099
1099
|
}
|
|
1100
1100
|
]
|
|
1101
1101
|
},
|
|
@@ -1119,13 +1119,33 @@
|
|
|
1119
1119
|
}
|
|
1120
1120
|
]
|
|
1121
1121
|
},
|
|
1122
|
+
{
|
|
1123
|
+
"type": "file",
|
|
1124
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/fixture_legacy_v2_fact.json",
|
|
1125
|
+
"hashes": [
|
|
1126
|
+
{
|
|
1127
|
+
"alg": "SHA-256",
|
|
1128
|
+
"content": "3f552b47c3864e4ff7ae8c72516e98c188592c7f4f7703d09ce88b39f586ad9d"
|
|
1129
|
+
}
|
|
1130
|
+
]
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"type": "file",
|
|
1134
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/fixtures_field_cases.json",
|
|
1135
|
+
"hashes": [
|
|
1136
|
+
{
|
|
1137
|
+
"alg": "SHA-256",
|
|
1138
|
+
"content": "e2ee619732ab4a1b57285e57b4349f96b4158b231a5624e5264fadf69edb8983"
|
|
1139
|
+
}
|
|
1140
|
+
]
|
|
1141
|
+
},
|
|
1122
1142
|
{
|
|
1123
1143
|
"type": "file",
|
|
1124
1144
|
"name": "templates/.claude/skills/goap-research-ed25519/scripts/goap_planner.py",
|
|
1125
1145
|
"hashes": [
|
|
1126
1146
|
{
|
|
1127
1147
|
"alg": "SHA-256",
|
|
1128
|
-
"content": "
|
|
1148
|
+
"content": "f5cbf4784106710b363e7f29bfa538b75f488cb25e1c273ae40de9f4c2a6710b"
|
|
1129
1149
|
}
|
|
1130
1150
|
]
|
|
1131
1151
|
},
|
|
@@ -1135,7 +1155,27 @@
|
|
|
1135
1155
|
"hashes": [
|
|
1136
1156
|
{
|
|
1137
1157
|
"alg": "SHA-256",
|
|
1138
|
-
"content": "
|
|
1158
|
+
"content": "74f8842978ba945ff78c2bd54702415dd87122e61919571e12a19c3cf1e56131"
|
|
1159
|
+
}
|
|
1160
|
+
]
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"type": "file",
|
|
1164
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/population_match.py",
|
|
1165
|
+
"hashes": [
|
|
1166
|
+
{
|
|
1167
|
+
"alg": "SHA-256",
|
|
1168
|
+
"content": "bbd1d3346a6fb75d0e8526cb5d2fc8bc8613bb31ab63ffb0958d436d5e009054"
|
|
1169
|
+
}
|
|
1170
|
+
]
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"type": "file",
|
|
1174
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/risk_statement.py",
|
|
1175
|
+
"hashes": [
|
|
1176
|
+
{
|
|
1177
|
+
"alg": "SHA-256",
|
|
1178
|
+
"content": "320ffece816e875f65624583846f44dc99461f672a0de7cda42be5ddf29d6de5"
|
|
1139
1179
|
}
|
|
1140
1180
|
]
|
|
1141
1181
|
},
|
|
@@ -1155,7 +1195,7 @@
|
|
|
1155
1195
|
"hashes": [
|
|
1156
1196
|
{
|
|
1157
1197
|
"alg": "SHA-256",
|
|
1158
|
-
"content": "
|
|
1198
|
+
"content": "dcba1ce538ff946d6928f30a7c5cbcc37fddf712b6181f91f94c76e20c117ac5"
|
|
1159
1199
|
}
|
|
1160
1200
|
]
|
|
1161
1201
|
},
|
|
@@ -1165,7 +1205,57 @@
|
|
|
1165
1205
|
"hashes": [
|
|
1166
1206
|
{
|
|
1167
1207
|
"alg": "SHA-256",
|
|
1168
|
-
"content": "
|
|
1208
|
+
"content": "292bfcdcc086934905c77f1543d8400ee483166ff3ce26c79bb526c204320dbb"
|
|
1209
|
+
}
|
|
1210
|
+
]
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"type": "file",
|
|
1214
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/test_goap_planner.py",
|
|
1215
|
+
"hashes": [
|
|
1216
|
+
{
|
|
1217
|
+
"alg": "SHA-256",
|
|
1218
|
+
"content": "7942ada069048b7e97bf2b6e920898a58517ccec090069f347399dbf1fc37731"
|
|
1219
|
+
}
|
|
1220
|
+
]
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"type": "file",
|
|
1224
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/test_population_match.py",
|
|
1225
|
+
"hashes": [
|
|
1226
|
+
{
|
|
1227
|
+
"alg": "SHA-256",
|
|
1228
|
+
"content": "f33f72c0ba6305af1644e6b1a7f7635d3f33273344f19c14e7dbd2f819af0e7f"
|
|
1229
|
+
}
|
|
1230
|
+
]
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"type": "file",
|
|
1234
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/test_risk_absolute.py",
|
|
1235
|
+
"hashes": [
|
|
1236
|
+
{
|
|
1237
|
+
"alg": "SHA-256",
|
|
1238
|
+
"content": "ab353db189650551c374cb772ba4a3a6929e3a2618f2f5c112eca4c3f69e46b6"
|
|
1239
|
+
}
|
|
1240
|
+
]
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"type": "file",
|
|
1244
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/test_signature_v3.py",
|
|
1245
|
+
"hashes": [
|
|
1246
|
+
{
|
|
1247
|
+
"alg": "SHA-256",
|
|
1248
|
+
"content": "a04259296df104c9497c7b31d29556cb9a7ad4dd3339cbe3d8d32a4f53950d25"
|
|
1249
|
+
}
|
|
1250
|
+
]
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"type": "file",
|
|
1254
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/test_suite_completeness.py",
|
|
1255
|
+
"hashes": [
|
|
1256
|
+
{
|
|
1257
|
+
"alg": "SHA-256",
|
|
1258
|
+
"content": "727c5d5b0dad215957012276ebc146397178255077e762ed7b88a60d8178d2ab"
|
|
1169
1259
|
}
|
|
1170
1260
|
]
|
|
1171
1261
|
},
|
|
@@ -1405,7 +1495,7 @@
|
|
|
1405
1495
|
"hashes": [
|
|
1406
1496
|
{
|
|
1407
1497
|
"alg": "SHA-256",
|
|
1408
|
-
"content": "
|
|
1498
|
+
"content": "e50c5269ad181966a81c14ef596946cea67cbf4b8f8f648c90fd66ecad948933"
|
|
1409
1499
|
}
|
|
1410
1500
|
]
|
|
1411
1501
|
},
|
|
@@ -1445,7 +1535,7 @@
|
|
|
1445
1535
|
"hashes": [
|
|
1446
1536
|
{
|
|
1447
1537
|
"alg": "SHA-256",
|
|
1448
|
-
"content": "
|
|
1538
|
+
"content": "49afe072f31f5b4f9a33f6b59487244f494b0f5587b6cc10c797c4de59510114"
|
|
1449
1539
|
}
|
|
1450
1540
|
]
|
|
1451
1541
|
},
|
|
@@ -1595,7 +1685,7 @@
|
|
|
1595
1685
|
"hashes": [
|
|
1596
1686
|
{
|
|
1597
1687
|
"alg": "SHA-256",
|
|
1598
|
-
"content": "
|
|
1688
|
+
"content": "50e829635b828b444487e4b04219518a595dbd4b94f91b66fb03ddf4a7b21712"
|
|
1599
1689
|
}
|
|
1600
1690
|
]
|
|
1601
1691
|
},
|
|
@@ -1635,7 +1725,7 @@
|
|
|
1635
1725
|
"hashes": [
|
|
1636
1726
|
{
|
|
1637
1727
|
"alg": "SHA-256",
|
|
1638
|
-
"content": "
|
|
1728
|
+
"content": "fd4af066e9e20c7c0f711337f3afdfd2f8e13ec8c845f8784befeb0785270e14"
|
|
1639
1729
|
}
|
|
1640
1730
|
]
|
|
1641
1731
|
},
|
|
@@ -1645,7 +1735,7 @@
|
|
|
1645
1735
|
"hashes": [
|
|
1646
1736
|
{
|
|
1647
1737
|
"alg": "SHA-256",
|
|
1648
|
-
"content": "
|
|
1738
|
+
"content": "cb6c08b5c5fb7ea837fb6c054d1094f8c4878a88ac866ec67a3862f8c7fb2a07"
|
|
1649
1739
|
}
|
|
1650
1740
|
]
|
|
1651
1741
|
},
|
|
@@ -1665,7 +1755,177 @@
|
|
|
1665
1755
|
"hashes": [
|
|
1666
1756
|
{
|
|
1667
1757
|
"alg": "SHA-256",
|
|
1668
|
-
"content": "
|
|
1758
|
+
"content": "1f50d0c2ec86f1c865ee6ed8c59725e57c397d487b7a24baf051dc5d4b294459"
|
|
1759
|
+
}
|
|
1760
|
+
]
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
"type": "file",
|
|
1764
|
+
"name": "tests/unit/adr-decision-coverage.test.js",
|
|
1765
|
+
"hashes": [
|
|
1766
|
+
{
|
|
1767
|
+
"alg": "SHA-256",
|
|
1768
|
+
"content": "34f9bf0700b4c45fb905f606567f2a6d3ba152f8f1db29f479963667b298ede4"
|
|
1769
|
+
}
|
|
1770
|
+
]
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"type": "file",
|
|
1774
|
+
"name": "tests/unit/adr-scanner-contract.test.js",
|
|
1775
|
+
"hashes": [
|
|
1776
|
+
{
|
|
1777
|
+
"alg": "SHA-256",
|
|
1778
|
+
"content": "08c8b7d862ae0ddcd72116462458b71d3fe29b09cbaf08fa6a824e22ad6985c8"
|
|
1779
|
+
}
|
|
1780
|
+
]
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
"type": "file",
|
|
1784
|
+
"name": "tests/unit/autocommit-deletion.test.js",
|
|
1785
|
+
"hashes": [
|
|
1786
|
+
{
|
|
1787
|
+
"alg": "SHA-256",
|
|
1788
|
+
"content": "87ebe50e164cfa3aeda3d4f04e6b6aa98ab8af44711cbeb94252d770c07ad8ad"
|
|
1789
|
+
}
|
|
1790
|
+
]
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"type": "file",
|
|
1794
|
+
"name": "tests/unit/check-ports.test.js",
|
|
1795
|
+
"hashes": [
|
|
1796
|
+
{
|
|
1797
|
+
"alg": "SHA-256",
|
|
1798
|
+
"content": "72d9eeaa8c47d83fba867722f4b8efc8d079e2d9649e1a20abff46571c2f6f15"
|
|
1799
|
+
}
|
|
1800
|
+
]
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
"type": "file",
|
|
1804
|
+
"name": "tests/unit/db-port-rule.test.js",
|
|
1805
|
+
"hashes": [
|
|
1806
|
+
{
|
|
1807
|
+
"alg": "SHA-256",
|
|
1808
|
+
"content": "a97c913ccba8da16f7b8ef3094cac4ba8b499df2d644b3094c58945306d98c09"
|
|
1809
|
+
}
|
|
1810
|
+
]
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
"type": "file",
|
|
1814
|
+
"name": "tests/unit/detect-parse-anchor.test.js",
|
|
1815
|
+
"hashes": [
|
|
1816
|
+
{
|
|
1817
|
+
"alg": "SHA-256",
|
|
1818
|
+
"content": "ecfa57bfcb34e12081009d0bdf4be83a6eab7a8b7a6a0dc27c1cb02ae5561be0"
|
|
1819
|
+
}
|
|
1820
|
+
]
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"type": "file",
|
|
1824
|
+
"name": "tests/unit/external-dependency-check.test.js",
|
|
1825
|
+
"hashes": [
|
|
1826
|
+
{
|
|
1827
|
+
"alg": "SHA-256",
|
|
1828
|
+
"content": "d85109f8e86648d61fc17d0128e9d4881950a70641c246e667d7e54ffc1f0273"
|
|
1829
|
+
}
|
|
1830
|
+
]
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"type": "file",
|
|
1834
|
+
"name": "tests/unit/growth-module-b2b-gate.test.js",
|
|
1835
|
+
"hashes": [
|
|
1836
|
+
{
|
|
1837
|
+
"alg": "SHA-256",
|
|
1838
|
+
"content": "7bb5b39a637becbea9813744a5d649b19c6bd8a9b18045c971bcfd842852ea84"
|
|
1839
|
+
}
|
|
1840
|
+
]
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
"type": "file",
|
|
1844
|
+
"name": "tests/unit/hooks-project-anchored.test.js",
|
|
1845
|
+
"hashes": [
|
|
1846
|
+
{
|
|
1847
|
+
"alg": "SHA-256",
|
|
1848
|
+
"content": "2fa5b44982d72701d7a8486ac24ee3a91c6fa6123ef7303a0e065bf1e60987d7"
|
|
1849
|
+
}
|
|
1850
|
+
]
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
"type": "file",
|
|
1854
|
+
"name": "tests/unit/hooks-report-failures.test.js",
|
|
1855
|
+
"hashes": [
|
|
1856
|
+
{
|
|
1857
|
+
"alg": "SHA-256",
|
|
1858
|
+
"content": "35d3fca74c22e1bc88b6fbb25f172b66a21561a947e2b6e90a366d5a854376b8"
|
|
1859
|
+
}
|
|
1860
|
+
]
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"type": "file",
|
|
1864
|
+
"name": "tests/unit/pipeline-file-ownership.test.js",
|
|
1865
|
+
"hashes": [
|
|
1866
|
+
{
|
|
1867
|
+
"alg": "SHA-256",
|
|
1868
|
+
"content": "dd5b6e2ddb3078fb5ccafed6c55a6079bbd20d73fd5c2dacbb988263ceeda806"
|
|
1869
|
+
}
|
|
1870
|
+
]
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
"type": "file",
|
|
1874
|
+
"name": "tests/unit/roadmap-one-schema.test.js",
|
|
1875
|
+
"hashes": [
|
|
1876
|
+
{
|
|
1877
|
+
"alg": "SHA-256",
|
|
1878
|
+
"content": "3e7ac9dbc9796a791fc95c43b4346c6da2455f3c0ace45bbc440502c5957d3dc"
|
|
1879
|
+
}
|
|
1880
|
+
]
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
"type": "file",
|
|
1884
|
+
"name": "tests/unit/sparc-reconciliation.test.js",
|
|
1885
|
+
"hashes": [
|
|
1886
|
+
{
|
|
1887
|
+
"alg": "SHA-256",
|
|
1888
|
+
"content": "4020c623cb351d42b3b184d23194d48cf04e4a3ce8d95ff96c4261ade75632c9"
|
|
1889
|
+
}
|
|
1890
|
+
]
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
"type": "file",
|
|
1894
|
+
"name": "tests/unit/spec-pseudocode-traceability.test.js",
|
|
1895
|
+
"hashes": [
|
|
1896
|
+
{
|
|
1897
|
+
"alg": "SHA-256",
|
|
1898
|
+
"content": "fc01a561458f35e789a6d22ce3def23f3553493ba9f06493666306c603fa3c8c"
|
|
1899
|
+
}
|
|
1900
|
+
]
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
"type": "file",
|
|
1904
|
+
"name": "tests/unit/statusline-honest-labels.test.js",
|
|
1905
|
+
"hashes": [
|
|
1906
|
+
{
|
|
1907
|
+
"alg": "SHA-256",
|
|
1908
|
+
"content": "3188892491df4133566c20fc336b8d5ceedac7e14c7053088be2e3bee3e10594"
|
|
1909
|
+
}
|
|
1910
|
+
]
|
|
1911
|
+
},
|
|
1912
|
+
{
|
|
1913
|
+
"type": "file",
|
|
1914
|
+
"name": "tests/unit/statusline-two-roots.test.js",
|
|
1915
|
+
"hashes": [
|
|
1916
|
+
{
|
|
1917
|
+
"alg": "SHA-256",
|
|
1918
|
+
"content": "73eb6c542058b3969e97ac0fb7f363e5b2d396bd5328b4cb186fba102aa3fd01"
|
|
1919
|
+
}
|
|
1920
|
+
]
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
"type": "file",
|
|
1924
|
+
"name": "tests/unit/sync-templates-guard.test.js",
|
|
1925
|
+
"hashes": [
|
|
1926
|
+
{
|
|
1927
|
+
"alg": "SHA-256",
|
|
1928
|
+
"content": "75e8e0d0d2dfc16f14c586d399b5c9c075cc3a0494c558fe39d8528516185cfe"
|
|
1669
1929
|
}
|
|
1670
1930
|
]
|
|
1671
1931
|
},
|
|
@@ -1675,7 +1935,17 @@
|
|
|
1675
1935
|
"hashes": [
|
|
1676
1936
|
{
|
|
1677
1937
|
"alg": "SHA-256",
|
|
1678
|
-
"content": "
|
|
1938
|
+
"content": "2ccc68f9a91d188d56ebad77c4a64653cc5ff7aec093a739eb707774a37e1732"
|
|
1939
|
+
}
|
|
1940
|
+
]
|
|
1941
|
+
},
|
|
1942
|
+
{
|
|
1943
|
+
"type": "file",
|
|
1944
|
+
"name": "tests/unit/validation-gate-teeth.test.js",
|
|
1945
|
+
"hashes": [
|
|
1946
|
+
{
|
|
1947
|
+
"alg": "SHA-256",
|
|
1948
|
+
"content": "d4f42a26b67b2fa1dfa8db9984c301a7d7e91657e5e2cdabb1bab307c766138d"
|
|
1679
1949
|
}
|
|
1680
1950
|
]
|
|
1681
1951
|
}
|