@dzhechkov/p-replicator 1.12.0 → 1.13.1
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 +225 -61
- package/CHANGELOG.md +148 -1
- package/LICENSE +21 -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 +1 -1
- package/README/eng/README.md +2 -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 +2 -1
- package/README/ru/html/index.html +8 -8
- package/README.md +132 -9
- package/bin/cli.js +0 -0
- package/package.json +10 -11
- package/sbom.json +470 -60
- package/scripts/check-pipeline-gaps.sh +0 -0
- package/src/commands/init.js +1 -1
- package/src/rule-components.json +5 -1
- package/src/utils.js +32 -3
- package/templates/.claude/agents/product-discoverer.md +38 -0
- package/templates/.claude/agents/replicate-coordinator.md +11 -1
- package/templates/.claude/commands/feature.md +29 -5
- package/templates/.claude/commands/go.md +6 -8
- package/templates/.claude/commands/harvest.md +5 -7
- package/templates/.claude/commands/replicate.md +169 -44
- package/templates/.claude/commands/start.md +28 -7
- package/templates/.claude/hooks/capture-source-path.cjs +795 -0
- package/templates/.claude/hooks/check-canon.cjs +493 -0
- package/templates/.claude/hooks/check-embed-contract.cjs +374 -0
- package/templates/.claude/hooks/check-external-deps.cjs +288 -0
- package/templates/.claude/hooks/check-file-ownership.cjs +424 -0
- package/templates/.claude/hooks/check-handoff-manifest.cjs +367 -0
- package/templates/.claude/hooks/check-job-contract.cjs +501 -0
- package/templates/.claude/hooks/check-look-origin.cjs +240 -0
- package/templates/.claude/hooks/check-look-trace.cjs +385 -0
- package/templates/.claude/hooks/check-metric-source.cjs +296 -0
- package/templates/.claude/hooks/check-model-cost.cjs +470 -0
- package/templates/.claude/hooks/check-ports.cjs +27 -6
- package/templates/.claude/hooks/check-source-version.cjs +312 -0
- package/templates/.claude/hooks/check-swarm-receipts.cjs +197 -0
- package/templates/.claude/hooks/check-webhook-contract.cjs +535 -0
- package/templates/.claude/hooks/statusline.cjs +2 -2
- package/templates/.claude/rules/embeddable-widget.md +73 -0
- package/templates/.claude/rules/feature-lifecycle.md +5 -6
- package/templates/.claude/rules/incoming-webhooks.md +99 -0
- package/templates/.claude/rules/long-running-job.md +73 -0
- package/templates/.claude/rules/model-call-cost.md +85 -0
- package/templates/.claude/rules/replicate-pipeline.md +121 -52
- package/templates/.claude/skills/brutal-honesty-review/SKILL.md +9 -0
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/SKILL.md +4 -0
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/modules/03-generate-p0.md +46 -1
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/modules/04-generate-p1.md +7 -1
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/modules/06-package-deliver.md +20 -2
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/claude-md-strategy.md +7 -0
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/automation-commands.md +17 -0
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/feature-lifecycle-ent.md +43 -5
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/feature-lifecycle.md +43 -7
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/start-command.md +19 -1
- package/templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/swarm-file-evidence.md +151 -0
- package/templates/.claude/skills/goap-research-ed25519/SKILL.md +37 -22
- package/templates/.claude/skills/goap-research-ed25519/references/negative-results.md +94 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/check_report_evidence.py +368 -4
- package/templates/.claude/skills/goap-research-ed25519/scripts/ed25519_verifier.py +122 -5
- package/templates/.claude/skills/goap-research-ed25519/scripts/evidence_fetch.py +33 -16
- package/templates/.claude/skills/goap-research-ed25519/scripts/quote_provenance.py +342 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_ed25519_verifier.py +60 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_evidence_provenance.py +139 -6
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_quote_provenance.py +274 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/test_suite_completeness.py +2 -1
- package/templates/.claude/skills/knowledge-extractor/SKILL.md +4 -0
- package/templates/.claude/skills/pipeline-forge/SKILL.md +18 -23
- package/templates/.claude/skills/pipeline-forge/examples/replicate-analysis.md +7 -2
- package/templates/.claude/skills/pipeline-forge/references/patterns-catalog.md +19 -1
- package/templates/.claude/skills/pipeline-forge/references/self-extracted-patterns.md +17 -6
- package/templates/.claude/skills/pipeline-forge/references/skill-anatomy.md +0 -1
- package/templates/.claude/skills/reverse-engineering-unicorn/modules/025-cjm-prototype.md +21 -1
- package/templates/.claude/skills/sparc-prd-mini/SKILL.md +173 -725
- package/tests/snapshot/baseline.json +60 -38
- package/tests/unit/capture-source-path.test.js +492 -0
- package/tests/unit/check-canon.test.js +403 -0
- package/tests/unit/check-embed-contract.test.js +422 -0
- package/tests/unit/check-external-deps.test.js +363 -0
- package/tests/unit/check-file-ownership.test.js +388 -0
- package/tests/unit/check-handoff-manifest.test.js +410 -0
- package/tests/unit/check-job-contract.test.js +514 -0
- package/tests/unit/check-look-origin.test.js +180 -0
- package/tests/unit/check-look-trace.test.js +420 -0
- package/tests/unit/check-metric-source.test.js +325 -0
- package/tests/unit/check-model-cost.test.js +425 -0
- package/tests/unit/check-ports.test.js +46 -2
- package/tests/unit/check-source-version.test.js +344 -0
- package/tests/unit/check-swarm-receipts.test.js +231 -0
- package/tests/unit/check-webhook-contract.test.js +536 -0
- package/tests/unit/db-port-rule.test.js +8 -2
- package/tests/unit/detection-ladder-registry.test.js +2 -2
- package/tests/unit/generator-swarm-contract.test.js +287 -0
- package/tests/unit/guard-honest-input-meta.test.js +64 -0
- package/tests/unit/honest-failure-rules.test.js +91 -9
- package/tests/unit/look-phase-contract.test.js +231 -0
- package/tests/unit/negative-conclusion-gate.test.js +300 -0
- package/tests/unit/quote-provenance.test.js +122 -0
- package/tests/unit/utils.test.js +40 -3
package/sbom.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"hashes": [
|
|
16
16
|
{
|
|
17
17
|
"alg": "SHA-256",
|
|
18
|
-
"content": "
|
|
18
|
+
"content": "f22379706da56c3a7c1741011d8bf69b7a2dd332825b4b2846aa4f86c16f8cee"
|
|
19
19
|
}
|
|
20
20
|
]
|
|
21
21
|
},
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"hashes": [
|
|
46
46
|
{
|
|
47
47
|
"alg": "SHA-256",
|
|
48
|
-
"content": "
|
|
48
|
+
"content": "0e75900199f1cb58a67371b152904ac27b87a3019e25b472556bf366e3e8df7e"
|
|
49
49
|
}
|
|
50
50
|
]
|
|
51
51
|
},
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"hashes": [
|
|
56
56
|
{
|
|
57
57
|
"alg": "SHA-256",
|
|
58
|
-
"content": "
|
|
58
|
+
"content": "103d3f0520f79080445d07623b70195d7b34cae6d875eb60978aec254aca5c88"
|
|
59
59
|
}
|
|
60
60
|
]
|
|
61
61
|
},
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"hashes": [
|
|
66
66
|
{
|
|
67
67
|
"alg": "SHA-256",
|
|
68
|
-
"content": "
|
|
68
|
+
"content": "4152051b8fa79a93e570d49826dc08f17dde3123d4045c80b453b9f1ec9d9e91"
|
|
69
69
|
}
|
|
70
70
|
]
|
|
71
71
|
},
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"hashes": [
|
|
76
76
|
{
|
|
77
77
|
"alg": "SHA-256",
|
|
78
|
-
"content": "
|
|
78
|
+
"content": "1152b03bb66ef3e980beff1d2a41477867acb0c0e11e3e4069f564d50093119a"
|
|
79
79
|
}
|
|
80
80
|
]
|
|
81
81
|
},
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"hashes": [
|
|
86
86
|
{
|
|
87
87
|
"alg": "SHA-256",
|
|
88
|
-
"content": "
|
|
88
|
+
"content": "c5d11e837854cf761926d05d0bcb590c64b61b74de1005d0b5a93b0d42bcf369"
|
|
89
89
|
}
|
|
90
90
|
]
|
|
91
91
|
},
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"hashes": [
|
|
106
106
|
{
|
|
107
107
|
"alg": "SHA-256",
|
|
108
|
-
"content": "
|
|
108
|
+
"content": "712ac4a18cf254f044efc2c3167aa70c6cc46543836bf618343029aa0d34cf83"
|
|
109
109
|
}
|
|
110
110
|
]
|
|
111
111
|
},
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"hashes": [
|
|
136
136
|
{
|
|
137
137
|
"alg": "SHA-256",
|
|
138
|
-
"content": "
|
|
138
|
+
"content": "0257c2fb41c64b8eb55adc224542db9cf97196c547e30fd9fbb88488055e9bc1"
|
|
139
139
|
}
|
|
140
140
|
]
|
|
141
141
|
},
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"hashes": [
|
|
146
146
|
{
|
|
147
147
|
"alg": "SHA-256",
|
|
148
|
-
"content": "
|
|
148
|
+
"content": "58c96be1b008f40c97fda0d8424c9323d66e67576756c359a66efa3ae73f9a82"
|
|
149
149
|
}
|
|
150
150
|
]
|
|
151
151
|
},
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
"hashes": [
|
|
156
156
|
{
|
|
157
157
|
"alg": "SHA-256",
|
|
158
|
-
"content": "
|
|
158
|
+
"content": "afee9ea3f01ff3f673536d529d539ca07303c2226bd70a2b02870022644ce629"
|
|
159
159
|
}
|
|
160
160
|
]
|
|
161
161
|
},
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"hashes": [
|
|
166
166
|
{
|
|
167
167
|
"alg": "SHA-256",
|
|
168
|
-
"content": "
|
|
168
|
+
"content": "a4d3bcdf5f520848d456ecbf34d94562777d32b5a7081ff665c9e735d6d6eb22"
|
|
169
169
|
}
|
|
170
170
|
]
|
|
171
171
|
},
|
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
"hashes": [
|
|
186
186
|
{
|
|
187
187
|
"alg": "SHA-256",
|
|
188
|
-
"content": "
|
|
188
|
+
"content": "e7c5318ebca92878234a908c18eec18a43283ab7c694124e5a3762be36b307a1"
|
|
189
189
|
}
|
|
190
190
|
]
|
|
191
191
|
},
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"hashes": [
|
|
216
216
|
{
|
|
217
217
|
"alg": "SHA-256",
|
|
218
|
-
"content": "
|
|
218
|
+
"content": "0c8f8eb04e0e7e4c8b5c80aa7919331ad3d0d327155bc35e63694c9f0ef356f9"
|
|
219
219
|
}
|
|
220
220
|
]
|
|
221
221
|
},
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"hashes": [
|
|
236
236
|
{
|
|
237
237
|
"alg": "SHA-256",
|
|
238
|
-
"content": "
|
|
238
|
+
"content": "b11fe5eecc2cae1ad8c4b384274a10a838190f8fc033a4baba343f4abf0c4a4a"
|
|
239
239
|
}
|
|
240
240
|
]
|
|
241
241
|
},
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
281
|
"name": "dz:canonical-json-sha256-v2",
|
|
282
|
-
"value": "
|
|
282
|
+
"value": "2bacb5f426c3873d186bf142e95cb72d81a098c35f091a54b80d3d86e97fc1fb"
|
|
283
283
|
}
|
|
284
284
|
]
|
|
285
285
|
},
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
"hashes": [
|
|
320
320
|
{
|
|
321
321
|
"alg": "SHA-256",
|
|
322
|
-
"content": "
|
|
322
|
+
"content": "91c2407037dba239f167d1c75c96334f3971ceb00ef4308d363113e21fb92c05"
|
|
323
323
|
}
|
|
324
324
|
]
|
|
325
325
|
},
|
|
@@ -369,7 +369,7 @@
|
|
|
369
369
|
"hashes": [
|
|
370
370
|
{
|
|
371
371
|
"alg": "SHA-256",
|
|
372
|
-
"content": "
|
|
372
|
+
"content": "33bc351c7edb49b7b1f2398b8015150efd1f43abbe5554bc7f39bf6ebd7e1b49"
|
|
373
373
|
}
|
|
374
374
|
]
|
|
375
375
|
},
|
|
@@ -379,7 +379,7 @@
|
|
|
379
379
|
"hashes": [
|
|
380
380
|
{
|
|
381
381
|
"alg": "SHA-256",
|
|
382
|
-
"content": "
|
|
382
|
+
"content": "2ab6ff0a3e15f9a9d5787077628e19936c3c9735b1549b1233ec4a331c2fd3f7"
|
|
383
383
|
}
|
|
384
384
|
]
|
|
385
385
|
},
|
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
"hashes": [
|
|
410
410
|
{
|
|
411
411
|
"alg": "SHA-256",
|
|
412
|
-
"content": "
|
|
412
|
+
"content": "be7d707a5fc1ee2eb18dda9e904ffbdc0be21c874b3a721349fd9e840bf77bc8"
|
|
413
413
|
}
|
|
414
414
|
]
|
|
415
415
|
},
|
|
@@ -419,7 +419,7 @@
|
|
|
419
419
|
"hashes": [
|
|
420
420
|
{
|
|
421
421
|
"alg": "SHA-256",
|
|
422
|
-
"content": "
|
|
422
|
+
"content": "bbfe18a7642954f357db08e849349fee02681e2f0ffa036539c45d98dbaba960"
|
|
423
423
|
}
|
|
424
424
|
]
|
|
425
425
|
},
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
"hashes": [
|
|
450
450
|
{
|
|
451
451
|
"alg": "SHA-256",
|
|
452
|
-
"content": "
|
|
452
|
+
"content": "b2bb83fce09f823a36c943f397d63ff9d9406da1dadc055c4f187f8ff964d1ce"
|
|
453
453
|
}
|
|
454
454
|
]
|
|
455
455
|
},
|
|
@@ -459,7 +459,7 @@
|
|
|
459
459
|
"hashes": [
|
|
460
460
|
{
|
|
461
461
|
"alg": "SHA-256",
|
|
462
|
-
"content": "
|
|
462
|
+
"content": "e7337012dccaab09e0cf27a696ebff14bea4626fb5167538af7da2f5cc7b597a"
|
|
463
463
|
}
|
|
464
464
|
]
|
|
465
465
|
},
|
|
@@ -469,7 +469,7 @@
|
|
|
469
469
|
"hashes": [
|
|
470
470
|
{
|
|
471
471
|
"alg": "SHA-256",
|
|
472
|
-
"content": "
|
|
472
|
+
"content": "ed6355c102af0f2c62bf6714fce63157e0cb1c1ee85bc32c96f137b8b0c0e1ba"
|
|
473
473
|
}
|
|
474
474
|
]
|
|
475
475
|
},
|
|
@@ -509,7 +509,7 @@
|
|
|
509
509
|
"hashes": [
|
|
510
510
|
{
|
|
511
511
|
"alg": "SHA-256",
|
|
512
|
-
"content": "
|
|
512
|
+
"content": "165d7b3c0606be6817893b53cbfc5ca55c7b81cbe35cbdd0dccf8679d702e81a"
|
|
513
513
|
}
|
|
514
514
|
]
|
|
515
515
|
},
|
|
@@ -529,7 +529,7 @@
|
|
|
529
529
|
"hashes": [
|
|
530
530
|
{
|
|
531
531
|
"alg": "SHA-256",
|
|
532
|
-
"content": "
|
|
532
|
+
"content": "fb8a7762f4073b9e8689dec3830680907efb9ec68bb2faa39b8a547793d9a078"
|
|
533
533
|
}
|
|
534
534
|
]
|
|
535
535
|
},
|
|
@@ -563,6 +563,26 @@
|
|
|
563
563
|
}
|
|
564
564
|
]
|
|
565
565
|
},
|
|
566
|
+
{
|
|
567
|
+
"type": "file",
|
|
568
|
+
"name": "templates/.claude/hooks/capture-source-path.cjs",
|
|
569
|
+
"hashes": [
|
|
570
|
+
{
|
|
571
|
+
"alg": "SHA-256",
|
|
572
|
+
"content": "bed92548c3313d69110b6cc06e6b2b858d9d548b8c18c82750ae90d514212bf2"
|
|
573
|
+
}
|
|
574
|
+
]
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"type": "file",
|
|
578
|
+
"name": "templates/.claude/hooks/check-canon.cjs",
|
|
579
|
+
"hashes": [
|
|
580
|
+
{
|
|
581
|
+
"alg": "SHA-256",
|
|
582
|
+
"content": "99e6bff9b0078eb2ec23f7df98b7ac06c894f9018eba4a8c358e8f92e5ec7b06"
|
|
583
|
+
}
|
|
584
|
+
]
|
|
585
|
+
},
|
|
566
586
|
{
|
|
567
587
|
"type": "file",
|
|
568
588
|
"name": "templates/.claude/hooks/check-docs-complete.cjs",
|
|
@@ -573,6 +593,36 @@
|
|
|
573
593
|
}
|
|
574
594
|
]
|
|
575
595
|
},
|
|
596
|
+
{
|
|
597
|
+
"type": "file",
|
|
598
|
+
"name": "templates/.claude/hooks/check-embed-contract.cjs",
|
|
599
|
+
"hashes": [
|
|
600
|
+
{
|
|
601
|
+
"alg": "SHA-256",
|
|
602
|
+
"content": "9e963a07c12350b760264133021e75fb699439b1f060332e1ccdd962b645b4a0"
|
|
603
|
+
}
|
|
604
|
+
]
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"type": "file",
|
|
608
|
+
"name": "templates/.claude/hooks/check-external-deps.cjs",
|
|
609
|
+
"hashes": [
|
|
610
|
+
{
|
|
611
|
+
"alg": "SHA-256",
|
|
612
|
+
"content": "7bce49a744170a3193edf4b2238bcc5a6f1b0efa29333760a52e4fd145739d18"
|
|
613
|
+
}
|
|
614
|
+
]
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"type": "file",
|
|
618
|
+
"name": "templates/.claude/hooks/check-file-ownership.cjs",
|
|
619
|
+
"hashes": [
|
|
620
|
+
{
|
|
621
|
+
"alg": "SHA-256",
|
|
622
|
+
"content": "c6273e7b0817d15e375586131924a08095722aff7d0e6a6a04c857a480788e1f"
|
|
623
|
+
}
|
|
624
|
+
]
|
|
625
|
+
},
|
|
576
626
|
{
|
|
577
627
|
"type": "file",
|
|
578
628
|
"name": "templates/.claude/hooks/check-growth-trace.cjs",
|
|
@@ -583,13 +633,103 @@
|
|
|
583
633
|
}
|
|
584
634
|
]
|
|
585
635
|
},
|
|
636
|
+
{
|
|
637
|
+
"type": "file",
|
|
638
|
+
"name": "templates/.claude/hooks/check-handoff-manifest.cjs",
|
|
639
|
+
"hashes": [
|
|
640
|
+
{
|
|
641
|
+
"alg": "SHA-256",
|
|
642
|
+
"content": "768cd0befc0da3adcddcded86ed6d1bd1ac4f25afb563ae578002060a54968cf"
|
|
643
|
+
}
|
|
644
|
+
]
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"type": "file",
|
|
648
|
+
"name": "templates/.claude/hooks/check-job-contract.cjs",
|
|
649
|
+
"hashes": [
|
|
650
|
+
{
|
|
651
|
+
"alg": "SHA-256",
|
|
652
|
+
"content": "48676c52eba3d0dd01e8c9764a2becfdcc8112423dc9711db7c18a8c2a5870a7"
|
|
653
|
+
}
|
|
654
|
+
]
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"type": "file",
|
|
658
|
+
"name": "templates/.claude/hooks/check-look-origin.cjs",
|
|
659
|
+
"hashes": [
|
|
660
|
+
{
|
|
661
|
+
"alg": "SHA-256",
|
|
662
|
+
"content": "ebde0d8287601aecd8024edb0647f20eeaf8130f3ef920bb6a47b15aef297213"
|
|
663
|
+
}
|
|
664
|
+
]
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"type": "file",
|
|
668
|
+
"name": "templates/.claude/hooks/check-look-trace.cjs",
|
|
669
|
+
"hashes": [
|
|
670
|
+
{
|
|
671
|
+
"alg": "SHA-256",
|
|
672
|
+
"content": "2952d8547feff344ec18289e1eaf5d067ada2af6e13541e25e73a8dfd7caf2bc"
|
|
673
|
+
}
|
|
674
|
+
]
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"type": "file",
|
|
678
|
+
"name": "templates/.claude/hooks/check-metric-source.cjs",
|
|
679
|
+
"hashes": [
|
|
680
|
+
{
|
|
681
|
+
"alg": "SHA-256",
|
|
682
|
+
"content": "315deda6354f91737165786bdb22b799517bd80530e5b4584593c4f4df84c56e"
|
|
683
|
+
}
|
|
684
|
+
]
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"type": "file",
|
|
688
|
+
"name": "templates/.claude/hooks/check-model-cost.cjs",
|
|
689
|
+
"hashes": [
|
|
690
|
+
{
|
|
691
|
+
"alg": "SHA-256",
|
|
692
|
+
"content": "425bda547661e0b31f313d6bb371db4d303cc83a43189fb4dc981e1fb43fac06"
|
|
693
|
+
}
|
|
694
|
+
]
|
|
695
|
+
},
|
|
586
696
|
{
|
|
587
697
|
"type": "file",
|
|
588
698
|
"name": "templates/.claude/hooks/check-ports.cjs",
|
|
589
699
|
"hashes": [
|
|
590
700
|
{
|
|
591
701
|
"alg": "SHA-256",
|
|
592
|
-
"content": "
|
|
702
|
+
"content": "2b458cf78367ec7752174f08aa40109b3b6217e405f99a46e18e75e4b69bc87e"
|
|
703
|
+
}
|
|
704
|
+
]
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"type": "file",
|
|
708
|
+
"name": "templates/.claude/hooks/check-source-version.cjs",
|
|
709
|
+
"hashes": [
|
|
710
|
+
{
|
|
711
|
+
"alg": "SHA-256",
|
|
712
|
+
"content": "b9dc2eee7403119481ea2c49a94581613f2c134685448736c2734948a638a010"
|
|
713
|
+
}
|
|
714
|
+
]
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"type": "file",
|
|
718
|
+
"name": "templates/.claude/hooks/check-swarm-receipts.cjs",
|
|
719
|
+
"hashes": [
|
|
720
|
+
{
|
|
721
|
+
"alg": "SHA-256",
|
|
722
|
+
"content": "9fa83d78b085d8eea28958b4722999ba44a7bd47c98fe5a96127fc5b5230b40c"
|
|
723
|
+
}
|
|
724
|
+
]
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"type": "file",
|
|
728
|
+
"name": "templates/.claude/hooks/check-webhook-contract.cjs",
|
|
729
|
+
"hashes": [
|
|
730
|
+
{
|
|
731
|
+
"alg": "SHA-256",
|
|
732
|
+
"content": "dfa27bd24cee8868fd60be5d24749c206f303fe4afcc1e72024d526324562a39"
|
|
593
733
|
}
|
|
594
734
|
]
|
|
595
735
|
},
|
|
@@ -619,7 +759,7 @@
|
|
|
619
759
|
"hashes": [
|
|
620
760
|
{
|
|
621
761
|
"alg": "SHA-256",
|
|
622
|
-
"content": "
|
|
762
|
+
"content": "6e30ccdcdbe3c36896b85821f8986077a0e4065fdff3b103d669fac7ad44670e"
|
|
623
763
|
}
|
|
624
764
|
]
|
|
625
765
|
},
|
|
@@ -653,13 +793,23 @@
|
|
|
653
793
|
}
|
|
654
794
|
]
|
|
655
795
|
},
|
|
796
|
+
{
|
|
797
|
+
"type": "file",
|
|
798
|
+
"name": "templates/.claude/rules/embeddable-widget.md",
|
|
799
|
+
"hashes": [
|
|
800
|
+
{
|
|
801
|
+
"alg": "SHA-256",
|
|
802
|
+
"content": "0159224f8e9599b67a860738bb42e3e40adf598176c48ea6c86a01c891f0f18c"
|
|
803
|
+
}
|
|
804
|
+
]
|
|
805
|
+
},
|
|
656
806
|
{
|
|
657
807
|
"type": "file",
|
|
658
808
|
"name": "templates/.claude/rules/feature-lifecycle.md",
|
|
659
809
|
"hashes": [
|
|
660
810
|
{
|
|
661
811
|
"alg": "SHA-256",
|
|
662
|
-
"content": "
|
|
812
|
+
"content": "4e926f84f244feb6824114a0624733738669c93e0508693fa2afa4e9a35c2aa3"
|
|
663
813
|
}
|
|
664
814
|
]
|
|
665
815
|
},
|
|
@@ -683,6 +833,16 @@
|
|
|
683
833
|
}
|
|
684
834
|
]
|
|
685
835
|
},
|
|
836
|
+
{
|
|
837
|
+
"type": "file",
|
|
838
|
+
"name": "templates/.claude/rules/incoming-webhooks.md",
|
|
839
|
+
"hashes": [
|
|
840
|
+
{
|
|
841
|
+
"alg": "SHA-256",
|
|
842
|
+
"content": "92f3de02814ed0610df644acf554f4b41b2bae2f9d281695e2e217a1d6558e84"
|
|
843
|
+
}
|
|
844
|
+
]
|
|
845
|
+
},
|
|
686
846
|
{
|
|
687
847
|
"type": "file",
|
|
688
848
|
"name": "templates/.claude/rules/insights-capture.md",
|
|
@@ -693,13 +853,33 @@
|
|
|
693
853
|
}
|
|
694
854
|
]
|
|
695
855
|
},
|
|
856
|
+
{
|
|
857
|
+
"type": "file",
|
|
858
|
+
"name": "templates/.claude/rules/long-running-job.md",
|
|
859
|
+
"hashes": [
|
|
860
|
+
{
|
|
861
|
+
"alg": "SHA-256",
|
|
862
|
+
"content": "e6bd0efff89338998d34440a94dc9288cf7bcf790b27bcaa51b83d43f57942ed"
|
|
863
|
+
}
|
|
864
|
+
]
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"type": "file",
|
|
868
|
+
"name": "templates/.claude/rules/model-call-cost.md",
|
|
869
|
+
"hashes": [
|
|
870
|
+
{
|
|
871
|
+
"alg": "SHA-256",
|
|
872
|
+
"content": "26c3b20ac3ed7f9cf6deb5e94302ade87f9e3e51fffca7ac2377ff31bc144f34"
|
|
873
|
+
}
|
|
874
|
+
]
|
|
875
|
+
},
|
|
696
876
|
{
|
|
697
877
|
"type": "file",
|
|
698
878
|
"name": "templates/.claude/rules/replicate-pipeline.md",
|
|
699
879
|
"hashes": [
|
|
700
880
|
{
|
|
701
881
|
"alg": "SHA-256",
|
|
702
|
-
"content": "
|
|
882
|
+
"content": "879ca7b6ca9039c7b94f6b9df2eadca9ec5fd0f97da5f468d5ee723f3d47f438"
|
|
703
883
|
}
|
|
704
884
|
]
|
|
705
885
|
},
|
|
@@ -749,7 +929,7 @@
|
|
|
749
929
|
"hashes": [
|
|
750
930
|
{
|
|
751
931
|
"alg": "SHA-256",
|
|
752
|
-
"content": "
|
|
932
|
+
"content": "f49957f8bac6b55ab49bb953867b1aa3d6d658f4a1d24eddec5b05a71a07da54"
|
|
753
933
|
}
|
|
754
934
|
]
|
|
755
935
|
},
|
|
@@ -829,7 +1009,7 @@
|
|
|
829
1009
|
"hashes": [
|
|
830
1010
|
{
|
|
831
1011
|
"alg": "SHA-256",
|
|
832
|
-
"content": "
|
|
1012
|
+
"content": "ef4f8901f49f7fbb7db0c2994973c42840e3e909f1585c70a4f7442752b41265"
|
|
833
1013
|
}
|
|
834
1014
|
]
|
|
835
1015
|
},
|
|
@@ -859,7 +1039,7 @@
|
|
|
859
1039
|
"hashes": [
|
|
860
1040
|
{
|
|
861
1041
|
"alg": "SHA-256",
|
|
862
|
-
"content": "
|
|
1042
|
+
"content": "db63c7c7e1277c0b0c51a1f18986abe0257d079c20938416b673effee5edecaf"
|
|
863
1043
|
}
|
|
864
1044
|
]
|
|
865
1045
|
},
|
|
@@ -869,7 +1049,7 @@
|
|
|
869
1049
|
"hashes": [
|
|
870
1050
|
{
|
|
871
1051
|
"alg": "SHA-256",
|
|
872
|
-
"content": "
|
|
1052
|
+
"content": "d40062dffa70aede07dd1411a1f7cff83bb33aa45746d6e65eac8a7016ce3a33"
|
|
873
1053
|
}
|
|
874
1054
|
]
|
|
875
1055
|
},
|
|
@@ -889,7 +1069,7 @@
|
|
|
889
1069
|
"hashes": [
|
|
890
1070
|
{
|
|
891
1071
|
"alg": "SHA-256",
|
|
892
|
-
"content": "
|
|
1072
|
+
"content": "b1dbb09e6bf5bef980517def86032288c53a87a367c7d7d554fa2591a585b2b8"
|
|
893
1073
|
}
|
|
894
1074
|
]
|
|
895
1075
|
},
|
|
@@ -939,7 +1119,7 @@
|
|
|
939
1119
|
"hashes": [
|
|
940
1120
|
{
|
|
941
1121
|
"alg": "SHA-256",
|
|
942
|
-
"content": "
|
|
1122
|
+
"content": "14366a8e645efdea181ccefb20ebb3f157ef9b723fa56f359cdcc983624b5131"
|
|
943
1123
|
}
|
|
944
1124
|
]
|
|
945
1125
|
},
|
|
@@ -989,7 +1169,7 @@
|
|
|
989
1169
|
"hashes": [
|
|
990
1170
|
{
|
|
991
1171
|
"alg": "SHA-256",
|
|
992
|
-
"content": "
|
|
1172
|
+
"content": "9ce3db4c3c5b9696a312152067c1869b1f421ce77fbcfdca83edaa797c5caf3f"
|
|
993
1173
|
}
|
|
994
1174
|
]
|
|
995
1175
|
},
|
|
@@ -1039,7 +1219,7 @@
|
|
|
1039
1219
|
"hashes": [
|
|
1040
1220
|
{
|
|
1041
1221
|
"alg": "SHA-256",
|
|
1042
|
-
"content": "
|
|
1222
|
+
"content": "7a4be2ea28b973470d3c71fb083db7042ee6a2ee0f3564c7caa7ecb425e0ae09"
|
|
1043
1223
|
}
|
|
1044
1224
|
]
|
|
1045
1225
|
},
|
|
@@ -1049,7 +1229,7 @@
|
|
|
1049
1229
|
"hashes": [
|
|
1050
1230
|
{
|
|
1051
1231
|
"alg": "SHA-256",
|
|
1052
|
-
"content": "
|
|
1232
|
+
"content": "e734df95afd0f10aa9abc4e696b93d1701d393664a44411c4c78a11dab5c14cf"
|
|
1053
1233
|
}
|
|
1054
1234
|
]
|
|
1055
1235
|
},
|
|
@@ -1089,7 +1269,17 @@
|
|
|
1089
1269
|
"hashes": [
|
|
1090
1270
|
{
|
|
1091
1271
|
"alg": "SHA-256",
|
|
1092
|
-
"content": "
|
|
1272
|
+
"content": "68b5f933f9d720de3bf2054154bb4316ba4d6dd02b31dc866d73fdf90927b46a"
|
|
1273
|
+
}
|
|
1274
|
+
]
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"type": "file",
|
|
1278
|
+
"name": "templates/.claude/skills/cc-toolkit-generator-enhanced/references/templates/swarm-file-evidence.md",
|
|
1279
|
+
"hashes": [
|
|
1280
|
+
{
|
|
1281
|
+
"alg": "SHA-256",
|
|
1282
|
+
"content": "661f24e764d6eababcf65d7bfb4c66cca90541c821ade4986ade46423d69ece6"
|
|
1093
1283
|
}
|
|
1094
1284
|
]
|
|
1095
1285
|
},
|
|
@@ -1129,7 +1319,7 @@
|
|
|
1129
1319
|
"hashes": [
|
|
1130
1320
|
{
|
|
1131
1321
|
"alg": "SHA-256",
|
|
1132
|
-
"content": "
|
|
1322
|
+
"content": "c6503749a8bd8222d63542831c2003e16f1bc0239dd903d59a934cd2ff40d1c9"
|
|
1133
1323
|
}
|
|
1134
1324
|
]
|
|
1135
1325
|
},
|
|
@@ -1143,6 +1333,16 @@
|
|
|
1143
1333
|
}
|
|
1144
1334
|
]
|
|
1145
1335
|
},
|
|
1336
|
+
{
|
|
1337
|
+
"type": "file",
|
|
1338
|
+
"name": "templates/.claude/skills/goap-research-ed25519/references/negative-results.md",
|
|
1339
|
+
"hashes": [
|
|
1340
|
+
{
|
|
1341
|
+
"alg": "SHA-256",
|
|
1342
|
+
"content": "64bf39ca20d7d11c02c981b97f72a258a2874eafdc0a6a2935e54278c529ee5b"
|
|
1343
|
+
}
|
|
1344
|
+
]
|
|
1345
|
+
},
|
|
1146
1346
|
{
|
|
1147
1347
|
"type": "file",
|
|
1148
1348
|
"name": "templates/.claude/skills/goap-research-ed25519/references/research-actions.md",
|
|
@@ -1169,7 +1369,7 @@
|
|
|
1169
1369
|
"hashes": [
|
|
1170
1370
|
{
|
|
1171
1371
|
"alg": "SHA-256",
|
|
1172
|
-
"content": "
|
|
1372
|
+
"content": "ca663eab0fe31eeeacfbc71b4f436f516bdf118da7f1fd28fe3956b5069f27c1"
|
|
1173
1373
|
}
|
|
1174
1374
|
]
|
|
1175
1375
|
},
|
|
@@ -1179,7 +1379,7 @@
|
|
|
1179
1379
|
"hashes": [
|
|
1180
1380
|
{
|
|
1181
1381
|
"alg": "SHA-256",
|
|
1182
|
-
"content": "
|
|
1382
|
+
"content": "76ac4a9d5374002a98880e5328d84c50e85d7da06a1fb04e476805b6d9a147e4"
|
|
1183
1383
|
}
|
|
1184
1384
|
]
|
|
1185
1385
|
},
|
|
@@ -1189,7 +1389,7 @@
|
|
|
1189
1389
|
"hashes": [
|
|
1190
1390
|
{
|
|
1191
1391
|
"alg": "SHA-256",
|
|
1192
|
-
"content": "
|
|
1392
|
+
"content": "5bdc8e97e6bff7c449dca1f5643d6bb2fca1aee28a91001407dfc28cfa8a233f"
|
|
1193
1393
|
}
|
|
1194
1394
|
]
|
|
1195
1395
|
},
|
|
@@ -1253,6 +1453,16 @@
|
|
|
1253
1453
|
}
|
|
1254
1454
|
]
|
|
1255
1455
|
},
|
|
1456
|
+
{
|
|
1457
|
+
"type": "file",
|
|
1458
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/quote_provenance.py",
|
|
1459
|
+
"hashes": [
|
|
1460
|
+
{
|
|
1461
|
+
"alg": "SHA-256",
|
|
1462
|
+
"content": "c78668234c881e5f9f81899d903b573eac1d51a04c7e8bc791f356739de4f329"
|
|
1463
|
+
}
|
|
1464
|
+
]
|
|
1465
|
+
},
|
|
1256
1466
|
{
|
|
1257
1467
|
"type": "file",
|
|
1258
1468
|
"name": "templates/.claude/skills/goap-research-ed25519/scripts/risk_statement.py",
|
|
@@ -1279,7 +1489,7 @@
|
|
|
1279
1489
|
"hashes": [
|
|
1280
1490
|
{
|
|
1281
1491
|
"alg": "SHA-256",
|
|
1282
|
-
"content": "
|
|
1492
|
+
"content": "9982a8a7f1cdff4d9cab7c90aeac6470dbc445c5f726e18befd29af09e180eaf"
|
|
1283
1493
|
}
|
|
1284
1494
|
]
|
|
1285
1495
|
},
|
|
@@ -1289,7 +1499,7 @@
|
|
|
1289
1499
|
"hashes": [
|
|
1290
1500
|
{
|
|
1291
1501
|
"alg": "SHA-256",
|
|
1292
|
-
"content": "
|
|
1502
|
+
"content": "d16aca1e6c8951e081801a0ce363ad0b33fec8003e5d12d723fbd1f5c8bf4ffc"
|
|
1293
1503
|
}
|
|
1294
1504
|
]
|
|
1295
1505
|
},
|
|
@@ -1313,6 +1523,16 @@
|
|
|
1313
1523
|
}
|
|
1314
1524
|
]
|
|
1315
1525
|
},
|
|
1526
|
+
{
|
|
1527
|
+
"type": "file",
|
|
1528
|
+
"name": "templates/.claude/skills/goap-research-ed25519/scripts/test_quote_provenance.py",
|
|
1529
|
+
"hashes": [
|
|
1530
|
+
{
|
|
1531
|
+
"alg": "SHA-256",
|
|
1532
|
+
"content": "c3fb6df236b1f432d1ecdcd8acacb95e2e091b436296eef43abe183b67b90b74"
|
|
1533
|
+
}
|
|
1534
|
+
]
|
|
1535
|
+
},
|
|
1316
1536
|
{
|
|
1317
1537
|
"type": "file",
|
|
1318
1538
|
"name": "templates/.claude/skills/goap-research-ed25519/scripts/test_risk_absolute.py",
|
|
@@ -1339,7 +1559,7 @@
|
|
|
1339
1559
|
"hashes": [
|
|
1340
1560
|
{
|
|
1341
1561
|
"alg": "SHA-256",
|
|
1342
|
-
"content": "
|
|
1562
|
+
"content": "8aba19a95d380f32ce8d8dc68c5d1b8d4e6b912152bd527e3ce9d60e41be1073"
|
|
1343
1563
|
}
|
|
1344
1564
|
]
|
|
1345
1565
|
},
|
|
@@ -1349,7 +1569,7 @@
|
|
|
1349
1569
|
"hashes": [
|
|
1350
1570
|
{
|
|
1351
1571
|
"alg": "SHA-256",
|
|
1352
|
-
"content": "
|
|
1572
|
+
"content": "3ac6d9832dd263eba21ccadb091e845dc2cfcb656c4cda447f744e16f96870c7"
|
|
1353
1573
|
}
|
|
1354
1574
|
]
|
|
1355
1575
|
},
|
|
@@ -1469,7 +1689,7 @@
|
|
|
1469
1689
|
"hashes": [
|
|
1470
1690
|
{
|
|
1471
1691
|
"alg": "SHA-256",
|
|
1472
|
-
"content": "
|
|
1692
|
+
"content": "66a135c30ed384b4db8088571735c8333b2bc8f06e736fda6075f8e17e59291c"
|
|
1473
1693
|
}
|
|
1474
1694
|
]
|
|
1475
1695
|
},
|
|
@@ -1479,7 +1699,7 @@
|
|
|
1479
1699
|
"hashes": [
|
|
1480
1700
|
{
|
|
1481
1701
|
"alg": "SHA-256",
|
|
1482
|
-
"content": "
|
|
1702
|
+
"content": "9eaa0eda2b6b0c4eded68ce18d22e43d55073fb70cf631d7b5e89ba9798f221d"
|
|
1483
1703
|
}
|
|
1484
1704
|
]
|
|
1485
1705
|
},
|
|
@@ -1489,7 +1709,7 @@
|
|
|
1489
1709
|
"hashes": [
|
|
1490
1710
|
{
|
|
1491
1711
|
"alg": "SHA-256",
|
|
1492
|
-
"content": "
|
|
1712
|
+
"content": "650f588eaf7b7e29e7045cf86326e9c89beb16e7694ceb95165c2e1c2ad82db3"
|
|
1493
1713
|
}
|
|
1494
1714
|
]
|
|
1495
1715
|
},
|
|
@@ -1509,7 +1729,7 @@
|
|
|
1509
1729
|
"hashes": [
|
|
1510
1730
|
{
|
|
1511
1731
|
"alg": "SHA-256",
|
|
1512
|
-
"content": "
|
|
1732
|
+
"content": "190451eaddcbbb3f24616c446748a95e747f430882911576e2c89c3d718ca99f"
|
|
1513
1733
|
}
|
|
1514
1734
|
]
|
|
1515
1735
|
},
|
|
@@ -1519,7 +1739,7 @@
|
|
|
1519
1739
|
"hashes": [
|
|
1520
1740
|
{
|
|
1521
1741
|
"alg": "SHA-256",
|
|
1522
|
-
"content": "
|
|
1742
|
+
"content": "e9ef3c7f173624bfd1d9eee392613b751a8df65d7eb581b05b5ed64acdda20f0"
|
|
1523
1743
|
}
|
|
1524
1744
|
]
|
|
1525
1745
|
},
|
|
@@ -1689,7 +1909,7 @@
|
|
|
1689
1909
|
"hashes": [
|
|
1690
1910
|
{
|
|
1691
1911
|
"alg": "SHA-256",
|
|
1692
|
-
"content": "
|
|
1912
|
+
"content": "d9dd399cbb60d6b5fa9734ad44128a49790ef15bbde25c809d69d5c918601eb3"
|
|
1693
1913
|
}
|
|
1694
1914
|
]
|
|
1695
1915
|
},
|
|
@@ -1769,7 +1989,7 @@
|
|
|
1769
1989
|
"hashes": [
|
|
1770
1990
|
{
|
|
1771
1991
|
"alg": "SHA-256",
|
|
1772
|
-
"content": "
|
|
1992
|
+
"content": "b663793d1e1d1de028f91f2e266a191811bb610f97a12be7f95d62327589d53a"
|
|
1773
1993
|
}
|
|
1774
1994
|
]
|
|
1775
1995
|
},
|
|
@@ -1849,7 +2069,7 @@
|
|
|
1849
2069
|
"hashes": [
|
|
1850
2070
|
{
|
|
1851
2071
|
"alg": "SHA-256",
|
|
1852
|
-
"content": "
|
|
2072
|
+
"content": "5eac599ea36b23f93b4f12de64da7ff1daff2df148032cc6fbf146ef8c0f7429"
|
|
1853
2073
|
}
|
|
1854
2074
|
]
|
|
1855
2075
|
},
|
|
@@ -1923,6 +2143,26 @@
|
|
|
1923
2143
|
}
|
|
1924
2144
|
]
|
|
1925
2145
|
},
|
|
2146
|
+
{
|
|
2147
|
+
"type": "file",
|
|
2148
|
+
"name": "tests/unit/capture-source-path.test.js",
|
|
2149
|
+
"hashes": [
|
|
2150
|
+
{
|
|
2151
|
+
"alg": "SHA-256",
|
|
2152
|
+
"content": "771ee1bb495fe4a60b2fa58cc8009e52610c38145059532d3e158581fdb66d93"
|
|
2153
|
+
}
|
|
2154
|
+
]
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
"type": "file",
|
|
2158
|
+
"name": "tests/unit/check-canon.test.js",
|
|
2159
|
+
"hashes": [
|
|
2160
|
+
{
|
|
2161
|
+
"alg": "SHA-256",
|
|
2162
|
+
"content": "df1aad467e0ed38471dad55547c1af6115ec9daaa5c40e9142e4ce67fedcb1bf"
|
|
2163
|
+
}
|
|
2164
|
+
]
|
|
2165
|
+
},
|
|
1926
2166
|
{
|
|
1927
2167
|
"type": "file",
|
|
1928
2168
|
"name": "tests/unit/check-docs-complete.test.js",
|
|
@@ -1933,6 +2173,36 @@
|
|
|
1933
2173
|
}
|
|
1934
2174
|
]
|
|
1935
2175
|
},
|
|
2176
|
+
{
|
|
2177
|
+
"type": "file",
|
|
2178
|
+
"name": "tests/unit/check-embed-contract.test.js",
|
|
2179
|
+
"hashes": [
|
|
2180
|
+
{
|
|
2181
|
+
"alg": "SHA-256",
|
|
2182
|
+
"content": "a354532078d6404db094427734036db2dd598c4e26b773e84b98bb52a02922ad"
|
|
2183
|
+
}
|
|
2184
|
+
]
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
"type": "file",
|
|
2188
|
+
"name": "tests/unit/check-external-deps.test.js",
|
|
2189
|
+
"hashes": [
|
|
2190
|
+
{
|
|
2191
|
+
"alg": "SHA-256",
|
|
2192
|
+
"content": "652c90abf50636dd97e499fe3d23f77b780a0f77d7dd989f4b7ab900ae3a467b"
|
|
2193
|
+
}
|
|
2194
|
+
]
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
"type": "file",
|
|
2198
|
+
"name": "tests/unit/check-file-ownership.test.js",
|
|
2199
|
+
"hashes": [
|
|
2200
|
+
{
|
|
2201
|
+
"alg": "SHA-256",
|
|
2202
|
+
"content": "1b9d24fe5803c6b2efbf524b7d6b9687779e8390792e78cb60a127b1b9a757fd"
|
|
2203
|
+
}
|
|
2204
|
+
]
|
|
2205
|
+
},
|
|
1936
2206
|
{
|
|
1937
2207
|
"type": "file",
|
|
1938
2208
|
"name": "tests/unit/check-growth-trace.test.js",
|
|
@@ -1943,6 +2213,66 @@
|
|
|
1943
2213
|
}
|
|
1944
2214
|
]
|
|
1945
2215
|
},
|
|
2216
|
+
{
|
|
2217
|
+
"type": "file",
|
|
2218
|
+
"name": "tests/unit/check-handoff-manifest.test.js",
|
|
2219
|
+
"hashes": [
|
|
2220
|
+
{
|
|
2221
|
+
"alg": "SHA-256",
|
|
2222
|
+
"content": "034a003b0099a93a21d189eccab141f0d0e08e3b8e7156ac79ed1d006c1d2352"
|
|
2223
|
+
}
|
|
2224
|
+
]
|
|
2225
|
+
},
|
|
2226
|
+
{
|
|
2227
|
+
"type": "file",
|
|
2228
|
+
"name": "tests/unit/check-job-contract.test.js",
|
|
2229
|
+
"hashes": [
|
|
2230
|
+
{
|
|
2231
|
+
"alg": "SHA-256",
|
|
2232
|
+
"content": "84e67b3905ecb99ce69a88e0b5b068f072a683f27482e3edb03070ad466f9d2d"
|
|
2233
|
+
}
|
|
2234
|
+
]
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
"type": "file",
|
|
2238
|
+
"name": "tests/unit/check-look-origin.test.js",
|
|
2239
|
+
"hashes": [
|
|
2240
|
+
{
|
|
2241
|
+
"alg": "SHA-256",
|
|
2242
|
+
"content": "6e14b779168c5b9e170064fa1eccbeeb887088566f873832955a2a0ee5889604"
|
|
2243
|
+
}
|
|
2244
|
+
]
|
|
2245
|
+
},
|
|
2246
|
+
{
|
|
2247
|
+
"type": "file",
|
|
2248
|
+
"name": "tests/unit/check-look-trace.test.js",
|
|
2249
|
+
"hashes": [
|
|
2250
|
+
{
|
|
2251
|
+
"alg": "SHA-256",
|
|
2252
|
+
"content": "1bde55962ea17a8c8796f6a64efb9b46f317cbfb0fd9e2625c7c79d8eb7a5f63"
|
|
2253
|
+
}
|
|
2254
|
+
]
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
"type": "file",
|
|
2258
|
+
"name": "tests/unit/check-metric-source.test.js",
|
|
2259
|
+
"hashes": [
|
|
2260
|
+
{
|
|
2261
|
+
"alg": "SHA-256",
|
|
2262
|
+
"content": "294faa407fe185e15ecf559d11e4608abd746606e355550842299cbfdc186d47"
|
|
2263
|
+
}
|
|
2264
|
+
]
|
|
2265
|
+
},
|
|
2266
|
+
{
|
|
2267
|
+
"type": "file",
|
|
2268
|
+
"name": "tests/unit/check-model-cost.test.js",
|
|
2269
|
+
"hashes": [
|
|
2270
|
+
{
|
|
2271
|
+
"alg": "SHA-256",
|
|
2272
|
+
"content": "6991640b1732d55ef1099369d181c5828f89cb80dff63f5231e7cf61af795763"
|
|
2273
|
+
}
|
|
2274
|
+
]
|
|
2275
|
+
},
|
|
1946
2276
|
{
|
|
1947
2277
|
"type": "file",
|
|
1948
2278
|
"name": "tests/unit/check-pipeline-gaps.test.js",
|
|
@@ -1959,7 +2289,37 @@
|
|
|
1959
2289
|
"hashes": [
|
|
1960
2290
|
{
|
|
1961
2291
|
"alg": "SHA-256",
|
|
1962
|
-
"content": "
|
|
2292
|
+
"content": "fbaf222bdde5fc30835d454de9cd1532a85a371c35108f23798902d20a7e152d"
|
|
2293
|
+
}
|
|
2294
|
+
]
|
|
2295
|
+
},
|
|
2296
|
+
{
|
|
2297
|
+
"type": "file",
|
|
2298
|
+
"name": "tests/unit/check-source-version.test.js",
|
|
2299
|
+
"hashes": [
|
|
2300
|
+
{
|
|
2301
|
+
"alg": "SHA-256",
|
|
2302
|
+
"content": "c5b457c22585c78fdc081ebe383ea5c24c2e2ef7a9bf04a6531005d791a9521e"
|
|
2303
|
+
}
|
|
2304
|
+
]
|
|
2305
|
+
},
|
|
2306
|
+
{
|
|
2307
|
+
"type": "file",
|
|
2308
|
+
"name": "tests/unit/check-swarm-receipts.test.js",
|
|
2309
|
+
"hashes": [
|
|
2310
|
+
{
|
|
2311
|
+
"alg": "SHA-256",
|
|
2312
|
+
"content": "48ff09851875da9ca838823e36cae63533bfb7851d21974fa8d68c0b75fbc393"
|
|
2313
|
+
}
|
|
2314
|
+
]
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
"type": "file",
|
|
2318
|
+
"name": "tests/unit/check-webhook-contract.test.js",
|
|
2319
|
+
"hashes": [
|
|
2320
|
+
{
|
|
2321
|
+
"alg": "SHA-256",
|
|
2322
|
+
"content": "239bcfc61e39894871e643a45cddac4028447759fd45c9ef487fbf57d8405de7"
|
|
1963
2323
|
}
|
|
1964
2324
|
]
|
|
1965
2325
|
},
|
|
@@ -1969,7 +2329,7 @@
|
|
|
1969
2329
|
"hashes": [
|
|
1970
2330
|
{
|
|
1971
2331
|
"alg": "SHA-256",
|
|
1972
|
-
"content": "
|
|
2332
|
+
"content": "7c8d78d6198aa33136880c6944e3ad5119bf9f80841013b1b746924ff3435134"
|
|
1973
2333
|
}
|
|
1974
2334
|
]
|
|
1975
2335
|
},
|
|
@@ -1999,7 +2359,7 @@
|
|
|
1999
2359
|
"hashes": [
|
|
2000
2360
|
{
|
|
2001
2361
|
"alg": "SHA-256",
|
|
2002
|
-
"content": "
|
|
2362
|
+
"content": "b629bfb0906376e180c945a0e0dc35fa6e707f66bfcf5b0d6dd9b02d75a7bd79"
|
|
2003
2363
|
}
|
|
2004
2364
|
]
|
|
2005
2365
|
},
|
|
@@ -2033,6 +2393,16 @@
|
|
|
2033
2393
|
}
|
|
2034
2394
|
]
|
|
2035
2395
|
},
|
|
2396
|
+
{
|
|
2397
|
+
"type": "file",
|
|
2398
|
+
"name": "tests/unit/generator-swarm-contract.test.js",
|
|
2399
|
+
"hashes": [
|
|
2400
|
+
{
|
|
2401
|
+
"alg": "SHA-256",
|
|
2402
|
+
"content": "dfa12c6ea7d42a56c7dca13fde775443d462672464870dc01162cd5767836df5"
|
|
2403
|
+
}
|
|
2404
|
+
]
|
|
2405
|
+
},
|
|
2036
2406
|
{
|
|
2037
2407
|
"type": "file",
|
|
2038
2408
|
"name": "tests/unit/growth-axes-and-compliance.test.js",
|
|
@@ -2083,13 +2453,23 @@
|
|
|
2083
2453
|
}
|
|
2084
2454
|
]
|
|
2085
2455
|
},
|
|
2456
|
+
{
|
|
2457
|
+
"type": "file",
|
|
2458
|
+
"name": "tests/unit/guard-honest-input-meta.test.js",
|
|
2459
|
+
"hashes": [
|
|
2460
|
+
{
|
|
2461
|
+
"alg": "SHA-256",
|
|
2462
|
+
"content": "b8e6513e09e774b83b2f05ac42d35c4849ef81b58e600e442dd22cf1071d02f3"
|
|
2463
|
+
}
|
|
2464
|
+
]
|
|
2465
|
+
},
|
|
2086
2466
|
{
|
|
2087
2467
|
"type": "file",
|
|
2088
2468
|
"name": "tests/unit/honest-failure-rules.test.js",
|
|
2089
2469
|
"hashes": [
|
|
2090
2470
|
{
|
|
2091
2471
|
"alg": "SHA-256",
|
|
2092
|
-
"content": "
|
|
2472
|
+
"content": "b8674f0ce01c888b9a0fa5da0ad707c171412c9ac8fc4dcd55d2d5a5ea989438"
|
|
2093
2473
|
}
|
|
2094
2474
|
]
|
|
2095
2475
|
},
|
|
@@ -2143,6 +2523,16 @@
|
|
|
2143
2523
|
}
|
|
2144
2524
|
]
|
|
2145
2525
|
},
|
|
2526
|
+
{
|
|
2527
|
+
"type": "file",
|
|
2528
|
+
"name": "tests/unit/look-phase-contract.test.js",
|
|
2529
|
+
"hashes": [
|
|
2530
|
+
{
|
|
2531
|
+
"alg": "SHA-256",
|
|
2532
|
+
"content": "9f0dadd377d02e79ab7df65a527b8640d86d5808c102c66cb250cad277d3e368"
|
|
2533
|
+
}
|
|
2534
|
+
]
|
|
2535
|
+
},
|
|
2146
2536
|
{
|
|
2147
2537
|
"type": "file",
|
|
2148
2538
|
"name": "tests/unit/module-copy-identity.test.js",
|
|
@@ -2153,6 +2543,16 @@
|
|
|
2153
2543
|
}
|
|
2154
2544
|
]
|
|
2155
2545
|
},
|
|
2546
|
+
{
|
|
2547
|
+
"type": "file",
|
|
2548
|
+
"name": "tests/unit/negative-conclusion-gate.test.js",
|
|
2549
|
+
"hashes": [
|
|
2550
|
+
{
|
|
2551
|
+
"alg": "SHA-256",
|
|
2552
|
+
"content": "7ffbcfdf638941511dc78c048d5056812e63af203cdf7c9bc757a22540cca14e"
|
|
2553
|
+
}
|
|
2554
|
+
]
|
|
2555
|
+
},
|
|
2156
2556
|
{
|
|
2157
2557
|
"type": "file",
|
|
2158
2558
|
"name": "tests/unit/pipeline-file-ownership.test.js",
|
|
@@ -2163,6 +2563,16 @@
|
|
|
2163
2563
|
}
|
|
2164
2564
|
]
|
|
2165
2565
|
},
|
|
2566
|
+
{
|
|
2567
|
+
"type": "file",
|
|
2568
|
+
"name": "tests/unit/quote-provenance.test.js",
|
|
2569
|
+
"hashes": [
|
|
2570
|
+
{
|
|
2571
|
+
"alg": "SHA-256",
|
|
2572
|
+
"content": "e9f50ec67b8dde73d609c1df6bbeafa7eaf23f3ae62785362b57d09e3b7e6c70"
|
|
2573
|
+
}
|
|
2574
|
+
]
|
|
2575
|
+
},
|
|
2166
2576
|
{
|
|
2167
2577
|
"type": "file",
|
|
2168
2578
|
"name": "tests/unit/roadmap-one-schema.test.js",
|
|
@@ -2269,7 +2679,7 @@
|
|
|
2269
2679
|
"hashes": [
|
|
2270
2680
|
{
|
|
2271
2681
|
"alg": "SHA-256",
|
|
2272
|
-
"content": "
|
|
2682
|
+
"content": "863ad4b5446b9cf5177b1f53502e8add4a9778f7ac2a94f58c8b4ec99dc1611d"
|
|
2273
2683
|
}
|
|
2274
2684
|
]
|
|
2275
2685
|
},
|