-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
376 lines (376 loc) · 25.5 KB
/
Copy pathpackage.json
File metadata and controls
376 lines (376 loc) · 25.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
{
"name": "noderoom",
"version": "0.1.1",
"private": false,
"description": "A live collaborative room where humans and NodeAgents (public + private) edit a shared spreadsheet, note, and post-it wall together — with a lock -> draft -> smart-merge collaboration model, per-room traces, and auto-allow. Distilled from NodeBench AI / ScratchNode.",
"type": "module",
"license": "MIT",
"author": "Homen Shum",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --port 5260 --strictPort",
"demo": "tsx demo/runRoomDemo.ts",
"demo:agent": "tsx demo/runAgent.ts",
"demo:public-gold:check": "tsx scripts/validate-public-gold-demo.ts",
"eval": "tsx evals/runEval.ts",
"eval:real": "tsx evals/runEval.ts --real",
"sfn": "tsx scripts/sfn.ts",
"simulate:credits": "tsx scripts/simulate-credits.ts",
"simulate:credits:write": "tsx scripts/simulate-credits.ts --json-out docs/eval/credit-simulation.json",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:journeys": "playwright test --config=playwright.journeys.config.ts",
"qa:story": "npm run build && node scripts/story-route-dogfood.mjs",
"qa:story:prod": "node scripts/story-route-dogfood.mjs --base-url https://noderoom.live",
"test:product:memory": "node scripts/run-product-memory-playwright.mjs",
"test:product:live": "tsx scripts/live-product-gate.ts",
"test:product:live:agent": "tsx scripts/live-product-gate.ts --agent --strict-review",
"prod:gate": "npm audit --omit=dev --audit-level=moderate && npm run security:gate && npm run design:audit && npm run qa:matrix:check && npm run content:fluency:check && npm run proofs:staleness && npm run fresh-room:proofs && npm run slo:gate && npm run typecheck -- --pretty false && npx tsc --noEmit --project convex/tsconfig.json --pretty false && npm test -- --run && npm run test:product:memory && npm run build && npm run security:gate -- --dist",
"prod:gate:live": "npm run prod:gate && npm run test:product:live",
"prod:gate:live:agent": "npm run prod:gate && npm run test:product:live:agent",
"typecheck": "tsc --noEmit",
"floor": "npm run typecheck -- --pretty false && npx tsc --noEmit --project convex/tsconfig.json --pretty false && npm test -- --run",
"doctor": "npm run proofloop:doctor",
"check": "npm run floor",
"proof": "npm run fresh-room:proofs",
"ship:prod": "npm run convex:deploy:guard && npm run convex:deploy && node scripts/ship-prod-verify.mjs",
"convex:dev": "convex dev",
"convex:deploy": "convex dev --once --env-file .env.local && tsx scripts/convex-deploy-verify.ts",
"convex:deploy:guard": "node -e \"const fs=require('fs');const m=fs.readFileSync('.env.local','utf8').match(/^CONVEX_DEPLOYMENT=(.+)$/m);if(!m||!/zealous-goshawk-766/.test(m[1])){console.error('[guard] .env.local CONVEX_DEPLOYMENT must resolve to zealous-goshawk-766 (the deployment Vercel production reads from). Got:',m?m[1]:'(unset)');process.exit(1);}console.log('[guard] OK — CONVEX_DEPLOYMENT='+m[1]);\"",
"convex:deploy:verify": "tsx scripts/convex-deploy-verify.ts",
"benchmark": "tsx scripts/benchmark/run.ts",
"benchmark:official:readiness": "tsx scripts/official-benchmark-readiness.ts",
"benchmark:fresh-room:proofs": "tsx scripts/fresh-room-proof-registry.ts",
"benchmark:bankertoolbench:ingest": "tsx scripts/bankertoolbench-ingest.ts",
"benchmark:bankertoolbench:stage": "tsx scripts/bankertoolbench-stage.ts",
"benchmark:bankertoolbench:run": "tsx scripts/bankertoolbench-run.ts",
"benchmark:bankertoolbench:proof": "tsx scripts/bankertoolbench-proof-check.ts",
"benchmark:bankertoolbench:manifest-lock": "tsx scripts/bankertoolbench-manifest-lock.ts",
"benchmark:bankertoolbench:official-contract": "tsx scripts/bankertoolbench-official-contract.ts --json-out docs/eval/bankertoolbench-official-contract.json",
"benchmark:bankertoolbench:nodeagent-sweep": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/bankertoolbench-nodeagent-full-sweep.ps1",
"benchmark:bankertoolbench:nodeagent-clean-parallel": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/bankertoolbench-nodeagent-clean-parallel.ps1",
"benchmark:bankertoolbench:nodeagent-clean-sequential": "node scripts/bankertoolbench-nodeagent-clean-sequential.mjs",
"benchmark:bankertoolbench:ledger-ingest": "tsx scripts/bankertoolbench-ledger-ingest.ts",
"benchmark:bankertoolbench:fullsuite-gate": "tsx scripts/bankertoolbench-fullsuite-gate.ts",
"benchmark:bankertoolbench:livesuite-gate": "tsx scripts/bankertoolbench-livesuite-gate.ts",
"benchmark:contamination": "tsx scripts/benchmark-contamination-check.ts",
"benchmark:spreadsheetbench:ingest": "tsx scripts/spreadsheetbench-ingest.ts",
"benchmark:spreadsheetbench:stage": "tsx scripts/spreadsheetbench-stage.ts",
"benchmark:spreadsheetbench:run": "tsx scripts/spreadsheetbench-run.ts",
"benchmark:spreadsheetbench:run-chunked": "tsx scripts/spreadsheetbench-run-chunked.ts",
"benchmark:spreadsheetbench:merge-repair": "tsx scripts/spreadsheetbench-merge-repair-report.ts",
"benchmark:spreadsheetbench:rescore-existing": "tsx scripts/spreadsheetbench-rescore-existing.ts",
"benchmark:spreadsheetbench:official-v1-project": "tsx scripts/spreadsheetbench-official-v1-project.ts",
"benchmark:spreadsheetbench:official-v1-project-chunked": "tsx scripts/spreadsheetbench-official-v1-project-chunked.ts",
"benchmark:spreadsheetbench:accept-official-v1": "tsx scripts/spreadsheetbench-accept-official-v1.ts",
"benchmark:spreadsheetbench:official-v2-project": "tsx scripts/spreadsheetbench-official-v2-project.ts",
"benchmark:spreadsheetbench:refresh-excel": "python scripts/spreadsheetbench-refresh-excel.py",
"benchmark:spreadsheetbench:accept-official-v2": "tsx scripts/spreadsheetbench-accept-official-v2.ts",
"benchmark:spreadsheetbench:v2-quality-gate": "tsx scripts/spreadsheetbench-v2-quality-gate.ts",
"benchmark:spreadsheetbench:visible-repair-replay": "tsx scripts/spreadsheetbench-visible-repair-replay.ts",
"benchmark:spreadsheetbench:project-model-report": "tsx scripts/spreadsheetbench-project-model-report.ts",
"benchmark:spreadsheetbench:score": "tsx scripts/spreadsheetbench-score.ts",
"benchmark:spreadsheetbench:proof": "tsx scripts/spreadsheetbench-proof-check.ts",
"benchmark:spreadsheetbench:stage-proof": "tsx scripts/spreadsheetbench-stage-proof-check.ts",
"benchmark:spreadsheetbench:official-output-receipts": "tsx scripts/spreadsheetbench-official-output-receipts.ts",
"benchmark:finch:content-parts": "python scripts/finch-content-parts-recovery.py",
"benchmark:finch:official-judge": "python scripts/finch-official-judge.py",
"benchmark:finch:canonical-judge": "python scripts/finch-official-judge.py --provider openai --judge-model gpt-5-mini",
"benchmark:finch:shadow-judge": "python scripts/finch-official-judge.py --provider openrouter --judge-model openrouter/free --input-usd-per-1m 0 --output-usd-per-1m 0",
"benchmark:finch:judge-disagreement": "tsx scripts/finch-judge-disagreement.ts",
"benchmark:finauditing:official-judge": "python scripts/finauditing-official-judge.py",
"benchmark:mbabench:official-judge": "python scripts/mbabench-official-judge.py",
"benchmark:mbabench:official-sweep": "python scripts/mbabench-official-sweep.py",
"benchmark:sec-xbrl:ingest": "tsx scripts/sec-xbrl-ingest.ts",
"benchmark:sec-xbrl": "tsx scripts/sec-xbrl-audit-bench.ts",
"benchmark:spreadsheetbench:routes": "tsx scripts/spreadsheetbench-route-selection.ts",
"benchmark:spreadsheetbench:chart-visual:grade": "tsx scripts/spreadsheetbench-chart-visual-grade.ts",
"benchmark:spreadsheetbench:chart-visual:probe": "tsx scripts/spreadsheetbench-chart-visual-probe.ts --json-out docs/eval/spreadsheetbench-chart-visual-probe.json",
"benchmark:agent-sandbox": "tsx scripts/agent-workspace-sandbox-smoke.ts",
"benchmark:docker-sandbox:probe": "tsx scripts/docker-sandbox-probe.ts --json-out docs/eval/docker-sandbox-probe.json",
"benchmark:openrouter-convex": "tsx scripts/openrouter-convex-benchmark.ts",
"benchmark:proofloop:board": "tsx scripts/proofloop-benchmark-board.ts",
"benchmark:proofloop:normalized": "tsx scripts/proofloop-normalized-benchmarks.ts",
"benchmark:proofloop:company-tasks": "tsx scripts/proofloop-company-task-coverage.ts",
"benchmark:proofloop:harness-economics": "tsx scripts/proofloop-harness-economics.ts",
"benchmark:proofloop:npx-package": "tsx scripts/proofloop-npx-package-proof.ts",
"benchmark:proofloop:preprod": "tsx scripts/proofloop-preprod-readiness.ts",
"benchmark:proofloop:preprod:live": "tsx scripts/proofloop-preprod-readiness.ts --live-url https://noderoom.live --live-story",
"benchmark:proofloop:adapter-blockers": "tsx scripts/proofloop-adapter-blockers.ts",
"benchmark:proofloop:official-outputs": "tsx scripts/proofloop-official-outputs.ts",
"benchmark:proofloop:promote-official-score": "tsx scripts/proofloop-promote-official-score.ts",
"benchmark:proofloop:external-adapter": "tsx scripts/proofloop-external-adapter-run.ts",
"benchmark:proofloop:external-adapter-live-room": "tsx scripts/proofloop-external-adapter-live-room-run.ts",
"benchmark:proofloop:prod-browser-adapters": "tsx scripts/proofloop-prod-browser-adapters.ts",
"benchmark:proofloop:free-model-gauge": "tsx scripts/proofloop-free-model-gauge.ts",
"benchmark:proofloop:official-preflight": "tsx scripts/proofloop-official-score-preflight.ts",
"benchmark:proofloop:proxy-model-sweep": "tsx scripts/proofloop-proxy-model-sweep.ts",
"benchmark:proofloop:full-proxy-sweep": "tsx scripts/proofloop-full-proxy-benchmark-sweep.ts",
"benchmark:proofloop:prod-proxy-matrix": "tsx scripts/proofloop-prod-proxy-benchmark-matrix.ts",
"benchmark:proofloop:prod-proxy-longrun": "tsx scripts/proofloop-prod-proxy-longrun.ts",
"benchmark:proofloop:standalone-runner-plan": "tsx scripts/proofloop-standalone-runner-plan.ts",
"benchmark:proofloop:two-layer-plan": "tsx scripts/proofloop-standalone-runner-plan.ts --json-out docs/eval/proofloop-two-layer-certification-runner-plan.json --md-out docs/eval/PROOFLOOP_TWO_LAYER_CERTIFICATION.md",
"benchmark:proofloop:charts": "tsx scripts/proofloop-charts.ts",
"benchmark:official:task-coverage": "tsx scripts/official-benchmark-task-coverage.ts",
"benchmark:official:ui-coverage": "tsx scripts/official-benchmark-ui-coverage.ts",
"fresh-room:proofs": "tsx scripts/fresh-room-proof-verify.ts",
"benchmark:free": "tsx scripts/benchmark/run.ts openrouter/free-auto --free-auto-top=5 --no-merge --model-timeout-ms=180000 --model-reserve-ms=15000 --row-hard-timeout-ms=210000",
"benchmark:charts": "tsx scripts/benchmark/charts.ts",
"eval:model-matrix": "tsx scripts/model-eval-matrix.ts",
"eval:model-matrix:live": "tsx scripts/model-eval-matrix.ts --live --allow-failures --json-out docs/eval/model-eval-matrix-plan.json",
"openrouter:free": "tsx scripts/openrouter-free-discover.ts",
"openrouter:paid": "tsx scripts/openrouter-paid-discover.ts",
"provider-parser:smoke": "tsx scripts/provider-parser-smoke.ts",
"okf:validate": "tsx scripts/okf-validate.ts",
"eval:retrieval": "tsx scripts/retrieval-eval.ts",
"algorithm-artifact:smoke": "tsx scripts/algorithm-artifact-smoke.ts",
"agent:improve": "tsx scripts/agent-improvement-loop.ts",
"scaffold:check": "tsx scripts/scaffold-check.ts",
"proofloop:accounting": "tsx scripts/proofloop-runner.ts --config=proofloop/accounting/proofloop.accounting.config.json",
"proofloop:notion": "tsx scripts/proofloop-runner.ts --config=proofloop/notion/proofloop.notion.config.json",
"proofloop:accounting:seed": "tsx proofloop/accounting/seed-datasets.ts",
"proofloop:notion:seed": "tsx proofloop/notion/seed-datasets.ts",
"proofloop:live:accounting": "tsx scripts/live-proofloop-runner.ts --config=proofloop/accounting/live.accounting.config.json",
"proofloop:live:notion": "tsx scripts/live-proofloop-runner.ts --config=proofloop/notion/live.notion.config.json",
"proofloop:live:accounting:browser": "tsx scripts/proofloop-live-playwright.ts accounting-browser",
"proofloop:live:notion:browser": "tsx scripts/proofloop-live-playwright.ts notion-browser",
"proofloop:live:browser": "tsx scripts/proofloop-live-playwright.ts browser",
"proofloop:live:adapter": "tsx scripts/proofloop-live-playwright.ts adapter",
"proofloop:live:btb": "tsx scripts/proofloop-live-playwright.ts bankertoolbench",
"proofloop:live:starter": "tsx scripts/live-starter-room-proof.ts",
"proofloop:design:room-contract": "tsx scripts/design-room-ui-contract-proof.ts",
"proofloop:live:underwriting": "node scripts/proofloop.mjs underwriting-live",
"proofloop:live:underwriting:verify": "node scripts/proofloop.mjs verify-underwriting-live",
"proofloop:credit-data": "node scripts/proofloop.mjs credit-data",
"proofloop:live:spreadsheetbench-v1": "tsx scripts/proofloop-live-playwright.ts spreadsheetbench-v1",
"proofloop:live:spreadsheetbench-v2": "tsx scripts/proofloop-live-playwright.ts spreadsheetbench-v2",
"proofloop:proximitty:browser": "tsx scripts/proofloop-live-playwright.ts proximitty-browser",
"proofloop:live:multi-user-conflict": "tsx scripts/proofloop-live-playwright.ts multi-user-conflict",
"proofloop": "node scripts/proofloop.mjs",
"proofloop:dev-audience-ready": "npm run proofloop -- goal init dev-audience-ready --template dev-audience-ready --force && npm run proofloop -- supervise --goal dev-audience-ready && npm run proofloop -- gate --goal dev-audience-ready",
"proofloop:buyer-validation": "tsx scripts/proofloop-buyer-validation.ts",
"proofloop:package": "tsx scripts/proofloop-package.ts",
"proofloop:orchestrator": "tsx scripts/proofloop-orchestrator.ts",
"proofloop:handoff": "tsx scripts/proofloop-collect-live-artifacts.ts",
"benchmark:proofloop:orchestrator-longrun": "tsx scripts/proofloop-orchestrator.ts dogfood --execute-safe --fresh-template --json-out docs/eval/proofloop-orchestrator-dogfood.json --md-out docs/eval/PROOFLOOP_ORCHESTRATOR_DOGFOOD.md",
"proofloop:proximitty": "node scripts/proofloop.mjs proximitty",
"proofloop:proximitty:models": "node proofloop/adapters/model-delta.mjs --suite=proximitty-underwriting-pr0 --run=latest",
"proofloop:proximitty:clips": "node proofloop/adapters/generate-clips.mjs --suite=proximitty-underwriting-pr0 --run=latest",
"nodeagent:frame:smoke": "tsx scripts/nodeagent-frame-smoke.ts",
"nodeagent:ingestion:smoke": "tsx scripts/nodeagent-ingestion-orchestrator-smoke.ts",
"nodeslide:consumer:proof": "tsx scripts/nodeslide-consumer-proof.ts",
"nodeslide:mounted:release:proof": "tsx scripts/nodeslide-mounted-release-proof.ts --lock vendor/nodeslide/release-lock.json",
"omnigent:nodeagent:smoke": "tsx scripts/omnigent-nodeagent-smoke.ts --json-out docs/eval/omnigent-nodeagent-smoke.json",
"nodeagent:api-docs": "tsx scripts/nodeagent-api-docs.ts",
"halo:self-improve:smoke": "tsx scripts/halo-self-improvement-smoke.ts --strict",
"halo:variant:select": "tsx scripts/halo-variant-selection.ts --strict",
"halo:convex-context:smoke": "tsx scripts/halo-convex-context-smoke.ts --strict",
"halo:live-path:calibrate": "tsx scripts/halo-live-path-calibration.ts --strict",
"halo:status": "tsx scripts/halo-status.ts",
"halo:snapshots": "tsx scripts/halo-snapshot-report.ts",
"halo:overnight": "tsx scripts/halo-overnight.ts",
"halo:supervise": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/halo-supervise-until.ps1",
"walkthroughs": "tsx scripts/walkthroughs/capture.ts",
"walkthroughs:render": "tsx scripts/walkthroughs/render.ts",
"walkthrough-review": "tsx packages/walkthrough-review-cli/src/cli.ts run",
"walkthrough-review:mcp": "tsx packages/walkthrough-review-cli/src/mcp.ts",
"walkthroughs:review": "tsx scripts/walkthroughs/review.ts",
"walkthroughs:studio": "remotion studio remotion/index.ts",
"episode": "tsx scripts/walkthroughs/episode-cli.ts",
"episode:voiceover": "tsx scripts/walkthroughs/voiceover.ts",
"episode:assemble": "tsx scripts/walkthroughs/episode.ts",
"episode:render": "tsx scripts/walkthroughs/render-episode.ts",
"episode:judge": "tsx scripts/walkthroughs/judge-video.ts",
"episode:publish": "tsx scripts/walkthroughs/publish-episode.ts",
"docs:code-visuals": "tsx scripts/generate-doc-code-visuals.ts",
"media:gemini-judge": "tsx scripts/gemini-demo-media-judge.ts",
"media:attach-btb-gemini-judge": "tsx scripts/attach-btb-gemini-judge.ts",
"seo:audit": "tsx skills/seo-qa/scripts/audit-static.ts",
"seo:search-console": "tsx skills/seo-qa/scripts/search-console-report.ts",
"seo:perf": "tsx skills/seo-qa/scripts/performance-check.ts",
"seo:compress-video": "tsx skills/seo-qa/scripts/compress-video.ts",
"seo:judge-video": "tsx skills/seo-qa/scripts/judge-video-gemini.ts",
"nebius:list-models": "tsx scripts/nebius/list-models.ts",
"nebius:list-endpoints": "tsx scripts/nebius/list-endpoints.ts",
"nebius:ensure-endpoint": "tsx scripts/nebius/ensure-endpoint.ts",
"nebius:smoke-test": "tsx scripts/nebius/smoke-test-endpoint.ts",
"qa:ui:capture": "tsx scripts/design-quality.ts capture",
"qa:ui:perf": "tsx scripts/design-quality.ts perf",
"qa:ui:a11y": "tsx scripts/design-quality.ts a11y",
"qa:ui:judge": "tsx scripts/design-quality.ts judge",
"qa:ui:references": "tsx scripts/design-quality.ts references",
"qa:ui:virality": "tsx scripts/design-quality.ts virality",
"qa:ui:scorecard": "tsx scripts/design-quality.ts scorecard",
"design:manifest": "tsx scripts/design-system.ts manifest --json",
"design:audit": "tsx scripts/design-system.ts audit && npm run ui:layer-audit && npm run ui:contract:check",
"ui:contract:emit": "tsx scripts/ui-contract-emit.ts",
"ui:contract:check": "tsx scripts/ui-contract-emit.ts --check",
"ui:layer-audit": "tsx scripts/ui-layer-audit.ts",
"ui:primitive-audit": "tsx scripts/ui-layer-audit.ts --scope=primitives",
"ui:motion-audit": "tsx scripts/ui-layer-audit.ts --scope=motion",
"design:parity": "tsx scripts/design-parity.ts",
"workflow:trace-previews": "tsx scripts/render-workflow-preview.ts",
"workflow:app-previews": "playwright test capture-previews",
"workflow:previews": "npm run workflow:trace-previews",
"workflow:previews:all": "npm run workflow:trace-previews && npm run workflow:app-previews",
"architecture:budget": "tsx scripts/architecture-budget-check.ts",
"convex:boundaries": "tsx scripts/convex-boundary-check.ts",
"ui:gemini-review": "tsx scripts/gemini-ui-review.ts",
"liteparse:smoke": "tsx scripts/liteparse-smoke.ts",
"free-job:smoke": "tsx scripts/free-job-smoke.ts",
"slo:gate": "tsx scripts/slo-gate.ts",
"security:gate": "tsx scripts/security-gate.ts",
"slo:gate:write": "tsx scripts/slo-gate.ts --json-out docs/eval/slo-gate.json",
"qa:matrix": "tsx scripts/qa-matrix.ts",
"qa:matrix:check": "tsx scripts/qa-matrix.ts --check",
"qa:e2e:inventory": "tsx scripts/browser-e2e-inventory.ts",
"qa:e2e:inventory:check": "tsx scripts/browser-e2e-inventory.ts --check",
"content:fluency:check": "tsx scripts/content-fluency-check.ts",
"commit:summary": "tsx scripts/commit-message.ts",
"commit:check": "tsx scripts/commit-message.ts --check-last",
"commit:check:range": "tsx scripts/commit-message.ts --check-range",
"eval:professional": "vitest run tests/professionalWorkflows.test.ts",
"eval:professional:catalog-proofs": "tsx evals/professionalCatalogProofs.ts --require-full",
"eval:professional:live-catalog": "tsx evals/professionalLiveCatalog.ts --record",
"eval:professional:live-runtime": "tsx evals/professionalRuntimeLive.ts --real deepseek/deepseek-v4-flash --record",
"eval:startup-diligence:live": "tsx scripts/startup-diligence-live-eval.ts --strict",
"eval:startup-diligence:provider": "tsx scripts/startup-diligence-provider-eval.ts --strict",
"eval:professional:proofs": "tsx evals/professionalProofLedger.ts",
"eval:chat-intake:live": "tsx evals/chatIntakeRuntime.ts --real deepseek/deepseek-v4-flash --managed-locks --record",
"eval:managed-lock": "tsx evals/managedLockPerf.ts --strict",
"eval:multiuser-coordination": "tsx evals/multiUserCoordinationProof.ts --strict",
"eval:finance-model": "tsx scripts/finance-model-eval.ts",
"eval:finance-model-private": "tsx scripts/private-finance-model-gold.ts",
"eval:credit": "tsx evals/creditEval.ts",
"ladder": "tsx evals/ladder.ts",
"ladder:real": "tsx evals/ladder.ts --real",
"ladder:free": "tsx evals/ladder.ts --real openrouter/free-auto --free-auto-top=5 --levels=1-4 --rung-timeout-ms=540000 --reserve-ms=30000 --json-out docs/eval/free-auto-router-ladder.json",
"eval:diff": "tsx evals/evalDiff.ts",
"proofs:staleness": "tsx scripts/proof-staleness-check.ts",
"proofs:publish": "tsx scripts/proof-release-publish.ts --write-readme",
"proofs:publish:check": "tsx scripts/proof-release-publish.ts --check",
"eval:chat-intake": "tsx evals/chatIntakeRuntime.ts",
"qa:gif": "tsx scripts/judge-demo-gif.ts",
"qa:states": "playwright test e2e/state-captures.spec.ts",
"qa:judge-states": "tsx scripts/judge-state-captures.ts",
"proofloop:init": "npm run proofloop -- init --agent auto --live",
"proofloop:live": "npm run proofloop -- this-repo --live",
"proofloop:gate": "npm run proofloop -- gate --goal official-scores",
"proofloop:resume": "npm run proofloop -- resume --goal official-scores --dense",
"proofloop:doctor": "npm run proofloop -- doctor --json",
"proofloop:official-preflight": "npm run benchmark:proofloop:official-preflight -- --strict",
"proofloop:report": "npm run proofloop -- report latest",
"proofloop:charts": "npm run proofloop -- charts latest",
"voice:qa:smoke": "tsx scripts/voice-qa-smoke.ts",
"voice:free-audio:proofloop": "tsx scripts/voice-free-audio-proofloop.ts",
"voice:free-audio:live-proof": "tsx scripts/voice-free-audio-live-proof.ts",
"voice:local-audio:setup": "tsx scripts/voice-local-audio-setup.ts",
"voice:browser-mic:proof": "tsx scripts/voice-browser-mic-proof.ts",
"voice:prod-deploy:proof": "tsx scripts/voice-prod-deploy-proof.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.84",
"@ai-sdk/google": "^3.0.82",
"@ai-sdk/openai": "^3.0.71",
"@assistant-ui/react": "^0.14.14",
"@assistant-ui/react-o11y": "^0.0.25",
"@auth/core": "0.41.1",
"@convex-dev/auth": "0.0.94",
"@convex-dev/persistent-text-streaming": "^0.3.2",
"@convex-dev/prosemirror-sync": "^0.2.4",
"@convex-dev/workflow": "^0.4.4",
"@convex-dev/workpool": "^0.4.7",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@evilmartians/agent-prism-data": "^0.0.9",
"@evilmartians/agent-prism-types": "^0.0.9",
"@ikhrustalev/convex-debouncer": "^0.1.2",
"@llamaindex/liteparse": "^2.0.5",
"@nodeslide/backend": "file:vendor/nodeslide/nodeslide-backend-0.2.2.tgz",
"@nodeslide/contracts": "file:vendor/nodeslide/nodeslide-contracts-0.2.2.tgz",
"@nodeslide/convex": "file:vendor/nodeslide/nodeslide-convex-0.2.2.tgz",
"@nodeslide/engine": "file:vendor/nodeslide/nodeslide-engine-0.2.2.tgz",
"@nodeslide/react": "file:vendor/nodeslide/nodeslide-react-0.2.2.tgz",
"@nodeslide/react-headless": "file:vendor/nodeslide/nodeslide-react-headless-0.2.2.tgz",
"@radix-ui/react-use-controllable-state": "^1.2.3",
"@streamdown/cjk": "^1.0.3",
"@streamdown/code": "^1.1.1",
"@streamdown/math": "^1.0.2",
"@streamdown/mermaid": "^1.0.2",
"@tiptap/core": "^3.26.0",
"@tiptap/extension-unique-id": "^3.26.0",
"@tiptap/html": "^3.26.0",
"@tiptap/pm": "^3.26.0",
"@tiptap/react": "^3.26.0",
"@tiptap/starter-kit": "^3.26.0",
"@xyflow/react": "^12.11.0",
"ai": "^6.0.206",
"ansi-to-react": "^6.2.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"convex": "^1.42.3",
"embla-carousel-react": "^8.6.0",
"exceljs": "^4.4.0",
"jszip": "^3.10.1",
"lucide-react": "^0.515.0",
"motion": "^12.42.2",
"nanoid": "^6.0.0",
"nodegraph": "https://github.com/HomenShum/NodeGraph/releases/download/v0.3.1/nodegraph-0.3.1.tgz",
"pyodide": "^314.0.2",
"radix-ui": "^1.6.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-pdf": "^10.4.1",
"saxes": "5.0.1",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.6.0",
"tokenlens": "^1.3.1",
"undici": "^8.4.0",
"unpdf": "^1.6.2",
"use-stick-to-bottom": "^1.1.6",
"zod": "4.3.6"
},
"devDependencies": {
"@ai-sdk/gateway": "^4.0.6",
"@edge-runtime/vm": "^5.0.0",
"@playwright/test": "^1.60.0",
"@remotion/cli": "^4.0.474",
"@tailwindcss/vite": "^4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"convex-test": "^0.0.53",
"gifenc": "^1.0.3",
"jsdom": "^25.0.1",
"pngjs": "^7.0.0",
"remotion": "^4.0.474",
"shiki": "^4.2.0",
"tailwindcss": "^4.3.2",
"tsx": "^4.19.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^4.1.10",
"ws": "8.21.0"
},
"overrides": {
"minimatch@3.1.5": {
"brace-expansion": "1.1.16"
},
"convex": {
"esbuild": "0.28.1"
},
"exceljs": {
"uuid": "11.1.1"
},
"linkify-it": "5.0.2",
"ws": "8.21.0"
}
}