thumbgate 1.28.4 → 1.29.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.
Files changed (65) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/.well-known/llms.txt +18 -10
  3. package/.well-known/mcp/server-card.json +1 -1
  4. package/README.md +5 -2
  5. package/adapters/claude/.mcp.json +2 -2
  6. package/adapters/forge/forge.yaml +3 -3
  7. package/adapters/mcp/server-stdio.js +1 -1
  8. package/adapters/opencode/opencode.json +1 -1
  9. package/bin/cli.js +8 -8
  10. package/bin/postinstall.js +4 -13
  11. package/config/github-about.json +5 -4
  12. package/config/post-deploy-marketing-pages.json +6 -6
  13. package/docs/integrations/grafana/README.md +109 -0
  14. package/docs/integrations/grafana/thumbgate-revenue-evidence-dashboard.json +1930 -0
  15. package/openapi/openapi.yaml +240 -5
  16. package/package.json +59 -19
  17. package/public/agent-manager.html +10 -11
  18. package/public/agents-cost-savings.html +2 -2
  19. package/public/assets/brand/thumbgate-logo-transparent.svg +6 -11
  20. package/public/assets/brand/thumbgate-mark-inline-v3.svg +11 -10
  21. package/public/assets/brand/thumbgate-mark.svg +10 -11
  22. package/public/blog/inside-your-boundary.html +114 -0
  23. package/public/blog/process-over-outcome-gates.html +119 -0
  24. package/public/blog.html +296 -402
  25. package/public/brand/thumbgate-mark.svg +5 -9
  26. package/public/codex-enterprise.html +2 -2
  27. package/public/compare.html +12 -3
  28. package/public/diagnostic.html +79 -29
  29. package/public/guide.html +4 -4
  30. package/public/index.html +1088 -2098
  31. package/public/install.html +3 -3
  32. package/public/js/buyer-intent.js +33 -18
  33. package/public/numbers.html +2 -2
  34. package/public/pricing.html +268 -408
  35. package/public/pro.html +4 -4
  36. package/scripts/billing.js +456 -126
  37. package/scripts/buyer-paths.js +102 -0
  38. package/scripts/cli-feedback.js +2 -2
  39. package/scripts/commercial-offer.js +18 -10
  40. package/scripts/external-customer-audit.js +881 -0
  41. package/scripts/feedback-loop.js +26 -0
  42. package/scripts/gates-engine.js +123 -1
  43. package/scripts/grafana-revenue-evidence.js +856 -0
  44. package/scripts/jsonl-window.js +89 -0
  45. package/scripts/lesson-embedding-index.js +3 -7
  46. package/scripts/meta-agent-loop.js +20 -2
  47. package/scripts/observability-env.js +139 -0
  48. package/scripts/observability-setup.js +55 -0
  49. package/scripts/plausible-domain-config.js +4 -0
  50. package/scripts/provider-live-evidence.js +1290 -0
  51. package/scripts/provider-payment-reconciler.js +442 -0
  52. package/scripts/provider-revenue-evidence.js +249 -0
  53. package/scripts/rate-limiter.js +1 -5
  54. package/scripts/revenue-action-eligibility.js +414 -0
  55. package/scripts/revenue-evidence-remediation.js +694 -0
  56. package/scripts/revenue-offer-system.js +709 -0
  57. package/scripts/sales-pipeline.js +1117 -0
  58. package/scripts/seo-gsd.js +8 -4
  59. package/scripts/stripe-credentials.js +37 -0
  60. package/scripts/stripe-revenue-catalog-audit.js +363 -0
  61. package/scripts/stripe-revenue-catalog.js +164 -0
  62. package/scripts/telemetry-analytics.js +23 -3
  63. package/scripts/vector-store.js +83 -7
  64. package/scripts/workflow-intake-queue.js +483 -0
  65. package/src/api/server.js +521 -114
@@ -338,6 +338,150 @@ components:
338
338
  sprintBriefUrl:
339
339
  type: string
340
340
  format: uri
341
+ WorkflowIntakeClosePacket:
342
+ type: object
343
+ required:
344
+ - status
345
+ - leadId
346
+ - blockers
347
+ - verificationPlan
348
+ - externalActionAuthorized
349
+ - revenueRecognized
350
+ properties:
351
+ status:
352
+ type: string
353
+ enum: [approval_ready_not_authorized, hold_not_approval_ready]
354
+ leadId:
355
+ type: string
356
+ destination:
357
+ type: object
358
+ nullable: true
359
+ properties:
360
+ channel:
361
+ type: string
362
+ enum: [email]
363
+ address:
364
+ type: string
365
+ format: email
366
+ offer:
367
+ type: object
368
+ nullable: true
369
+ additionalProperties: true
370
+ draft:
371
+ type: object
372
+ nullable: true
373
+ properties:
374
+ subject:
375
+ type: string
376
+ body:
377
+ type: string
378
+ approvalPhrase:
379
+ type: string
380
+ nullable: true
381
+ blockers:
382
+ type: array
383
+ items:
384
+ type: string
385
+ evidence:
386
+ type: object
387
+ additionalProperties: true
388
+ verificationPlan:
389
+ type: array
390
+ items:
391
+ type: string
392
+ externalActionAuthorized:
393
+ type: boolean
394
+ enum: [false]
395
+ revenueRecognized:
396
+ type: boolean
397
+ enum: [false]
398
+ WorkflowIntakeDiscoveryPacket:
399
+ type: object
400
+ required:
401
+ - type
402
+ - status
403
+ - leadId
404
+ - blockers
405
+ - verificationPlan
406
+ - externalActionAuthorized
407
+ - revenueRecognized
408
+ properties:
409
+ type:
410
+ type: string
411
+ enum: [discovery_questions]
412
+ status:
413
+ type: string
414
+ enum: [approval_ready_not_authorized, hold_not_approval_ready]
415
+ leadId:
416
+ type: string
417
+ destination:
418
+ type: object
419
+ nullable: true
420
+ properties:
421
+ channel:
422
+ type: string
423
+ enum: [email]
424
+ address:
425
+ type: string
426
+ format: email
427
+ draft:
428
+ type: object
429
+ nullable: true
430
+ properties:
431
+ subject:
432
+ type: string
433
+ body:
434
+ type: string
435
+ approvalPhrase:
436
+ type: string
437
+ nullable: true
438
+ blockers:
439
+ type: array
440
+ items:
441
+ type: string
442
+ evidence:
443
+ type: object
444
+ additionalProperties: true
445
+ verificationPlan:
446
+ type: array
447
+ items:
448
+ type: string
449
+ externalActionAuthorized:
450
+ type: boolean
451
+ enum: [false]
452
+ revenueRecognized:
453
+ type: boolean
454
+ enum: [false]
455
+ WorkflowIntakeQueueResponse:
456
+ type: object
457
+ required: [generatedAt, total, eligibleTotal, returned, approvalReadyTotal, discoveryReadyTotal, leads]
458
+ properties:
459
+ generatedAt:
460
+ type: string
461
+ format: date-time
462
+ total:
463
+ type: integer
464
+ eligibleTotal:
465
+ type: integer
466
+ returned:
467
+ type: integer
468
+ approvalReadyTotal:
469
+ type: integer
470
+ discoveryReadyTotal:
471
+ type: integer
472
+ primaryApprovalAction:
473
+ nullable: true
474
+ allOf:
475
+ - $ref: '#/components/schemas/WorkflowIntakeClosePacket'
476
+ primaryDiscoveryAction:
477
+ nullable: true
478
+ allOf:
479
+ - $ref: '#/components/schemas/WorkflowIntakeDiscoveryPacket'
480
+ leads:
481
+ type: array
482
+ items:
483
+ type: object
484
+ additionalProperties: true
341
485
  WorkflowSprintAdvanceRequest:
