tribunal-kit 7.0.0 → 8.0.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/.agent/config/claude.json +18 -0
- package/.agent/config/plugin.json +102 -0
- package/.agent/config/slash-commands.json +103 -0
- package/.agent/config/specialist-registry.json +415 -0
- package/.agent/config/system-prompt.md +191 -0
- package/.agent/history/architecture-graph.yaml +302 -3
- package/.agent/history/graph-cache.json +515 -45
- package/.agent/history/memory.db +0 -0
- package/.agent/history/snapshots/bin__adapter-install.js.json +13 -0
- package/.agent/history/snapshots/bin__global-store.js.json +15 -0
- package/.agent/history/snapshots/bin__mcp-server.js.json +19 -0
- package/.agent/history/snapshots/bin__proxy-server.js.json +20 -0
- package/.agent/history/snapshots/bin__spawn-agent.js.json +12 -0
- package/.agent/history/snapshots/bin__tk-proxy.js.json +21 -0
- package/.agent/history/snapshots/bin__tribunal-kit.js.json +9 -7
- package/.agent/history/snapshots/bin__wrapper.js.json +14 -0
- package/.agent/history/snapshots/eslint.config.js.json +1 -2
- package/.agent/history/snapshots/scripts__benchmark.js.json +14 -0
- package/.agent/history/snapshots/scripts__changelog.js.json +1 -2
- package/.agent/history/snapshots/scripts__fix-vbc.js.json +11 -0
- package/.agent/history/snapshots/scripts__stress_benchmark.js.json +15 -0
- package/.agent/history/snapshots/scripts__sync-version.js.json +1 -2
- package/.agent/history/snapshots/scripts__validate-payload.js.json +1 -2
- package/.agent/history/snapshots/scripts__visual_audit.js.json +11 -0
- package/.agent/history/snapshots/test__integration__bridges.test.js.json +1 -2
- package/.agent/history/snapshots/test__integration__graceful_degradation.test.js.json +12 -0
- package/.agent/history/snapshots/test__integration__init.test.js.json +1 -2
- package/.agent/history/snapshots/test__integration__minimal_change_pipeline.test.js.json +13 -0
- package/.agent/history/snapshots/test__integration__parallel_tribunal.test.js.json +12 -0
- package/.agent/history/snapshots/test__integration__routing.test.js.json +1 -2
- package/.agent/history/snapshots/test__integration__swarm_dispatcher.test.js.json +1 -2
- package/.agent/history/snapshots/test__integration__sync_status.test.js.json +13 -0
- package/.agent/history/snapshots/test__integration__wave2.test.js.json +1 -2
- package/.agent/history/snapshots/test__integration__wrapper.test.js.json +13 -0
- package/.agent/history/snapshots/test__unit__align.test.js.json +10 -0
- package/.agent/history/snapshots/test__unit__args.test.js.json +3 -3
- package/.agent/history/snapshots/test__unit__audit_release.test.js.json +16 -0
- package/.agent/history/snapshots/test__unit__case_law_manager.test.js.json +1 -2
- package/.agent/history/snapshots/test__unit__cicd_validator.test.js.json +12 -0
- package/.agent/history/snapshots/test__unit__compile.test.js.json +10 -0
- package/.agent/history/snapshots/test__unit__context_broker.test.js.json +1 -2
- package/.agent/history/snapshots/test__unit__contract_engine.test.js.json +13 -0
- package/.agent/history/snapshots/test__unit__copyDir.test.js.json +3 -3
- package/.agent/history/snapshots/test__unit__graph_tools.test.js.json +1 -2
- package/.agent/history/snapshots/test__unit__guardrail_engine.test.js.json +10 -0
- package/.agent/history/snapshots/test__unit__impact_classifier.test.js.json +12 -0
- package/.agent/history/snapshots/test__unit__init.test.js.json +14 -0
- package/.agent/history/snapshots/test__unit__inner_loop_validator.test.js.json +1 -2
- package/.agent/history/snapshots/test__unit__integrity_manifest.test.js.json +13 -0
- package/.agent/history/snapshots/test__unit__learn.test.js.json +11 -0
- package/.agent/history/snapshots/test__unit__marathon.test.js.json +22 -0
- package/.agent/history/snapshots/test__unit__mcp_server.test.js.json +16 -0
- package/.agent/history/snapshots/test__unit__memory.test.js.json +13 -0
- package/.agent/history/snapshots/test__unit__minimal_change.test.js.json +10 -0
- package/.agent/history/snapshots/test__unit__native.test.js.json +10 -0
- package/.agent/history/snapshots/test__unit__optimize.test.js.json +13 -0
- package/.agent/history/snapshots/test__unit__path_resolution.test.js.json +14 -0
- package/.agent/history/snapshots/test__unit__production_readiness_evidence.test.js.json +21 -0
- package/.agent/history/snapshots/test__unit__selfInstall.test.js.json +3 -3
- package/.agent/history/snapshots/test__unit__semver.test.js.json +3 -3
- package/.agent/history/snapshots/test__unit__skill_evolution.test.js.json +11 -0
- package/.agent/history/snapshots/test__unit__stress.test.js.json +15 -0
- package/.agent/history/snapshots/test__unit__swarm_dispatcher.test.js.json +3 -3
- package/.agent/history/snapshots/test__unit__utils.test.js.json +10 -0
- package/.agent/scripts/ast_context_loader.js +137 -0
- package/.agent/scripts/memory_engine.js +581 -0
- package/.agent/scripts/payload_schemas.js +146 -0
- package/.agent/scripts/prompt_compiler.js +59 -11
- package/.agent/scripts/swarm_dispatcher.js +295 -67
- package/.agent/scripts/token_budget_broker.js +117 -6
- package/.claude/CLAUDE.md +442 -0
- package/README.md +22 -12
- package/SECURITY.md +3 -3
- package/bin/adapter-install.js +240 -0
- package/bin/global-store.js +48 -0
- package/bin/mcp-server.js +568 -252
- package/bin/proxy-server.js +113 -0
- package/bin/spawn-agent.js +39 -0
- package/bin/tk-proxy.js +34 -0
- package/dist/commands/init.js +8 -51
- package/dist/commands/status.js +61 -36
- package/dist/commands/validate.js +22 -31
- package/dist/tui/banner.js +77 -0
- package/dist/tui/index.js +21 -0
- package/dist/tui/reviewer-grid.js +90 -0
- package/dist/tui/shimmer.js +91 -0
- package/dist/tui/theme.js +130 -0
- package/dist/tui/tree.js +93 -0
- package/dist/tui/wizard.js +148 -0
- package/dist/utils/helpers.js +5 -41
- package/package.json +27 -10
- package/scripts/build-graph.js +71 -0
- package/.agent/history/snapshots/migrate_refs.js.json +0 -11
- package/.agent/scripts/compile_router.py +0 -5
- package/.agent/scripts/migrate_skills_frontmatter.py +0 -5
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bin/tribunal-kit.js": {
|
|
3
|
-
"
|
|
4
|
-
"hash": "044b396a83a94d6d3787df1bebd6c58f6261f8b3",
|
|
3
|
+
"hash": "4bb4fcf4142110ffadf94c02f1dc54ea85f1dc35",
|
|
5
4
|
"imports": [
|
|
6
|
-
"fs",
|
|
7
5
|
"path",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
6
|
+
"../dist/cli.js",
|
|
7
|
+
"../dist/utils/version",
|
|
8
|
+
"../dist/utils/fs",
|
|
9
|
+
"../dist/commands/init",
|
|
10
|
+
"../dist/commands/marathon"
|
|
10
11
|
],
|
|
11
12
|
"exports": [
|
|
12
13
|
"parseArgs",
|
|
@@ -16,20 +17,21 @@
|
|
|
16
17
|
"isSelfInstall",
|
|
17
18
|
"CORE_AGENTS",
|
|
18
19
|
"CORE_SKILLS",
|
|
19
|
-
"generateIDEBridges"
|
|
20
|
+
"generateIDEBridges",
|
|
21
|
+
"cmdMarathon"
|
|
20
22
|
],
|
|
21
23
|
"dependents": [
|
|
22
24
|
"test/unit/args.test.js",
|
|
23
25
|
"test/unit/copyDir.test.js",
|
|
26
|
+
"test/unit/marathon.test.js",
|
|
24
27
|
"test/unit/selfInstall.test.js",
|
|
25
28
|
"test/unit/semver.test.js"
|
|
26
29
|
],
|
|
27
|
-
"riskScore": "
|
|
28
|
-
"blastRadius":
|
|
30
|
+
"riskScore": "High",
|
|
31
|
+
"blastRadius": 5
|
|
29
32
|
},
|
|
30
33
|
"eslint.config.js": {
|
|
31
|
-
"
|
|
32
|
-
"hash": "d80785ac22194886311daa5c82c9765de8530876",
|
|
34
|
+
"hash": "f402fa7b0c6004511f84b4def4f3b12b02f54c3e",
|
|
33
35
|
"imports": [],
|
|
34
36
|
"exports": [],
|
|
35
37
|
"dependents": [],
|
|
@@ -48,8 +50,7 @@
|
|
|
48
50
|
"blastRadius": 0
|
|
49
51
|
},
|
|
50
52
|
"scripts/changelog.js": {
|
|
51
|
-
"
|
|
52
|
-
"hash": "a078be5cb402a420593b4759afdae249cde78fdf",
|
|
53
|
+
"hash": "dfa9adb51066741fc0228f36d5b88b1c7de2a6fc",
|
|
53
54
|
"imports": [
|
|
54
55
|
"child_process",
|
|
55
56
|
"fs",
|
|
@@ -61,8 +62,7 @@
|
|
|
61
62
|
"blastRadius": 0
|
|
62
63
|
},
|
|
63
64
|
"scripts/sync-version.js": {
|
|
64
|
-
"
|
|
65
|
-
"hash": "222ce95e5cbce0525359105d277688cfe61c7c6c",
|
|
65
|
+
"hash": "04b01cf36c1535b08d2ff3d1018959bae0585b89",
|
|
66
66
|
"imports": [
|
|
67
67
|
"fs",
|
|
68
68
|
"path"
|
|
@@ -73,8 +73,7 @@
|
|
|
73
73
|
"blastRadius": 0
|
|
74
74
|
},
|
|
75
75
|
"scripts/validate-payload.js": {
|
|
76
|
-
"
|
|
77
|
-
"hash": "deefae3cc5c6807b56978fc47c36b85e7db03bc6",
|
|
76
|
+
"hash": "532e92f7d9a000d83774f8a5f4e503d76374fb33",
|
|
78
77
|
"imports": [
|
|
79
78
|
"fs",
|
|
80
79
|
"path"
|
|
@@ -85,8 +84,7 @@
|
|
|
85
84
|
"blastRadius": 0
|
|
86
85
|
},
|
|
87
86
|
"test/integration/bridges.test.js": {
|
|
88
|
-
"
|
|
89
|
-
"hash": "9941a025cf46512d813660e4a09bf304f7fce64f",
|
|
87
|
+
"hash": "d745ed8ec0140ac1865474f3e21082c4c621906e",
|
|
90
88
|
"imports": [
|
|
91
89
|
"child_process",
|
|
92
90
|
"path",
|
|
@@ -99,8 +97,7 @@
|
|
|
99
97
|
"blastRadius": 0
|
|
100
98
|
},
|
|
101
99
|
"test/integration/init.test.js": {
|
|
102
|
-
"
|
|
103
|
-
"hash": "43387fa138c7bdde2ee4d42d07ec3c82ed754275",
|
|
100
|
+
"hash": "7d2188a3bf5d9932e4b76c5c42990bdf7469bf20",
|
|
104
101
|
"imports": [
|
|
105
102
|
"child_process",
|
|
106
103
|
"path",
|
|
@@ -113,8 +110,7 @@
|
|
|
113
110
|
"blastRadius": 0
|
|
114
111
|
},
|
|
115
112
|
"test/integration/routing.test.js": {
|
|
116
|
-
"
|
|
117
|
-
"hash": "aa8ff34289fee5be72e1d3f97083944f8f731dbd",
|
|
113
|
+
"hash": "ee92caac1e611362875b2caabf078c290bde6ceb",
|
|
118
114
|
"imports": [
|
|
119
115
|
"path",
|
|
120
116
|
"fs"
|
|
@@ -125,8 +121,7 @@
|
|
|
125
121
|
"blastRadius": 0
|
|
126
122
|
},
|
|
127
123
|
"test/integration/swarm_dispatcher.test.js": {
|
|
128
|
-
"
|
|
129
|
-
"hash": "959cf59504544f624aea7ccad55fe2d9dc25ca4d",
|
|
124
|
+
"hash": "63f318035f3fd45634e41558ade8c78f40137d60",
|
|
130
125
|
"imports": [
|
|
131
126
|
"path",
|
|
132
127
|
"fs",
|
|
@@ -139,8 +134,7 @@
|
|
|
139
134
|
"blastRadius": 0
|
|
140
135
|
},
|
|
141
136
|
"test/integration/wave2.test.js": {
|
|
142
|
-
"
|
|
143
|
-
"hash": "703c635a4a0091e20785c3418b1ab294607a1635",
|
|
137
|
+
"hash": "0f1432fd17064e768f44cdfc306cd2067e5c0019",
|
|
144
138
|
"imports": [
|
|
145
139
|
"fs",
|
|
146
140
|
"../../.agent/scripts/skill_integrator.js",
|
|
@@ -153,8 +147,7 @@
|
|
|
153
147
|
"blastRadius": 0
|
|
154
148
|
},
|
|
155
149
|
"test/unit/args.test.js": {
|
|
156
|
-
"
|
|
157
|
-
"hash": "b5863d3402957aae7315537ff9845c99899eeb50",
|
|
150
|
+
"hash": "ad5b49047280c5849976b2e682fffda8ad2327dd",
|
|
158
151
|
"imports": [
|
|
159
152
|
"../../bin/tribunal-kit"
|
|
160
153
|
],
|
|
@@ -164,8 +157,7 @@
|
|
|
164
157
|
"blastRadius": 0
|
|
165
158
|
},
|
|
166
159
|
"test/unit/case_law_manager.test.js": {
|
|
167
|
-
"
|
|
168
|
-
"hash": "172bdb2790ea2305d176f44b4d48826343e3fdc0",
|
|
160
|
+
"hash": "37f112e2e06180945b20d9f633e70f9389ae4292",
|
|
169
161
|
"imports": [
|
|
170
162
|
"../../.agent/scripts/case_law_manager"
|
|
171
163
|
],
|
|
@@ -175,8 +167,7 @@
|
|
|
175
167
|
"blastRadius": 0
|
|
176
168
|
},
|
|
177
169
|
"test/unit/context_broker.test.js": {
|
|
178
|
-
"
|
|
179
|
-
"hash": "5fa154b5885a89376a937bd4825b1ba5643c92f6",
|
|
170
|
+
"hash": "ae4508857a7f00de516d68b07675771e304819aa",
|
|
180
171
|
"imports": [
|
|
181
172
|
"../../.agent/scripts/context_broker"
|
|
182
173
|
],
|
|
@@ -186,8 +177,7 @@
|
|
|
186
177
|
"blastRadius": 0
|
|
187
178
|
},
|
|
188
179
|
"test/unit/copyDir.test.js": {
|
|
189
|
-
"
|
|
190
|
-
"hash": "1f3111ef91650adcb45b728779000c03b9bdcb3f",
|
|
180
|
+
"hash": "d831bcc78c21c6fd86fefbce9256152f2e1b2f22",
|
|
191
181
|
"imports": [
|
|
192
182
|
"fs",
|
|
193
183
|
"path",
|
|
@@ -200,8 +190,7 @@
|
|
|
200
190
|
"blastRadius": 0
|
|
201
191
|
},
|
|
202
192
|
"test/unit/graph_tools.test.js": {
|
|
203
|
-
"
|
|
204
|
-
"hash": "08b5b30f66169e34f86a9b8ad9aa842e0917f218",
|
|
193
|
+
"hash": "a3ec675f33f113dd6721ccf21fdb6c88934309f3",
|
|
205
194
|
"imports": [
|
|
206
195
|
"fs",
|
|
207
196
|
"path"
|
|
@@ -212,8 +201,7 @@
|
|
|
212
201
|
"blastRadius": 0
|
|
213
202
|
},
|
|
214
203
|
"test/unit/inner_loop_validator.test.js": {
|
|
215
|
-
"
|
|
216
|
-
"hash": "48487187be036a1448dcb2089cb17d01258f964f",
|
|
204
|
+
"hash": "72cbf42ff47f879eccaf8211fa995bcd35710ee8",
|
|
217
205
|
"imports": [
|
|
218
206
|
"../../.agent/scripts/inner_loop_validator"
|
|
219
207
|
],
|
|
@@ -223,8 +211,7 @@
|
|
|
223
211
|
"blastRadius": 0
|
|
224
212
|
},
|
|
225
213
|
"test/unit/selfInstall.test.js": {
|
|
226
|
-
"
|
|
227
|
-
"hash": "65b099af8b884c6c1d174f7f70c6d836c27e02ea",
|
|
214
|
+
"hash": "2728019e32590da365a788042add7d2da717cc88",
|
|
228
215
|
"imports": [
|
|
229
216
|
"path",
|
|
230
217
|
"fs",
|
|
@@ -237,8 +224,7 @@
|
|
|
237
224
|
"blastRadius": 0
|
|
238
225
|
},
|
|
239
226
|
"test/unit/semver.test.js": {
|
|
240
|
-
"
|
|
241
|
-
"hash": "d3b4e92656e66f496f034174abd53012ed00b33c",
|
|
227
|
+
"hash": "034dc553b9071bedb2eedc48e6c2559c42948457",
|
|
242
228
|
"imports": [
|
|
243
229
|
"../../bin/tribunal-kit"
|
|
244
230
|
],
|
|
@@ -248,11 +234,495 @@
|
|
|
248
234
|
"blastRadius": 0
|
|
249
235
|
},
|
|
250
236
|
"test/unit/swarm_dispatcher.test.js": {
|
|
251
|
-
"
|
|
252
|
-
"hash": "59ea8d2f8e73dd3a384df1966e55002db2df0947",
|
|
237
|
+
"hash": "483712adfbec7693e832b885520015928e372cd0",
|
|
253
238
|
"imports": [
|
|
254
239
|
"path",
|
|
255
|
-
"fs"
|
|
240
|
+
"fs",
|
|
241
|
+
"../../.agent/scripts/swarm_dispatcher.js"
|
|
242
|
+
],
|
|
243
|
+
"exports": [],
|
|
244
|
+
"dependents": [],
|
|
245
|
+
"riskScore": "Low",
|
|
246
|
+
"blastRadius": 0
|
|
247
|
+
},
|
|
248
|
+
"bin/adapter-install.js": {
|
|
249
|
+
"hash": "a4500974127727c81db700197c9f60961f850669",
|
|
250
|
+
"imports": [
|
|
251
|
+
"fs",
|
|
252
|
+
"path",
|
|
253
|
+
"os",
|
|
254
|
+
"child_process"
|
|
255
|
+
],
|
|
256
|
+
"exports": [],
|
|
257
|
+
"dependents": [],
|
|
258
|
+
"riskScore": "Low",
|
|
259
|
+
"blastRadius": 0
|
|
260
|
+
},
|
|
261
|
+
"bin/global-store.js": {
|
|
262
|
+
"hash": "7c09cab6a7abc6f33ab9473728395f3494395d6f",
|
|
263
|
+
"imports": [
|
|
264
|
+
"fs",
|
|
265
|
+
"path",
|
|
266
|
+
"os"
|
|
267
|
+
],
|
|
268
|
+
"exports": [
|
|
269
|
+
"initializeGlobalStore",
|
|
270
|
+
"getGlobalAgentPath",
|
|
271
|
+
"GLOBAL_STORE_PATH"
|
|
272
|
+
],
|
|
273
|
+
"dependents": [
|
|
274
|
+
"bin/proxy-server.js",
|
|
275
|
+
"bin/tk-proxy.js"
|
|
276
|
+
],
|
|
277
|
+
"riskScore": "Medium",
|
|
278
|
+
"blastRadius": 2
|
|
279
|
+
},
|
|
280
|
+
"bin/mcp-server.js": {
|
|
281
|
+
"hash": "f8ad32345bdb4dff5ab550ad600cc02fa61a3f00",
|
|
282
|
+
"imports": [
|
|
283
|
+
"path",
|
|
284
|
+
"child_process",
|
|
285
|
+
"readline",
|
|
286
|
+
"fs",
|
|
287
|
+
"../dist/commands/memory.js",
|
|
288
|
+
"../dist/commands/align.js"
|
|
289
|
+
],
|
|
290
|
+
"exports": [
|
|
291
|
+
"handleRequest",
|
|
292
|
+
"stripBoilerplate",
|
|
293
|
+
"runTribunalAudit"
|
|
294
|
+
],
|
|
295
|
+
"dependents": [
|
|
296
|
+
"test/unit/audit_release.test.js",
|
|
297
|
+
"test/unit/mcp_server.test.js",
|
|
298
|
+
"test/unit/production_readiness_evidence.test.js"
|
|
299
|
+
],
|
|
300
|
+
"riskScore": "Medium",
|
|
301
|
+
"blastRadius": 3
|
|
302
|
+
},
|
|
303
|
+
"bin/proxy-server.js": {
|
|
304
|
+
"hash": "4d49339396c502d198cdd3300d7db54c0dd485aa",
|
|
305
|
+
"imports": [
|
|
306
|
+
"http",
|
|
307
|
+
"https",
|
|
308
|
+
"fs",
|
|
309
|
+
"path",
|
|
310
|
+
"./global-store"
|
|
311
|
+
],
|
|
312
|
+
"exports": [
|
|
313
|
+
"startProxyServer",
|
|
314
|
+
"stopProxyServer"
|
|
315
|
+
],
|
|
316
|
+
"dependents": [
|
|
317
|
+
"bin/tk-proxy.js"
|
|
318
|
+
],
|
|
319
|
+
"riskScore": "Low",
|
|
320
|
+
"blastRadius": 1
|
|
321
|
+
},
|
|
322
|
+
"bin/spawn-agent.js": {
|
|
323
|
+
"hash": "24bdd6345558964db1794e3796787644fb61bdf9",
|
|
324
|
+
"imports": [
|
|
325
|
+
"child_process"
|
|
326
|
+
],
|
|
327
|
+
"exports": [
|
|
328
|
+
"spawnAgent"
|
|
329
|
+
],
|
|
330
|
+
"dependents": [
|
|
331
|
+
"bin/tk-proxy.js"
|
|
332
|
+
],
|
|
333
|
+
"riskScore": "Low",
|
|
334
|
+
"blastRadius": 1
|
|
335
|
+
},
|
|
336
|
+
"bin/tk-proxy.js": {
|
|
337
|
+
"hash": "457713a67cadf84372eccd4268b06081cb67b10d",
|
|
338
|
+
"imports": [
|
|
339
|
+
"./global-store",
|
|
340
|
+
"./proxy-server",
|
|
341
|
+
"./spawn-agent"
|
|
342
|
+
],
|
|
343
|
+
"exports": [],
|
|
344
|
+
"dependents": [],
|
|
345
|
+
"riskScore": "Low",
|
|
346
|
+
"blastRadius": 0
|
|
347
|
+
},
|
|
348
|
+
"bin/wrapper.js": {
|
|
349
|
+
"hash": "f39a7e981585e9043132a5651a1f982a01950a57",
|
|
350
|
+
"imports": [
|
|
351
|
+
"fs",
|
|
352
|
+
"path",
|
|
353
|
+
"child_process",
|
|
354
|
+
"os",
|
|
355
|
+
"../dist/cli.js"
|
|
356
|
+
],
|
|
357
|
+
"exports": [],
|
|
358
|
+
"dependents": [],
|
|
359
|
+
"riskScore": "Low",
|
|
360
|
+
"blastRadius": 0
|
|
361
|
+
},
|
|
362
|
+
"scripts/benchmark.js": {
|
|
363
|
+
"hash": "5498005cd5890d63858e08f53906c8e44b90bc54",
|
|
364
|
+
"imports": [
|
|
365
|
+
"child_process",
|
|
366
|
+
"path",
|
|
367
|
+
"fs",
|
|
368
|
+
"os",
|
|
369
|
+
"../.agent/scripts/minimal_change_engine"
|
|
370
|
+
],
|
|
371
|
+
"exports": [],
|
|
372
|
+
"dependents": [],
|
|
373
|
+
"riskScore": "Low",
|
|
374
|
+
"blastRadius": 0
|
|
375
|
+
},
|
|
376
|
+
"scripts/fix-vbc.js": {
|
|
377
|
+
"hash": "addb58b5fdf3911b684317140249c8f0baffc19f",
|
|
378
|
+
"imports": [
|
|
379
|
+
"fs",
|
|
380
|
+
"path"
|
|
381
|
+
],
|
|
382
|
+
"exports": [],
|
|
383
|
+
"dependents": [],
|
|
384
|
+
"riskScore": "Low",
|
|
385
|
+
"blastRadius": 0
|
|
386
|
+
},
|
|
387
|
+
"scripts/stress_benchmark.js": {
|
|
388
|
+
"hash": "0e7230cb788e259f58fc9a24b459d8170d4e9272",
|
|
389
|
+
"imports": [
|
|
390
|
+
"fs",
|
|
391
|
+
"path",
|
|
392
|
+
"os",
|
|
393
|
+
"perf_hooks"
|
|
394
|
+
],
|
|
395
|
+
"exports": [
|
|
396
|
+
"app",
|
|
397
|
+
"parseUser",
|
|
398
|
+
"runStressSuite"
|
|
399
|
+
],
|
|
400
|
+
"dependents": [
|
|
401
|
+
"test/unit/stress.test.js"
|
|
402
|
+
],
|
|
403
|
+
"riskScore": "Low",
|
|
404
|
+
"blastRadius": 1
|
|
405
|
+
},
|
|
406
|
+
"scripts/visual_audit.js": {
|
|
407
|
+
"hash": "040c77ca663eab38432c5947fdfd2005f3564708",
|
|
408
|
+
"imports": [
|
|
409
|
+
"fs",
|
|
410
|
+
"path"
|
|
411
|
+
],
|
|
412
|
+
"exports": [
|
|
413
|
+
"runVisualAudit"
|
|
414
|
+
],
|
|
415
|
+
"dependents": [],
|
|
416
|
+
"riskScore": "Low",
|
|
417
|
+
"blastRadius": 0
|
|
418
|
+
},
|
|
419
|
+
"test/integration/graceful_degradation.test.js": {
|
|
420
|
+
"hash": "9f24ebcc41569b56c2a70c1796ab198ac23b4603",
|
|
421
|
+
"imports": [
|
|
422
|
+
"path",
|
|
423
|
+
"child_process",
|
|
424
|
+
"../../.agent/scripts/context_broker"
|
|
425
|
+
],
|
|
426
|
+
"exports": [],
|
|
427
|
+
"dependents": [],
|
|
428
|
+
"riskScore": "Low",
|
|
429
|
+
"blastRadius": 0
|
|
430
|
+
},
|
|
431
|
+
"test/integration/minimal_change_pipeline.test.js": {
|
|
432
|
+
"hash": "fc521fb0f62ec97c8ffbf87d4259195f6521dbc9",
|
|
433
|
+
"imports": [
|
|
434
|
+
"path",
|
|
435
|
+
"fs",
|
|
436
|
+
"../../.agent/scripts/pipeline_engine",
|
|
437
|
+
"../../.agent/scripts/case_law_manager"
|
|
438
|
+
],
|
|
439
|
+
"exports": [],
|
|
440
|
+
"dependents": [],
|
|
441
|
+
"riskScore": "Low",
|
|
442
|
+
"blastRadius": 0
|
|
443
|
+
},
|
|
444
|
+
"test/integration/parallel_tribunal.test.js": {
|
|
445
|
+
"hash": "dc416dbbe5d41567544ca0ec640b4d2dff4da362",
|
|
446
|
+
"imports": [
|
|
447
|
+
"fs",
|
|
448
|
+
"path",
|
|
449
|
+
"child_process"
|
|
450
|
+
],
|
|
451
|
+
"exports": [],
|
|
452
|
+
"dependents": [],
|
|
453
|
+
"riskScore": "Low",
|
|
454
|
+
"blastRadius": 0
|
|
455
|
+
},
|
|
456
|
+
"test/integration/sync_status.test.js": {
|
|
457
|
+
"hash": "a799ca29d1535445e183fc82968434ef03d40d7f",
|
|
458
|
+
"imports": [
|
|
459
|
+
"fs",
|
|
460
|
+
"path",
|
|
461
|
+
"os",
|
|
462
|
+
"child_process"
|
|
463
|
+
],
|
|
464
|
+
"exports": [],
|
|
465
|
+
"dependents": [],
|
|
466
|
+
"riskScore": "Low",
|
|
467
|
+
"blastRadius": 0
|
|
468
|
+
},
|
|
469
|
+
"test/integration/wrapper.test.js": {
|
|
470
|
+
"hash": "ddb4f8d2b4c37382bd3c52dff8f9d7e69e101347",
|
|
471
|
+
"imports": [
|
|
472
|
+
"child_process",
|
|
473
|
+
"path",
|
|
474
|
+
"fs",
|
|
475
|
+
"os"
|
|
476
|
+
],
|
|
477
|
+
"exports": [],
|
|
478
|
+
"dependents": [],
|
|
479
|
+
"riskScore": "Low",
|
|
480
|
+
"blastRadius": 0
|
|
481
|
+
},
|
|
482
|
+
"test/unit/align.test.js": {
|
|
483
|
+
"hash": "eb76cfe4e590f709e9b7533b0261e4f7bd73b902",
|
|
484
|
+
"imports": [
|
|
485
|
+
"../../dist/commands/align"
|
|
486
|
+
],
|
|
487
|
+
"exports": [],
|
|
488
|
+
"dependents": [],
|
|
489
|
+
"riskScore": "Low",
|
|
490
|
+
"blastRadius": 0
|
|
491
|
+
},
|
|
492
|
+
"test/unit/audit_release.test.js": {
|
|
493
|
+
"hash": "c94cd4f2f41e8524d5a542e7fe7b5ab84415d761",
|
|
494
|
+
"imports": [
|
|
495
|
+
"fs",
|
|
496
|
+
"path",
|
|
497
|
+
"../../bin/mcp-server"
|
|
498
|
+
],
|
|
499
|
+
"exports": [],
|
|
500
|
+
"dependents": [],
|
|
501
|
+
"riskScore": "Low",
|
|
502
|
+
"blastRadius": 0
|
|
503
|
+
},
|
|
504
|
+
"test/unit/cicd_validator.test.js": {
|
|
505
|
+
"hash": "13682ddd931485b7037f335be0e1b23b950a9191",
|
|
506
|
+
"imports": [
|
|
507
|
+
"path",
|
|
508
|
+
"fs",
|
|
509
|
+
"../../.agent/scripts/cicd_validator.js"
|
|
510
|
+
],
|
|
511
|
+
"exports": [],
|
|
512
|
+
"dependents": [],
|
|
513
|
+
"riskScore": "Low",
|
|
514
|
+
"blastRadius": 0
|
|
515
|
+
},
|
|
516
|
+
"test/unit/compile.test.js": {
|
|
517
|
+
"hash": "30ea19930096f1b196a8a1642b3ff0dbd139ca59",
|
|
518
|
+
"imports": [
|
|
519
|
+
"../../dist/commands/compile"
|
|
520
|
+
],
|
|
521
|
+
"exports": [],
|
|
522
|
+
"dependents": [],
|
|
523
|
+
"riskScore": "Low",
|
|
524
|
+
"blastRadius": 0
|
|
525
|
+
},
|
|
526
|
+
"test/unit/contract_engine.test.js": {
|
|
527
|
+
"hash": "9059f4db7a6287e0abbe2f8f4cbfc48d9a190a5b",
|
|
528
|
+
"imports": [
|
|
529
|
+
"fs",
|
|
530
|
+
"path",
|
|
531
|
+
"../../.agent/scripts/contract_engine",
|
|
532
|
+
"../../.agent/scripts/trace_engine"
|
|
533
|
+
],
|
|
534
|
+
"exports": [],
|
|
535
|
+
"dependents": [],
|
|
536
|
+
"riskScore": "Low",
|
|
537
|
+
"blastRadius": 0
|
|
538
|
+
},
|
|
539
|
+
"test/unit/guardrail_engine.test.js": {
|
|
540
|
+
"hash": "4d79af33230a4708ff7ec1a313803d9275729c04",
|
|
541
|
+
"imports": [
|
|
542
|
+
"../../.agent/scripts/guardrail_engine"
|
|
543
|
+
],
|
|
544
|
+
"exports": [],
|
|
545
|
+
"dependents": [],
|
|
546
|
+
"riskScore": "Low",
|
|
547
|
+
"blastRadius": 0
|
|
548
|
+
},
|
|
549
|
+
"test/unit/impact_classifier.test.js": {
|
|
550
|
+
"hash": "3771cd2135c0331862cf449be86ec1aac2307bab",
|
|
551
|
+
"imports": [
|
|
552
|
+
"../../.agent/scripts/impact_classifier",
|
|
553
|
+
"../../.agent/scripts/socratic_gate_policy",
|
|
554
|
+
"../../.agent/scripts/token_budget_broker"
|
|
555
|
+
],
|
|
556
|
+
"exports": [],
|
|
557
|
+
"dependents": [],
|
|
558
|
+
"riskScore": "Low",
|
|
559
|
+
"blastRadius": 0
|
|
560
|
+
},
|
|
561
|
+
"test/unit/init.test.js": {
|
|
562
|
+
"hash": "36ecd0c3ff73a3c3858b8e51def028b80af49502",
|
|
563
|
+
"imports": [
|
|
564
|
+
"fs",
|
|
565
|
+
"path",
|
|
566
|
+
"os",
|
|
567
|
+
"../../dist/commands/init",
|
|
568
|
+
"../../dist/utils/fs"
|
|
569
|
+
],
|
|
570
|
+
"exports": [],
|
|
571
|
+
"dependents": [],
|
|
572
|
+
"riskScore": "Low",
|
|
573
|
+
"blastRadius": 0
|
|
574
|
+
},
|
|
575
|
+
"test/unit/integrity_manifest.test.js": {
|
|
576
|
+
"hash": "b1f2885cb9dfda17da745dbc58f25ba3e83857c9",
|
|
577
|
+
"imports": [
|
|
578
|
+
"fs",
|
|
579
|
+
"path",
|
|
580
|
+
"os",
|
|
581
|
+
"../../.agent/scripts/integrity_manifest"
|
|
582
|
+
],
|
|
583
|
+
"exports": [],
|
|
584
|
+
"dependents": [],
|
|
585
|
+
"riskScore": "Low",
|
|
586
|
+
"blastRadius": 0
|
|
587
|
+
},
|
|
588
|
+
"test/unit/learn.test.js": {
|
|
589
|
+
"hash": "6dfd2a37f279176426a5bcd5adfdc0aa047354da",
|
|
590
|
+
"imports": [
|
|
591
|
+
"../../dist/commands/learn",
|
|
592
|
+
"../../dist/utils/helpers"
|
|
593
|
+
],
|
|
594
|
+
"exports": [],
|
|
595
|
+
"dependents": [],
|
|
596
|
+
"riskScore": "Low",
|
|
597
|
+
"blastRadius": 0
|
|
598
|
+
},
|
|
599
|
+
"test/unit/marathon.test.js": {
|
|
600
|
+
"hash": "9554636bbcf0f37f50d26b9cad04e2a91f2888a5",
|
|
601
|
+
"imports": [
|
|
602
|
+
"fs",
|
|
603
|
+
"child_process",
|
|
604
|
+
"../../bin/tribunal-kit"
|
|
605
|
+
],
|
|
606
|
+
"exports": [],
|
|
607
|
+
"dependents": [],
|
|
608
|
+
"riskScore": "Low",
|
|
609
|
+
"blastRadius": 0
|
|
610
|
+
},
|
|
611
|
+
"test/unit/mcp_server.test.js": {
|
|
612
|
+
"hash": "94b12c36aab40034c9b1e73215861a932afe1779",
|
|
613
|
+
"imports": [
|
|
614
|
+
"path",
|
|
615
|
+
"fs",
|
|
616
|
+
"../../bin/mcp-server"
|
|
617
|
+
],
|
|
618
|
+
"exports": [],
|
|
619
|
+
"dependents": [],
|
|
620
|
+
"riskScore": "Low",
|
|
621
|
+
"blastRadius": 0
|
|
622
|
+
},
|
|
623
|
+
"test/unit/memory.test.js": {
|
|
624
|
+
"hash": "d977f5120056f5df7237a4e0e2ebcb79366f459f",
|
|
625
|
+
"imports": [
|
|
626
|
+
"path",
|
|
627
|
+
"fs",
|
|
628
|
+
"os",
|
|
629
|
+
"../../dist/commands/memory"
|
|
630
|
+
],
|
|
631
|
+
"exports": [],
|
|
632
|
+
"dependents": [],
|
|
633
|
+
"riskScore": "Low",
|
|
634
|
+
"blastRadius": 0
|
|
635
|
+
},
|
|
636
|
+
"test/unit/minimal_change.test.js": {
|
|
637
|
+
"hash": "1506859faa65f6bfcd1c0f5937d3c865a93dff87",
|
|
638
|
+
"imports": [
|
|
639
|
+
"../../.agent/scripts/minimal_change_engine"
|
|
640
|
+
],
|
|
641
|
+
"exports": [],
|
|
642
|
+
"dependents": [],
|
|
643
|
+
"riskScore": "Low",
|
|
644
|
+
"blastRadius": 0
|
|
645
|
+
},
|
|
646
|
+
"test/unit/native.test.js": {
|
|
647
|
+
"hash": "d8995b9100d33ddb964d59063638617422c245fe",
|
|
648
|
+
"imports": [
|
|
649
|
+
"../../dist/commands/native"
|
|
650
|
+
],
|
|
651
|
+
"exports": [],
|
|
652
|
+
"dependents": [],
|
|
653
|
+
"riskScore": "Low",
|
|
654
|
+
"blastRadius": 0
|
|
655
|
+
},
|
|
656
|
+
"test/unit/optimize.test.js": {
|
|
657
|
+
"hash": "a61be0e5f53cadb1db9f896c7615c5f6c1a3f7fd",
|
|
658
|
+
"imports": [
|
|
659
|
+
"../../dist/commands/optimize",
|
|
660
|
+
"fs",
|
|
661
|
+
"path",
|
|
662
|
+
"child_process"
|
|
663
|
+
],
|
|
664
|
+
"exports": [],
|
|
665
|
+
"dependents": [],
|
|
666
|
+
"riskScore": "Low",
|
|
667
|
+
"blastRadius": 0
|
|
668
|
+
},
|
|
669
|
+
"test/unit/path_resolution.test.js": {
|
|
670
|
+
"hash": "51e3f5ce95d31aefcd6bd30f0bb53fcc7780f464",
|
|
671
|
+
"imports": [
|
|
672
|
+
"fs",
|
|
673
|
+
"os",
|
|
674
|
+
"path",
|
|
675
|
+
"child_process",
|
|
676
|
+
"../../.agent/scripts/marathon_harness"
|
|
677
|
+
],
|
|
678
|
+
"exports": [],
|
|
679
|
+
"dependents": [],
|
|
680
|
+
"riskScore": "Low",
|
|
681
|
+
"blastRadius": 0
|
|
682
|
+
},
|
|
683
|
+
"test/unit/production_readiness_evidence.test.js": {
|
|
684
|
+
"hash": "97ca92463bc829588a6b4f7a6bbbec2f8f0b954e",
|
|
685
|
+
"imports": [
|
|
686
|
+
"fs",
|
|
687
|
+
"path",
|
|
688
|
+
"child_process",
|
|
689
|
+
"../../.agent/scripts/impact_classifier",
|
|
690
|
+
"../../.agent/scripts/socratic_gate_policy",
|
|
691
|
+
"../../.agent/scripts/token_budget_broker",
|
|
692
|
+
"../../.agent/scripts/integrity_manifest",
|
|
693
|
+
"../../bin/mcp-server"
|
|
694
|
+
],
|
|
695
|
+
"exports": [],
|
|
696
|
+
"dependents": [],
|
|
697
|
+
"riskScore": "Low",
|
|
698
|
+
"blastRadius": 0
|
|
699
|
+
},
|
|
700
|
+
"test/unit/skill_evolution.test.js": {
|
|
701
|
+
"hash": "6f55b4baba76c43b0d136be32487bced013b28de",
|
|
702
|
+
"imports": [
|
|
703
|
+
"../../.agent/scripts/signal_detector",
|
|
704
|
+
"../../.agent/scripts/skill_evolution"
|
|
705
|
+
],
|
|
706
|
+
"exports": [],
|
|
707
|
+
"dependents": [],
|
|
708
|
+
"riskScore": "Low",
|
|
709
|
+
"blastRadius": 0
|
|
710
|
+
},
|
|
711
|
+
"test/unit/stress.test.js": {
|
|
712
|
+
"hash": "fd671d3be2affde8ff8e8912a3c6471a9ad10b42",
|
|
713
|
+
"imports": [
|
|
714
|
+
"path",
|
|
715
|
+
"../../scripts/stress_benchmark"
|
|
716
|
+
],
|
|
717
|
+
"exports": [],
|
|
718
|
+
"dependents": [],
|
|
719
|
+
"riskScore": "Low",
|
|
720
|
+
"blastRadius": 0
|
|
721
|
+
},
|
|
722
|
+
"test/unit/utils.test.js": {
|
|
723
|
+
"hash": "5039642000decc8bacd52c1c1581061045c81195",
|
|
724
|
+
"imports": [
|
|
725
|
+
"../../.agent/scripts/_utils"
|
|
256
726
|
],
|
|
257
727
|
"exports": [],
|
|
258
728
|
"dependents": [],
|
|
Binary file
|