342
486
  type: object
343
487
  required: [leadId, status]
@@ -361,6 +505,66 @@ components:
361
505
  type: array
362
506
  items:
363
507
  type: string
508
+ qualificationReview:
509
+ type: object
510
+ description: Required evidence-based buyer qualification review when advancing to qualified.
511
+ required:
512
+ - severityAndFrequency
513
+ - measurableImpact
514
+ - urgencyAndTrigger
515
+ - decisionAuthority
516
+ - budgetMechanism
517
+ - offerFit
518
+ - proofRequired
519
+ - nextStep
520
+ - evidenceReferences
521
+ - zeroSpendStatus
522
+ properties:
523
+ severityAndFrequency:
524
+ type: string
525
+ measurableImpact:
526
+ type: string
527
+ urgencyAndTrigger:
528
+ type: string
529
+ decisionAuthority:
530
+ type: string
531
+ budgetMechanism:
532
+ type: string
533
+ offerFit:
534
+ type: string
535
+ proofRequired:
536
+ type: string
537
+ nextStep:
538
+ type: string
539
+ evidenceReferences:
540
+ type: array
541
+ minItems: 1
542
+ items:
543
+ type: string
544
+ zeroSpendStatus:
545
+ type: string
546
+ enum: [proceed_zero_cost]
547
+ priceUnderstandingConfirmed:
548
+ type: boolean
549
+ workflowCount:
550
+ type: integer
551
+ minimum: 1
552
+ authorityConfirmed:
553
+ type: boolean
554
+ urgencyDays:
555
+ type: integer
556
+ minimum: 1
557
+ budgetCents:
558
+ type: integer
559
+ minimum: 0
560
+ readyToImplement:
561
+ type: boolean
562
+ proofBackedSprint:
563
+ type: boolean
564
+ completedEnterprisePilot:
565
+ type: boolean
566
+ requiresUnavailableHostedFeature:
567
+ type: boolean
364
568
  WorkflowSprintAdvanceResponse:
365
569
  type: object
366
570
  properties:
@@ -1104,6 +1308,36 @@ paths:
1104
1308
  $ref: '#/components/schemas/WorkflowSprintIntakeResponse'
1105
1309
  '400':
1106
1310
  description: Invalid sprint intake request
1311
+ /v1/intake/workflow-sprint/queue:
1312
+ get:
1313
+ operationId: getWorkflowSprintCloseQueue
1314
+ parameters:
1315
+ - in: query
1316
+ name: status
1317
+ description: Comma-separated workflow lifecycle statuses or all.
1318
+ schema:
1319
+ type: string
1320
+ default: new,qualified
1321
+ - in: query
1322
+ name: limit
1323
+ schema:
1324
+ type: integer
1325
+ minimum: 1
1326
+ maximum: 100
1327
+ default: 50
1328
+ responses:
1329
+ '200':
1330
+ description: Private no-store intake queue with fail-closed approval packets
1331
+ content:
1332
+ application/json:
1333
+ schema:
1334
+ $ref: '#/components/schemas/WorkflowIntakeQueueResponse'
1335
+ '400':
1336
+ description: Invalid queue filter
1337
+ '403':
1338
+ description: Forbidden
1339
+ '503':
1340
+ description: Workflow intake capability is unavailable in this runtime
1107
1341
  /v1/intake/workflow-sprint/advance:
1108
1342
  post:
1109
1343
  operationId: advanceWorkflowSprintLead
@@ -1695,13 +1929,14 @@ paths:
1695
1929
  description: Webhook accepted
1696
1930
  '400':
1697
1931
  description: Invalid webhook signature or payload
1698
- k signature or payload
1699
- /v1/billing/github-webhook:
1932
+ /v1/billing/paypal-webhook:
1700
1933
  post:
1701
- operationId: githubMarketplaceWebhook
1934
+ operationId: paypalBillingWebhook
1702
1935
  security: []
1703
1936
  responses:
1704
1937
  '200':
1705
- description: Webhook accepted
1938
+ description: PayPal-verified payment event durably recorded
1706
1939
  '400':
1707
- description: Invalid webhook signature or payload
1940
+ description: Invalid PayPal transmission headers, event, or remote signature verification
1941
+ '503':
1942
+ description: PayPal verified the event but durable evidence storage failed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "thumbgate",
3
- "version": "1.28.4",
4
- "description": "ThumbGate Pre-Action Checks derive rules from repeated failures, flag risky tool calls, hard-block detected secret leaks, and block matches in strict mode.",
3
+ "version": "1.29.1",
4
+ "description": "ThumbGate Pre-Action Checks self-improve from ranked lessons and repeated failures, hard-block detected secret leaks, and block matches in strict mode.",
5
5
  "homepage": "https://thumbgate.ai",
6
6
  "repository": {
7
7
  "type": "git",
@@ -13,7 +13,8 @@
13
13
  "main": "src/index.js",
14
14
  "bin": {
15
15
  "thumbgate": "bin/cli.js",
16
- "thumbgate-dashboard": "bin/dashboard-cli.js"
16
+ "thumbgate-dashboard": "bin/dashboard-cli.js",
17
+ "thumbgate-revenue-evidence": "scripts/grafana-revenue-evidence.js"
17
18
  },
18
19
  "files": [
19
20
  "scripts/access-anomaly-detector.js",
@@ -65,7 +66,9 @@
65
66
  "scripts/code-reasoning.js",
66
67
  "scripts/codegraph-context.js",
67
68
  "scripts/codex-self-heal.js",
69
+ "scripts/buyer-paths.js",
68
70
  "scripts/commercial-offer.js",
71
+ "scripts/revenue-offer-system.js",
69
72
  "scripts/context-engine.js",
70
73
  "scripts/context-footprint.js",
71
74
  "scripts/context-manager.js",
@@ -87,6 +90,9 @@
87
90
  "scripts/export-databricks-bundle.js",
88
91
  "scripts/entitlement.js",
89
92
  "config/entitlement-public-keys.json",
93
+ "scripts/external-customer-audit.js",
94
+ "scripts/stripe-revenue-catalog.js",
95
+ "scripts/stripe-revenue-catalog-audit.js",
90
96
  "scripts/export-dpo-pairs.js",
91
97
  "scripts/export-hf-dataset.js",
92
98
  "scripts/failure-diagnostics.js",
@@ -103,6 +109,7 @@
103
109
  "scripts/feedback_quality_eval.py",
104
110
  "scripts/filesystem-search.js",
105
111
  "scripts/fs-utils.js",
112
+ "scripts/grafana-revenue-evidence.js",
106
113
  "scripts/gate-stats.js",
107
114
  "scripts/gate-templates.js",
108
115
  "scripts/gates-engine.js",
@@ -155,6 +162,9 @@
155
162
  "scripts/noop-detect.js",
156
163
  "scripts/obsidian-export.js",
157
164
  "scripts/operational-integrity.js",
165
+ "scripts/observability-setup.js",
166
+ "scripts/observability-env.js",
167
+ "scripts/jsonl-window.js",
158
168
  "scripts/oss-pr-opportunity-scout.js",
159
169
  "scripts/otel-declarative-config.js",
160
170
  "scripts/parallel-workflow-orchestrator.js",
@@ -173,6 +183,9 @@
173
183
  "scripts/prompt-guard.js",
174
184
  "scripts/prompt-programs.js",
175
185
  "scripts/prompting-operating-system.js",
186
+ "scripts/provider-live-evidence.js",
187
+ "scripts/provider-payment-reconciler.js",
188
+ "scripts/provider-revenue-evidence.js",
176
189
  "scripts/provider-action-normalizer.js",
177
190
  "scripts/proxy-pointer-rag-guardrails.js",
178
191
  "scripts/qa-scenario-planner.js",
@@ -181,11 +194,14 @@
181
194
  "scripts/rate-limiter.js",
182
195
  "scripts/reasoning-efficiency-guardrails.js",
183
196
  "scripts/repeat-metric.js",
197
+ "scripts/revenue-action-eligibility.js",
198
+ "scripts/revenue-evidence-remediation.js",
184
199
  "scripts/reward-hacking-guardrails.js",
185
200
  "scripts/risk-scorer.js",
186
201
  "scripts/rlaif-self-audit.js",
187
202
  "scripts/rubric-engine.js",
188
203
  "scripts/rule-validator.js",
204
+ "scripts/sales-pipeline.js",
189
205
  "scripts/secret-scanner.js",
190
206
  "scripts/secret-fixture-tokens.js",
191
207
  "scripts/secret-redaction.js",
@@ -205,6 +221,7 @@
205
221
  "scripts/skill-rag-router.js",
206
222
  "scripts/slo-alert-engine.js",
207
223
  "scripts/spec-gate.js",
224
+ "scripts/stripe-credentials.js",
208
225
  "scripts/statusline-cache-read.js",
209
226
  "scripts/statusline-cache-path.js",
210
227
  "scripts/statusline-context.js",
@@ -237,6 +254,7 @@
237
254
  "scripts/visitor-journey.js",
238
255
  "scripts/workflow-runs.js",
239
256
  "scripts/workflow-sentinel.js",
257
+ "scripts/workflow-intake-queue.js",
240
258
  "scripts/workspace-agent-routines.js",
241
259
  "scripts/workspace-evolver.js",
242
260
  "scripts/xmemory-lite.js",
@@ -247,6 +265,8 @@
247
265
  ".well-known/",
248
266
  "LICENSE",
249
267
  "README.md",
268
+ "docs/integrations/grafana/README.md",
269
+ "docs/integrations/grafana/thumbgate-revenue-evidence-dashboard.json",
250
270
  "adapters/amp/skills/thumbgate-feedback/SKILL.md",
251
271
  "adapters/claude/.mcp.json",
252
272
  "adapters/codex/config.toml",
@@ -272,6 +292,7 @@
272
292
  "public/about.html",
273
293
  "public/agent-manager.html",
274
294
  "public/blog.html",
295
+ "public/blog/",
275
296
  "public/codex-enterprise.html",
276
297
  "public/agents-cost-savings.html",
277
298
  "public/ai-malpractice-prevention.html",
@@ -316,9 +337,12 @@
316
337
  "verify:full": "node scripts/verify-run.js full",
317
338
  "budget:status": "node scripts/budget-guard.js --status",
318
339
  "revenue:status": "node scripts/revenue-status.js",
340
+ "revenue:intake-queue": "node scripts/workflow-intake-queue.js",
341
+ "revenue:offers": "node scripts/revenue-offer-system.js",
319
342
  "revenue:truth": "bash bin/revenue-truth.sh",
320
343
  "revenue:doctor": "node scripts/revenue-observability-doctor.js",
321
344
  "revenue:plan": "node scripts/may-2026-revenue-machine.js",
345
+ "revenue:remediate": "node scripts/revenue-evidence-remediation.js",
322
346
  "revenue:status:local": "node bin/cli.js cfo",
323
347
  "revenue:repair:github-marketplace": "node bin/cli.js repair-github-marketplace --write",
324
348
  "cfo:report": "node bin/cli.js cfo",
@@ -339,6 +363,7 @@
339
363
  "medium:weekly:draft": "node scripts/medium-weekly.js --write",
340
364
  "medium:weekly:schedule": "node scripts/medium-weekly.js --schedule",
341
365
  "sales:pipeline": "node scripts/sales-pipeline.js",
366
+ "sales:reconcile-payment": "node scripts/provider-payment-reconciler.js",
342
367
  "social:poll": "node scripts/social-analytics/poll-all.js",
343
368
  "social:poll:github": "node scripts/social-analytics/pollers/github.js",
344
369
  "social:poll:instagram": "node scripts/social-analytics/pollers/instagram.js",
@@ -392,18 +417,26 @@
392
417
  "social:prospect:bluesky": "node scripts/social-bluesky-prospecting.js",
393
418
  "social:prospect:bluesky:dry": "node scripts/social-bluesky-prospecting.js --dry-run",
394
419
  "social:reply-publish:bluesky:dry": "node scripts/social-reply-monitor-bluesky.js --publish-approved --dry-run",
395
- "test": "npm run test:python && npm run test:schema && npm run test:loop && npm run test:dpo && npm run test:kto && npm run test:api && npm run test:proof && npm run test:e2e && npm run test:rlaif && npm run test:attribution && npm run test:quality && npm run test:intelligence && npm run test:training-export && npm run test:deployment && npm run test:operational-integrity && npm run test:workflow && npm run test:billing && npm run test:billing-setup && npm run test:cli && npm run test:watcher && npm run test:autoresearch && npm run test:ops && npm run test:session-analyzer && npm run test:tessl && npm run test:gates && npm run test:evoskill && npm run test:gates-hardening && npm run test:workers && npm run test:social-analytics && npm run test:memalign && npm run test:xmemory-lite && npm run test:filesystem-search && npm run test:platform-limits && npm run test:post-video && npm run test:post-everywhere-instagram && npm run test:post-everywhere-channels && npm run test:obsidian-export && npm run test:lesson-db && npm run test:lesson-rotation && npm run test:memory-dedup && npm run test:feedback-quality && npm run test:sync-version && npm run test:release-window && npm run test:check-congruence && npm run test:tool-registry && npm run test:repeat-metric && npm run test:noop-detect && npm run test:action-receipts && npm run test:feedback-to-rules && npm run test:memory-firewall && npm run test:memory-scope-readiness && npm run test:belief-update && npm run test:hosted-config && npm run test:operational-summary && npm run test:operational-dashboard && npm run test:operator-artifacts && npm run test:operator-key-auth && npm run test:cloudflare-sandbox && npm run test:mcp-config && npm run test:mcp-tool-annotations && npm run test:mcp-oauth && npm run test:mcp-oauth-flow && npm run test:plan-gate && npm run test:ai-component-inventory && npm run test:pulse && npm run test:semantic-layer && npm run test:data-pipeline && npm run test:optimize-context && npm run test:principle-extractor && npm run test:analytics-window && npm run test:funnel-analytics && npm run test:experiment-tracker && npm run test:build-metadata && npm run test:context-engine && npm run test:hf-papers && npm run test:marketing-experiment && npm run test:seo-gsd && npm run test:verify-run && npm run test:entitlement && npm run test:export-dpo-pairs && npm run test:export-hf-dataset && npm run test:license && npm run test:imperative-detector && npm run test:audit-pr-bot-contamination && npm run test:stripe-bootstrap-saas-catalog && npm run test:postinstall && npm run test:funnel-invariants && npm run test:cli-telemetry && npm run test:pro-parity && npm run test:model-tier-router && npm run test:computer-use-firewall && npm run test:skill-exporter && npm run test:statusline && npm run test:statusline-cache-aggregate && npm run test:public-repo-hygiene && npm run test:no-internal-orchestration-leaks && npm run test:evolution && npm run test:org-dashboard && npm run test:multi-hop-recall && npm run test:synthetic-dpo && npm run test:thumbgate-skill && npm run test:learn-hub && npm run test:feedback-fallback && npm run test:metaclaw && npm run test:server-lock && npm run test:control-tower && npm run test:pii-scanner && npm run test:data-governance && npm run test:lesson-inference && npm run test:semantic-dedup && npm run test:fs-utils && npm run test:cli-schema && npm run test:explore && npm run test:lesson-reranker && npm run test:lesson-retrieval && npm run test:lesson-semantic-retrieval && npm run test:cross-encoder && npm run test:reflector-agent && npm run test:feedback-session && npm run test:feedback-history-distiller && npm run test:hallucination-detector && npm run test:history-distiller && npm run test:predictive-insights && npm run test:predictive-credible-range && npm run test:prove-predictive-insights && npm run test:statusbar-cli && npm run test:generate-instagram-card && npm run test:instagram-thumbgate-post && npm run test:publish-instagram-thumbgate && npm run test:lesson-synthesis && npm run test:lesson-canonical && npm run test:background-governance && npm run test:memory-migration && npm run test:prompt-dlp && npm run test:ephemeral-store && npm run test:agent-security && npm run test:skill-progressive && npm run test:per-step-scoring && npm run test:weekly-auto-post && npm run test:social-post-hourly && npm run test:social-quality-gate && npm run test:a2ui-engine && npm run test:gate-satisfy && npm run test:money-watcher && npm run test:budget && npm run test:quick-start && npm run test:utm && npm run test:product-feedback && npm run test:feedback-root-consolidator && npm run test:engagement-audit && npm run test:install-growth-automation && npm run test:publish-thumbgate-launch && npm run test:reconcile-thumbgate-campaign && npm run test:reddit-publisher && npm run test:schedule-thumbgate-campaign && npm run test:social-reply-monitor && npm run test:sync-launch-assets && npm run test:ai-search-visibility && npm run test:perplexity && npm run test:xss-checkout-escape && npm run test:security-scanner && npm run test:llm-client && npm run test:managed-lesson-agent && npm run test:self-distill && npm run test:meta-agent && npm run test:harness-selector && npm run test:thumbgate-bench && npm run test:seo-guides && npm run test:enforcement-loop && npm run test:cli-agent-experience && npm run test:bot-detection && npm run test:checkout-archived-product-guard && npm run test:postgres-guard && npm run test:checkout-bot-guard && npm run test:checkout-pro-confirmation-gate && npm run test:pricing-page-telemetry && npm run test:session-health && npm run test:session-episodes && npm run test:spec-gate && npm run test:decision-trace && npm run test:dashboard-insights && npm run test:telemetry-tracked-link-slug && npm run test:prompt-eval && npm run test:gate-coherence && npm run test:gate-eval && npm run test:high-roi && npm run test:public-static-assets && npm run test:token-savings && npm run test:numbers-page && npm run test:workflow-gate-checkpoint && npm run test:lesson-export-import && npm run test:landing-page-claims && npm run test:competitive-positioning-marketing && npm run test:medium-weekly && npm run test:dashboard-deeplink-e2e && npm run test:public-package-parity && npm run test:token-savings-dashboard && npm run test:cursor-wiring && npm run test:pretooluse-injection && npm run test:recent-corrective-context && npm run test:durability-step && npm run test:mailer && npm run test:brand-assets && npm run test:enforcement-teeth && npm run test:bayes-optimal-gate && npm run test:swarm-coordinator && npm run test:session-report && npm run test:agent-reasoning-traces && npm run test:judge-reward && npm run test:llm-behavior-monitor && npm run test:prompting-os && npm run test:single-use-credential-gate && npm run test:structured-prompt-driven && npm run test:require-evidence-gate && npm run test:rule-validator && npm run test:bluesky-atproto && npm run test:social-reply-monitor-bluesky && npm run test:bluesky-delete-replies && npm run test:architect-kit-memory-bridge && npm run test:sonar-review-hotspots && npm run test:actionable-remediations && npm run test:gemini-embedding-policy && npm run test:agent-design-governance && npm run test:public-core-boundary && npm run test:hook-stop-verify-deploy && npm run test:hook-stop-anti-claim && npm run test:plausible-server-events && npm run test:activation-tracker && npm run test:activation-onboarding && npm run test:unified-revenue-rollup && npm run test:conversion-rate-stats && npm run test:external-customer-audit && npm run test:telemetry-export && npm run test:stripe-checkout-diagnostic && npm run test:stripe-business-identity-probe && npm run test:revenue-observability-doctor && npm run test:public-bundle-ratchet && npm run test:pack-runtime-integrity && npm run test:hook-self-protection && npm run test:self-protect-enforcement && npm run test:never-bypass-branch-protection && npm run test:stripe-payment-link-update && npm run test:ci-cd-hygiene-audit && npm run test:verify-marketing-pages-deployed && npm run test:install-email-capture && npm run test:install-shim && npm run test:hook-runtime-subcommands && npm run test:implementation-notes && npm run test:daily-block-cap && npm run test:free-to-paid-conversion-units && npm run test:metrics-real-endpoint && npm run test:cli-trial-and-help && npm run test:cost-cli && npm run test:silent-failure-cluster && npm run test:proof:truth && node --test tests/adaptive-reliability.test.js && npm run test:mcp-oauth-reviewer && npm run test:dfcx-gate && npm run test:dfcx-gate-server && npm run test:vertex-scorer && npm run test:dashboard-chat && npm run test:gitar-integration && npm run test:secret-redaction && npm run test:discoverable-skills && npm run test:discoverable-skill-skills && npm run test:sync-telemetry && npm run test:leak-scanner && npm run test:team-sync && npm run test:eval-rag && npm run test:async-eval-observability && npm run test:letta-adapter && npm run test:policy-engine-adapter && npm run test:tool-contract-validator && npm run test:check-update && npm run test:hermes-gate && npm run test:memory-provider-enforcement-bridge && npm run test:publisher-credential-guards && npm run test:reddit-browser-notification-watch && npm run test:payment-rails && npm run test:service-checkout-price-integrity && npm run test:cursor-marketplace-doctor && npm run test:plugin-hooks-manifest && npm run test:okara-money-promo-automation",
420
+ "test": "npm run test:python && npm run test:schema && npm run test:loop && npm run test:dpo && npm run test:kto && npm run test:api && npm run test:proof && npm run test:e2e && npm run test:rlaif && npm run test:attribution && npm run test:quality && npm run test:intelligence && npm run test:training-export && npm run test:deployment && npm run test:operational-integrity && npm run test:workflow && npm run test:grafana-revenue-evidence && npm run test:billing && npm run test:billing-setup && npm run test:cli && npm run test:watcher && npm run test:autoresearch && npm run test:ops && npm run test:session-analyzer && npm run test:tessl && npm run test:gates && npm run test:evoskill && npm run test:gates-hardening && npm run test:workers && npm run test:social-analytics && npm run test:memalign && npm run test:xmemory-lite && npm run test:filesystem-search && npm run test:platform-limits && npm run test:post-video && npm run test:post-everywhere-instagram && npm run test:post-everywhere-channels && npm run test:obsidian-export && npm run test:lesson-db && npm run test:lesson-rotation && npm run test:memory-dedup && npm run test:feedback-quality && npm run test:sync-version && npm run test:release-window && npm run test:check-congruence && npm run test:tool-registry && npm run test:repeat-metric && npm run test:noop-detect && npm run test:action-receipts && npm run test:feedback-to-rules && npm run test:memory-firewall && npm run test:memory-scope-readiness && npm run test:belief-update && npm run test:hosted-config && npm run test:operational-summary && npm run test:operational-dashboard && npm run test:operator-artifacts && npm run test:operator-key-auth && npm run test:cloudflare-sandbox && npm run test:mcp-config && npm run test:mcp-tool-annotations && npm run test:mcp-oauth && npm run test:mcp-oauth-flow && npm run test:plan-gate && npm run test:ai-component-inventory && npm run test:pulse && npm run test:semantic-layer && npm run test:data-pipeline && npm run test:optimize-context && npm run test:principle-extractor && npm run test:analytics-window && npm run test:funnel-analytics && npm run test:experiment-tracker && npm run test:build-metadata && npm run test:context-engine && npm run test:hf-papers && npm run test:marketing-experiment && npm run test:seo-gsd && npm run test:verify-run && npm run test:entitlement && npm run test:export-dpo-pairs && npm run test:export-hf-dataset && npm run test:license && npm run test:imperative-detector && npm run test:audit-pr-bot-contamination && npm run test:stripe-bootstrap-saas-catalog && npm run test:postinstall && npm run test:funnel-invariants && npm run test:cli-telemetry && npm run test:pro-parity && npm run test:model-tier-router && npm run test:computer-use-firewall && npm run test:skill-exporter && npm run test:statusline && npm run test:statusline-cache-aggregate && npm run test:public-repo-hygiene && npm run test:no-internal-orchestration-leaks && npm run test:evolution && npm run test:org-dashboard && npm run test:multi-hop-recall && npm run test:synthetic-dpo && npm run test:thumbgate-skill && npm run test:learn-hub && npm run test:feedback-fallback && npm run test:metaclaw && npm run test:server-lock && npm run test:control-tower && npm run test:pii-scanner && npm run test:data-governance && npm run test:lesson-inference && npm run test:semantic-dedup && npm run test:fs-utils && npm run test:cli-schema && npm run test:explore && npm run test:lesson-reranker && npm run test:lesson-retrieval && npm run test:lesson-semantic-retrieval && npm run test:cross-encoder && npm run test:reflector-agent && npm run test:feedback-session && npm run test:feedback-history-distiller && npm run test:hallucination-detector && npm run test:history-distiller && npm run test:predictive-insights && npm run test:predictive-credible-range && npm run test:prove-predictive-insights && npm run test:statusbar-cli && npm run test:generate-instagram-card && npm run test:instagram-thumbgate-post && npm run test:publish-instagram-thumbgate && npm run test:lesson-synthesis && npm run test:lesson-canonical && npm run test:background-governance && npm run test:memory-migration && npm run test:prompt-dlp && npm run test:ephemeral-store && npm run test:agent-security && npm run test:skill-progressive && npm run test:per-step-scoring && npm run test:weekly-auto-post && npm run test:social-post-hourly && npm run test:social-quality-gate && npm run test:a2ui-engine && npm run test:gate-satisfy && npm run test:money-watcher && npm run test:budget && npm run test:quick-start && npm run test:utm && npm run test:product-feedback && npm run test:feedback-root-consolidator && npm run test:engagement-audit && npm run test:install-growth-automation && npm run test:publish-thumbgate-launch && npm run test:reconcile-thumbgate-campaign && npm run test:reddit-publisher && npm run test:schedule-thumbgate-campaign && npm run test:social-reply-monitor && npm run test:sync-launch-assets && npm run test:ai-search-visibility && npm run test:perplexity && npm run test:xss-checkout-escape && npm run test:security-scanner && npm run test:llm-client && npm run test:managed-lesson-agent && npm run test:self-distill && npm run test:meta-agent && npm run test:harness-selector && npm run test:thumbgate-bench && npm run test:seo-guides && npm run test:enforcement-loop && npm run test:cli-agent-experience && npm run test:bot-detection && npm run test:checkout-archived-product-guard && npm run test:postgres-guard && npm run test:checkout-bot-guard && npm run test:checkout-pro-confirmation-gate && npm run test:pricing-page-telemetry && npm run test:session-health && npm run test:session-episodes && npm run test:spec-gate && npm run test:decision-trace && npm run test:dashboard-insights && npm run test:telemetry-tracked-link-slug && npm run test:prompt-eval && npm run test:gate-coherence && npm run test:gate-eval && npm run test:high-roi && npm run test:public-static-assets && npm run test:token-savings && npm run test:numbers-page && npm run test:workflow-gate-checkpoint && npm run test:lesson-export-import && npm run test:landing-page-claims && npm run test:competitive-positioning-marketing && npm run test:medium-weekly && npm run test:dashboard-deeplink-e2e && npm run test:public-package-parity && npm run test:token-savings-dashboard && npm run test:cursor-wiring && npm run test:pretooluse-injection && npm run test:recent-corrective-context && npm run test:durability-step && npm run test:mailer && npm run test:brand-assets && npm run test:enforcement-teeth && npm run test:bayes-optimal-gate && npm run test:swarm-coordinator && npm run test:session-report && npm run test:agent-reasoning-traces && npm run test:judge-reward && npm run test:llm-behavior-monitor && npm run test:prompting-os && npm run test:single-use-credential-gate && npm run test:structured-prompt-driven && npm run test:require-evidence-gate && npm run test:rule-validator && npm run test:bluesky-atproto && npm run test:social-reply-monitor-bluesky && npm run test:bluesky-delete-replies && npm run test:architect-kit-memory-bridge && npm run test:sonar-review-hotspots && npm run test:actionable-remediations && npm run test:gemini-embedding-policy && npm run test:agent-design-governance && npm run test:public-core-boundary && npm run test:hook-stop-verify-deploy && npm run test:hook-stop-anti-claim && npm run test:stop-hook-json-contract && npm run test:plausible-server-events && npm run test:activation-tracker && npm run test:activation-onboarding && npm run test:unified-revenue-rollup && npm run test:conversion-rate-stats && npm run test:external-customer-audit && npm run test:telemetry-export && npm run test:stripe-checkout-diagnostic && npm run test:stripe-business-identity-probe && npm run test:revenue-observability-doctor && npm run test:jsonl-window && npm run test:observability-env && npm run test:public-bundle-ratchet && npm run test:pack-runtime-integrity && npm run test:hook-self-protection && npm run test:self-protect-enforcement && npm run test:never-bypass-branch-protection && npm run test:stripe-payment-link-update && npm run test:ci-cd-hygiene-audit && npm run test:verify-marketing-pages-deployed && npm run test:install-email-capture && npm run test:install-shim && npm run test:hook-runtime-subcommands && npm run test:implementation-notes && npm run test:daily-block-cap && npm run test:free-to-paid-conversion-units && npm run test:metrics-real-endpoint && npm run test:cli-trial-and-help && npm run test:cost-cli && npm run test:silent-failure-cluster && npm run test:proof:truth && node --test tests/adaptive-reliability.test.js && npm run test:mcp-oauth-reviewer && npm run test:dfcx-gate && npm run test:dfcx-gate-server && npm run test:vertex-scorer && npm run test:dashboard-chat && npm run test:gitar-integration && npm run test:secret-redaction && npm run test:discoverable-skills && npm run test:discoverable-skill-skills && npm run test:sync-telemetry && npm run test:leak-scanner && npm run test:team-sync && npm run test:eval-rag && npm run test:async-eval-observability && npm run test:letta-adapter && npm run test:policy-engine-adapter && npm run test:tool-contract-validator && npm run test:check-update && npm run test:hermes-gate && npm run test:memory-provider-enforcement-bridge && npm run test:publisher-credential-guards && npm run test:reddit-browser-notification-watch && npm run test:payment-rails && npm run test:service-checkout-price-integrity && npm run test:cursor-marketplace-doctor && npm run test:plugin-hooks-manifest && npm run test:okara-money-promo-automation",
396
421
  "test:python": "python3 -m pytest tests/*.py",
397
422
  "test:check-update": "node --test tests/check-update.test.js",
398
423
  "test:hook-stop-verify-deploy": "node --test tests/hook-stop-verify-deploy.test.js",
399
424
  "test:hook-stop-anti-claim": "node --test tests/hook-stop-anti-claim.test.js",
425
+ "test:stop-hook-json-contract": "node --test tests/stop-hook-json-contract.test.js",
400
426
  "test:plausible-server-events": "node --test tests/plausible-server-events.test.js tests/plausible-poller.test.js tests/plausible-domain-config.test.js",
401
427
  "test:activation-tracker": "node --test tests/activation-tracker.test.js",
402
428
  "test:activation-onboarding": "node --test tests/activation-onboarding.test.js",
403
429
  "test:unified-revenue-rollup": "node --test tests/unified-revenue-rollup.test.js",
404
430
  "test:conversion-rate-stats": "node --test tests/conversion-rate-stats.test.js",
405
- "test:external-customer-audit": "node --test tests/external-customer-audit.test.js",
431
+ "test:external-customer-audit": "node --test tests/external-customer-audit*.test.js tests/stripe-revenue-catalog-audit.test.js tests/revenue-truth-workflow.test.js",
432
+ "test:revenue-truth-workflow": "node --test tests/revenue-truth-workflow.test.js",
433
+ "stripe:catalog-audit": "node scripts/stripe-revenue-catalog-audit.js --json",
406
434
  "test:stripe-checkout-diagnostic": "node --test tests/stripe-checkout-diagnostic.test.js",
435
+ "test:revenue-offer-ladder": "node --test tests/revenue-offer-ladder.test.js",
436
+ "test:revenue-offer-system": "node --test tests/revenue-offer-system.test.js",
437
+ "test:revenue-action-eligibility": "node --test tests/revenue-action-eligibility.test.js tests/gtm-revenue-action-eligibility.test.js tests/github-outreach.test.js",
438
+ "test:public-enterprise-capability-boundary": "node --test tests/public-enterprise-capability-boundary.test.js",
439
+ "test:buyer-paths": "node --test tests/buyer-paths.test.js",
407
440
  "test:stripe-business-identity-probe": "node --test tests/stripe-business-identity-probe.test.js",
408
441
  "test:ci-cd-hygiene-audit": "node --test tests/ci-cd-hygiene-audit.test.js",
409
442
  "test:telemetry-export": "node --test tests/telemetry-export.test.js tests/telemetry-analytics-quality.test.js",
@@ -519,11 +552,13 @@
519
552
  "test:quality": "node --test tests/validate-feedback.test.js tests/feedback-quality-eval-python.test.js tests/eval-gate-classifier.test.js",
520
553
  "test:intelligence": "node --test tests/intelligence.test.js",
521
554
  "test:training-export": "node --test tests/training-export.test.js tests/databricks-export.test.js",
522
- "test:deployment": "node --test tests/deployment.test.js tests/deploy-policy.test.js tests/publish-decision.test.js tests/changeset-check.test.js tests/release-notes.test.js tests/sonarcloud-workflow.test.js tests/package-boundary.test.js tests/public-package-boundary.test.js tests/packed-feedback-retrieval-e2e.test.js",
555
+ "test:deployment": "node --test tests/deployment.test.js tests/deploy-policy.test.js tests/publish-decision.test.js tests/changeset-check.test.js tests/release-notes.test.js tests/sonarcloud-workflow.test.js tests/package-boundary.test.js tests/public-package-boundary.test.js tests/packed-feedback-retrieval-e2e.test.js tests/packed-provider-payment-reconciler-e2e.test.js tests/packed-revenue-remediation-e2e.test.js",
523
556
  "test:operational-integrity": "node --test tests/operational-integrity.test.js tests/sync-branch-protection.test.js",
524
- "test:workflow": "node --test tests/parallel-workflow.test.js tests/workflow-contract.test.js tests/positioning-contract.test.js tests/docs-claim-hygiene.test.js tests/thumbgate-scope.test.js tests/workflow-runs.test.js tests/workflow-sprint-intake.test.js tests/revenue-pack-utils.test.js tests/apollo-acquisition.test.js tests/sales-pipeline.test.js tests/github-outreach.test.js tests/enterprise-story.test.js tests/guide-conversion-path.test.js tests/buyer-intent-revenue-assist.test.js",
525
- "test:sales-pipeline": "node --test tests/sales-pipeline.test.js",
526
- "test:billing": "node --test tests/billing.test.js tests/stripe-sync-product-images.test.js tests/checkout-attribution-reference.test.js",
557
+ "test:workflow": "node --test tests/parallel-workflow.test.js tests/workflow-contract.test.js tests/positioning-contract.test.js tests/docs-claim-hygiene.test.js tests/thumbgate-scope.test.js tests/workflow-runs.test.js tests/workflow-sprint-intake.test.js tests/workflow-intake-queue.test.js tests/revenue-pack-utils.test.js tests/apollo-acquisition.test.js tests/sales-pipeline.test.js tests/provider-payment-reconciler.test.js tests/reddit-dm-outreach-evidence.test.js tests/gtm-sales-evidence-commands.test.js tests/revenue-action-eligibility.test.js tests/revenue-evidence-remediation.test.js tests/gtm-revenue-action-eligibility.test.js tests/revenue-offer-ladder.test.js tests/revenue-offer-system.test.js tests/buyer-paths.test.js tests/github-outreach.test.js tests/enterprise-story.test.js tests/guide-conversion-path.test.js tests/buyer-intent-revenue-assist.test.js",
558
+ "test:revenue-evidence-remediation": "node --test tests/revenue-evidence-remediation.test.js",
559
+ "test:grafana-revenue-evidence": "node --test tests/grafana-revenue-evidence.test.js",
560
+ "test:sales-pipeline": "node --test tests/sales-pipeline.test.js tests/provider-payment-reconciler.test.js tests/reddit-dm-outreach-evidence.test.js tests/gtm-sales-evidence-commands.test.js",
561
+ "test:billing": "node --test tests/billing.test.js tests/paypal-billing.test.js tests/stripe-sync-product-images.test.js tests/checkout-attribution-reference.test.js",
527
562
  "test:billing-setup": "node --test tests/billing-setup-redaction.test.js",
528
563
  "test:cli": "node --test tests/analytics-report.test.js tests/agent-design-governance.test.js tests/codex-self-heal.test.js tests/creator-campaigns.test.js tests/cli.test.js tests/codex-bridge-script.test.js tests/dependabot-changeset.test.js tests/dispatch-brief.test.js tests/feedback-normalize.test.js tests/feedback-lesson-sanitization.test.js tests/install-mcp.test.js tests/install-scope-docs.test.js tests/pr-manager.test.js tests/pro-local-dashboard.test.js tests/published-cli.test.js tests/revenue-status.test.js tests/stripe-live-status.test.js tests/creator-dev-and-prune.test.js",
529
564
  "test:evolution": "node --test tests/workspace-evolver.test.js",
@@ -640,12 +675,12 @@
640
675
  "test:social-quality-gate": "node --test tests/social-quality-gate.test.js tests/validate-social-post.test.js",
641
676
  "test:a2ui-engine": "node --test tests/a2ui-engine.test.js",
642
677
  "test:gate-satisfy": "node --test tests/gate-satisfy.test.js",
643
- "test:money-watcher": "node --test tests/money-watcher.test.js",
678
+ "test:money-watcher": "node --test tests/money-watcher.test.js tests/install-revenue-truth-automation.test.js",
644
679
  "test:quick-start": "node --test tests/quick-start.test.js",
645
680
  "test:utm": "node --test tests/utm.test.js",
646
681
  "test:product-feedback": "node --test tests/product-feedback.test.js",
647
682
  "test:feedback-root-consolidator": "node --test tests/feedback-root-consolidator.test.js",
648
- "social:publish:launch": "node scripts/social-analytics/publish-thumbgate-launch.js",
683
+ "social:publish:launch": "node scripts/social-analytics/run-publish-thumbgate-launch.js",
649
684
  "social:publish:latest-release-article": "node scripts/social-analytics/publish-latest-release-article.js",
650
685
  "social:publish:latest-release-fallbacks": "node scripts/social-analytics/publish-latest-release-fallbacks.js",
651
686
  "social:verify:latest-release": "node scripts/social-analytics/verify-latest-release-posts.js",
@@ -714,7 +749,7 @@
714
749
  "aws-blocks:guardrails": "node scripts/aws-blocks-guardrails.js",
715
750
  "test:aws-blocks-guardrails": "node --test tests/aws-blocks-guardrails.test.js",
716
751
  "test:high-roi": "node --test tests/high-roi.test.js tests/model-candidates.test.js tests/autonomous-workflow.test.js tests/high-roi-agent-workflows.test.js tests/interaction-model.test.js tests/interaction-model-e2e.test.js tests/code-graph-guardrails.test.js tests/proxy-pointer-rag-guardrails.test.js tests/rag-precision-guardrails.test.js tests/ai-engineering-stack-guardrails.test.js tests/long-running-agent-context-guardrails.test.js tests/reasoning-efficiency-guardrails.test.js tests/deepseek-v4-runtime-guardrails.test.js tests/upstream-contribution-engine.test.js tests/proactive-agent-eval-guardrails.test.js tests/reward-hacking-guardrails.test.js tests/chatgpt-ads-readiness-pack.test.js tests/oss-pr-opportunity-scout.test.js tests/agent-design-governance.test.js tests/gemini-embedding-policy.test.js tests/openclaw-agent-governance-kit.test.js tests/agent-operations-planner.test.js tests/aws-blocks-guardrails.test.js",
717
- "test:public-static-assets": "node --test tests/public-static-assets.test.js",
752
+ "test:public-static-assets": "node --test tests/public-static-assets.test.js tests/public-checkout-intent-gate.test.js tests/public-enterprise-capability-boundary.test.js",
718
753
  "test:token-savings": "node --test tests/token-savings.test.js",
719
754
  "test:cost-cli": "node --test tests/cost-cli.test.js tests/conversion-receipt.test.js",
720
755
  "test:numbers-page": "node --test tests/numbers-page.test.js",
@@ -729,7 +764,7 @@
729
764
  "test:e2e:playwright:headed": "playwright test --headed",
730
765
  "test:e2e:playwright:ui": "playwright test --ui",
731
766
  "test:e2e:playwright:report": "playwright show-report",
732
- "test:public-package-parity": "node --test tests/public-package-parity.test.js",
767
+ "test:public-package-parity": "node --test tests/public-package-parity.test.js tests/blog-hub.test.js",
733
768
  "prepare": "bash bin/install-hooks.sh >/dev/null 2>&1 || true",
734
769
  "install:hooks": "bash bin/install-hooks.sh",
735
770
  "test:token-savings-dashboard": "node --test tests/token-savings-dashboard.test.js",
@@ -786,7 +821,11 @@
786
821
  "test:self-protect-enforcement": "node --test tests/self-protect-enforcement.test.js",
787
822
  "test:pack-runtime-integrity": "node --test tests/pack-runtime-integrity.test.js",
788
823
  "test:entitlement": "node --test tests/entitlement.test.js",
789
- "test:xss-checkout-escape": "node --test tests/xss-checkout-escape.test.js"
824
+ "test:xss-checkout-escape": "node --test tests/xss-checkout-escape.test.js",
825
+ "observability:setup": "node scripts/observability-setup.js",
826
+ "observability:doctor": "node scripts/revenue-observability-doctor.js",
827
+ "test:jsonl-window": "node --test tests/jsonl-window.test.js",
828
+ "test:observability-env": "node --test tests/observability-env.test.js"
790
829
  },
791
830
  "keywords": [
792
831
  "mcp",
@@ -843,26 +882,27 @@
843
882
  "dependencies": {
844
883
  "@anthropic-ai/sdk": "0.102.0",
845
884
  "@google/genai": "2.7.0",
846
- "@huggingface/transformers": "^4.2.0",
847
885
  "@lancedb/lancedb": "^0.30.0",
848
886
  "apache-arrow": "^18.1.0",
849
887
  "better-sqlite3": "^12.9.0",
850
888
  "dotenv": "^17.4.2",
851
889
  "playwright-core": "^1.59.1",
852
- "protobufjs": "^8.5.0",
890
+ "protobufjs": "^8.7.1",
853
891
  "stripe": "^22.2.0"
854
892
  },
855
893
  "overrides": {
894
+ "adm-zip": "0.6.0",
856
895
  "@google/genai": {
857
- "protobufjs": "7.6.4"
896
+ "protobufjs": "7.6.5"
858
897
  },
898
+ "brace-expansion": "5.0.7",
859
899
  "onnxruntime-web": {
860
- "protobufjs": "7.6.4"
900
+ "protobufjs": "7.6.5"
861
901
  },
862
902
  "express@4.22.1": {
863
903
  "path-to-regexp": "0.1.13"
864
904
  },
865
- "js-yaml": "4.2.0"
905
+ "js-yaml": "4.3.0"
866
906
  },
867
907
  "mcpName": "io.github.IgorGanapolsky/thumbgate",
868
908
  "devDependencies": {