@vibecheckai/cli 3.5.0 → 3.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/registry.js +174 -449
- package/bin/runners/cli-utils.js +33 -2
- package/bin/runners/context/generators/cursor.js +2 -49
- package/bin/runners/context/generators/mcp.js +13 -15
- package/bin/runners/context/proof-context.js +1 -248
- package/bin/runners/lib/analysis-core.js +180 -198
- package/bin/runners/lib/analyzers.js +241 -2212
- package/bin/runners/lib/cli-output.js +210 -242
- package/bin/runners/lib/detectors-v2.js +785 -547
- package/bin/runners/lib/entitlements-v2.js +431 -161
- package/bin/runners/lib/error-handler.js +9 -16
- package/bin/runners/lib/global-flags.js +0 -37
- package/bin/runners/lib/html-proof-report.js +700 -350
- package/bin/runners/lib/missions/plan.js +6 -46
- package/bin/runners/lib/missions/templates.js +0 -232
- package/bin/runners/lib/route-truth.js +322 -1167
- package/bin/runners/lib/scan-output.js +467 -493
- package/bin/runners/lib/ship-output.js +27 -280
- package/bin/runners/lib/terminal-ui.js +700 -310
- package/bin/runners/lib/truth.js +321 -1004
- package/bin/runners/lib/unified-output.js +158 -162
- package/bin/runners/lib/upsell.js +204 -104
- package/bin/runners/runAIAgent.js +10 -5
- package/bin/runners/runAllowlist.js +324 -0
- package/bin/runners/runAuth.js +94 -344
- package/bin/runners/runCheckpoint.js +45 -43
- package/bin/runners/runContext.js +24 -139
- package/bin/runners/runDoctor.js +101 -136
- package/bin/runners/runEvidencePack.js +219 -0
- package/bin/runners/runFix.js +71 -82
- package/bin/runners/runGuard.js +119 -606
- package/bin/runners/runInit.js +60 -22
- package/bin/runners/runInstall.js +281 -0
- package/bin/runners/runLabs.js +341 -0
- package/bin/runners/runMcp.js +62 -139
- package/bin/runners/runPolish.js +83 -282
- package/bin/runners/runPromptFirewall.js +12 -5
- package/bin/runners/runProve.js +58 -33
- package/bin/runners/runReality.js +58 -81
- package/bin/runners/runReport.js +7 -34
- package/bin/runners/runRuntime.js +8 -5
- package/bin/runners/runScan.js +844 -219
- package/bin/runners/runShip.js +59 -721
- package/bin/runners/runValidate.js +11 -24
- package/bin/runners/runWatch.js +76 -131
- package/bin/vibecheck.js +69 -295
- package/mcp-server/ARCHITECTURE.md +339 -0
- package/mcp-server/__tests__/cache.test.ts +313 -0
- package/mcp-server/__tests__/executor.test.ts +239 -0
- package/mcp-server/__tests__/fixtures/exclusion-test/.cache/webpack/cache.pack +1 -0
- package/mcp-server/__tests__/fixtures/exclusion-test/.next/server/chunk.js +3 -0
- package/mcp-server/__tests__/fixtures/exclusion-test/.turbo/cache.json +3 -0
- package/mcp-server/__tests__/fixtures/exclusion-test/.venv/lib/env.py +3 -0
- package/mcp-server/__tests__/fixtures/exclusion-test/dist/bundle.js +3 -0
- package/mcp-server/__tests__/fixtures/exclusion-test/package.json +5 -0
- package/mcp-server/__tests__/fixtures/exclusion-test/src/app.ts +5 -0
- package/mcp-server/__tests__/fixtures/exclusion-test/venv/lib/config.py +4 -0
- package/mcp-server/__tests__/ids.test.ts +345 -0
- package/mcp-server/__tests__/integration/tools.test.ts +410 -0
- package/mcp-server/__tests__/registry.test.ts +365 -0
- package/mcp-server/__tests__/sandbox.test.ts +323 -0
- package/mcp-server/__tests__/schemas.test.ts +372 -0
- package/mcp-server/benchmarks/run-benchmarks.ts +304 -0
- package/mcp-server/examples/doctor.request.json +14 -0
- package/mcp-server/examples/doctor.response.json +53 -0
- package/mcp-server/examples/error.response.json +15 -0
- package/mcp-server/examples/scan.request.json +14 -0
- package/mcp-server/examples/scan.response.json +108 -0
- package/mcp-server/handlers/tool-handler.ts +671 -0
- package/mcp-server/index-v1.js +698 -0
- package/mcp-server/index-v3.ts +293 -0
- package/mcp-server/index.js +1080 -1757
- package/mcp-server/index.old.js +4137 -0
- package/mcp-server/lib/cache.ts +341 -0
- package/mcp-server/lib/errors.ts +346 -0
- package/mcp-server/lib/executor.ts +792 -0
- package/mcp-server/lib/ids.ts +238 -0
- package/mcp-server/lib/logger.ts +368 -0
- package/mcp-server/lib/metrics.ts +365 -0
- package/mcp-server/lib/sandbox.ts +337 -0
- package/mcp-server/lib/validator.ts +229 -0
- package/mcp-server/package-lock.json +165 -0
- package/mcp-server/package.json +32 -7
- package/mcp-server/premium-tools.js +2 -2
- package/mcp-server/registry/tools.json +476 -0
- package/mcp-server/schemas/error-envelope.schema.json +125 -0
- package/mcp-server/schemas/finding.schema.json +167 -0
- package/mcp-server/schemas/report-artifact.schema.json +88 -0
- package/mcp-server/schemas/run-request.schema.json +75 -0
- package/mcp-server/schemas/verdict.schema.json +168 -0
- package/mcp-server/tier-auth.d.ts +71 -0
- package/mcp-server/tier-auth.js +371 -183
- package/mcp-server/truth-context.js +90 -131
- package/mcp-server/truth-firewall-tools.js +1000 -1611
- package/mcp-server/tsconfig.json +34 -0
- package/mcp-server/vibecheck-tools.js +2 -2
- package/mcp-server/vitest.config.ts +16 -0
- package/package.json +3 -4
- package/bin/runners/lib/agent-firewall/ai/false-positive-analyzer.js +0 -474
- package/bin/runners/lib/agent-firewall/change-packet/builder.js +0 -488
- package/bin/runners/lib/agent-firewall/change-packet/schema.json +0 -228
- package/bin/runners/lib/agent-firewall/change-packet/store.js +0 -200
- package/bin/runners/lib/agent-firewall/claims/claim-types.js +0 -21
- package/bin/runners/lib/agent-firewall/claims/extractor.js +0 -303
- package/bin/runners/lib/agent-firewall/claims/patterns.js +0 -24
- package/bin/runners/lib/agent-firewall/critic/index.js +0 -151
- package/bin/runners/lib/agent-firewall/critic/judge.js +0 -432
- package/bin/runners/lib/agent-firewall/critic/prompts.js +0 -305
- package/bin/runners/lib/agent-firewall/evidence/auth-evidence.js +0 -88
- package/bin/runners/lib/agent-firewall/evidence/contract-evidence.js +0 -75
- package/bin/runners/lib/agent-firewall/evidence/env-evidence.js +0 -127
- package/bin/runners/lib/agent-firewall/evidence/resolver.js +0 -102
- package/bin/runners/lib/agent-firewall/evidence/route-evidence.js +0 -213
- package/bin/runners/lib/agent-firewall/evidence/side-effect-evidence.js +0 -145
- package/bin/runners/lib/agent-firewall/fs-hook/daemon.js +0 -19
- package/bin/runners/lib/agent-firewall/fs-hook/installer.js +0 -87
- package/bin/runners/lib/agent-firewall/fs-hook/watcher.js +0 -184
- package/bin/runners/lib/agent-firewall/git-hook/pre-commit.js +0 -163
- package/bin/runners/lib/agent-firewall/ide-extension/cursor.js +0 -107
- package/bin/runners/lib/agent-firewall/ide-extension/vscode.js +0 -68
- package/bin/runners/lib/agent-firewall/ide-extension/windsurf.js +0 -66
- package/bin/runners/lib/agent-firewall/interceptor/base.js +0 -304
- package/bin/runners/lib/agent-firewall/interceptor/cursor.js +0 -35
- package/bin/runners/lib/agent-firewall/interceptor/vscode.js +0 -35
- package/bin/runners/lib/agent-firewall/interceptor/windsurf.js +0 -34
- package/bin/runners/lib/agent-firewall/lawbook/distributor.js +0 -465
- package/bin/runners/lib/agent-firewall/lawbook/evaluator.js +0 -604
- package/bin/runners/lib/agent-firewall/lawbook/index.js +0 -304
- package/bin/runners/lib/agent-firewall/lawbook/registry.js +0 -514
- package/bin/runners/lib/agent-firewall/lawbook/schema.js +0 -420
- package/bin/runners/lib/agent-firewall/learning/learning-engine.js +0 -849
- package/bin/runners/lib/agent-firewall/logger.js +0 -141
- package/bin/runners/lib/agent-firewall/policy/default-policy.json +0 -90
- package/bin/runners/lib/agent-firewall/policy/engine.js +0 -103
- package/bin/runners/lib/agent-firewall/policy/loader.js +0 -451
- package/bin/runners/lib/agent-firewall/policy/rules/auth-drift.js +0 -50
- package/bin/runners/lib/agent-firewall/policy/rules/contract-drift.js +0 -50
- package/bin/runners/lib/agent-firewall/policy/rules/fake-success.js +0 -86
- package/bin/runners/lib/agent-firewall/policy/rules/ghost-env.js +0 -162
- package/bin/runners/lib/agent-firewall/policy/rules/ghost-route.js +0 -189
- package/bin/runners/lib/agent-firewall/policy/rules/scope.js +0 -93
- package/bin/runners/lib/agent-firewall/policy/rules/unsafe-side-effect.js +0 -57
- package/bin/runners/lib/agent-firewall/policy/schema.json +0 -183
- package/bin/runners/lib/agent-firewall/policy/verdict.js +0 -54
- package/bin/runners/lib/agent-firewall/proposal/extractor.js +0 -394
- package/bin/runners/lib/agent-firewall/proposal/index.js +0 -212
- package/bin/runners/lib/agent-firewall/proposal/schema.js +0 -251
- package/bin/runners/lib/agent-firewall/proposal/validator.js +0 -386
- package/bin/runners/lib/agent-firewall/reality/index.js +0 -332
- package/bin/runners/lib/agent-firewall/reality/state.js +0 -625
- package/bin/runners/lib/agent-firewall/reality/watcher.js +0 -322
- package/bin/runners/lib/agent-firewall/risk/index.js +0 -173
- package/bin/runners/lib/agent-firewall/risk/scorer.js +0 -328
- package/bin/runners/lib/agent-firewall/risk/thresholds.js +0 -321
- package/bin/runners/lib/agent-firewall/risk/vectors.js +0 -421
- package/bin/runners/lib/agent-firewall/simulator/diff-simulator.js +0 -472
- package/bin/runners/lib/agent-firewall/simulator/import-resolver.js +0 -346
- package/bin/runners/lib/agent-firewall/simulator/index.js +0 -181
- package/bin/runners/lib/agent-firewall/simulator/route-validator.js +0 -380
- package/bin/runners/lib/agent-firewall/time-machine/incident-correlator.js +0 -661
- package/bin/runners/lib/agent-firewall/time-machine/index.js +0 -267
- package/bin/runners/lib/agent-firewall/time-machine/replay-engine.js +0 -436
- package/bin/runners/lib/agent-firewall/time-machine/state-reconstructor.js +0 -490
- package/bin/runners/lib/agent-firewall/time-machine/timeline-builder.js +0 -530
- package/bin/runners/lib/agent-firewall/truthpack/index.js +0 -67
- package/bin/runners/lib/agent-firewall/truthpack/loader.js +0 -137
- package/bin/runners/lib/agent-firewall/unblock/planner.js +0 -337
- package/bin/runners/lib/agent-firewall/utils/ignore-checker.js +0 -118
- package/bin/runners/lib/api-client.js +0 -269
- package/bin/runners/lib/audit-logger.js +0 -532
- package/bin/runners/lib/authority/authorities/architecture.js +0 -364
- package/bin/runners/lib/authority/authorities/compliance.js +0 -341
- package/bin/runners/lib/authority/authorities/human.js +0 -343
- package/bin/runners/lib/authority/authorities/quality.js +0 -420
- package/bin/runners/lib/authority/authorities/security.js +0 -228
- package/bin/runners/lib/authority/index.js +0 -293
- package/bin/runners/lib/authority-badge.js +0 -425
- package/bin/runners/lib/bundle/bundle-intelligence.js +0 -846
- package/bin/runners/lib/cli-charts.js +0 -368
- package/bin/runners/lib/cli-config-display.js +0 -405
- package/bin/runners/lib/cli-demo.js +0 -275
- package/bin/runners/lib/cli-errors.js +0 -438
- package/bin/runners/lib/cli-help-formatter.js +0 -439
- package/bin/runners/lib/cli-interactive-menu.js +0 -509
- package/bin/runners/lib/cli-prompts.js +0 -441
- package/bin/runners/lib/cli-scan-cards.js +0 -362
- package/bin/runners/lib/compliance-reporter.js +0 -710
- package/bin/runners/lib/conductor/index.js +0 -671
- package/bin/runners/lib/easy/README.md +0 -123
- package/bin/runners/lib/easy/index.js +0 -140
- package/bin/runners/lib/easy/interactive-wizard.js +0 -788
- package/bin/runners/lib/easy/one-click-firewall.js +0 -564
- package/bin/runners/lib/easy/zero-config-reality.js +0 -714
- package/bin/runners/lib/engines/accessibility-engine.js +0 -390
- package/bin/runners/lib/engines/api-consistency-engine.js +0 -467
- package/bin/runners/lib/engines/ast-cache.js +0 -99
- package/bin/runners/lib/engines/async-patterns-engine.js +0 -444
- package/bin/runners/lib/engines/bundle-size-engine.js +0 -433
- package/bin/runners/lib/engines/code-quality-engine.js +0 -255
- package/bin/runners/lib/engines/confidence-scoring.js +0 -276
- package/bin/runners/lib/engines/console-logs-engine.js +0 -115
- package/bin/runners/lib/engines/context-detection.js +0 -264
- package/bin/runners/lib/engines/cross-file-analysis-engine.js +0 -533
- package/bin/runners/lib/engines/database-patterns-engine.js +0 -429
- package/bin/runners/lib/engines/dead-code-engine.js +0 -198
- package/bin/runners/lib/engines/deprecated-api-engine.js +0 -226
- package/bin/runners/lib/engines/duplicate-code-engine.js +0 -354
- package/bin/runners/lib/engines/empty-catch-engine.js +0 -260
- package/bin/runners/lib/engines/env-variables-engine.js +0 -458
- package/bin/runners/lib/engines/error-handling-engine.js +0 -437
- package/bin/runners/lib/engines/false-positive-prevention.js +0 -630
- package/bin/runners/lib/engines/file-filter.js +0 -131
- package/bin/runners/lib/engines/framework-adapters/index.js +0 -607
- package/bin/runners/lib/engines/framework-detection.js +0 -508
- package/bin/runners/lib/engines/hardcoded-secrets-engine.js +0 -251
- package/bin/runners/lib/engines/import-order-engine.js +0 -429
- package/bin/runners/lib/engines/mock-data-engine.js +0 -315
- package/bin/runners/lib/engines/naming-conventions-engine.js +0 -544
- package/bin/runners/lib/engines/noise-reduction-engine.js +0 -452
- package/bin/runners/lib/engines/orchestrator.js +0 -334
- package/bin/runners/lib/engines/parallel-processor.js +0 -71
- package/bin/runners/lib/engines/performance-issues-engine.js +0 -405
- package/bin/runners/lib/engines/react-patterns-engine.js +0 -457
- package/bin/runners/lib/engines/security-vulnerabilities-engine.js +0 -571
- package/bin/runners/lib/engines/todo-fixme-engine.js +0 -115
- package/bin/runners/lib/engines/type-aware-engine.js +0 -376
- package/bin/runners/lib/engines/unsafe-regex-engine.js +0 -225
- package/bin/runners/lib/engines/vibecheck-engines/README.md +0 -53
- package/bin/runners/lib/engines/vibecheck-engines/index.js +0 -124
- package/bin/runners/lib/engines/vibecheck-engines/lib/ai-hallucination-engine.js +0 -806
- package/bin/runners/lib/engines/vibecheck-engines/lib/hardcoded-secrets-engine.js +0 -439
- package/bin/runners/lib/engines/vibecheck-engines/lib/smart-fix-engine.js +0 -577
- package/bin/runners/lib/engines/vibecheck-engines/lib/vibe-score-engine.js +0 -543
- package/bin/runners/lib/engines/vibecheck-engines/package.json +0 -13
- package/bin/runners/lib/engines/vibecheck-engines.js +0 -514
- package/bin/runners/lib/enhanced-features/index.js +0 -305
- package/bin/runners/lib/enhanced-output.js +0 -631
- package/bin/runners/lib/enterprise.js +0 -300
- package/bin/runners/lib/exit-codes.js +0 -275
- package/bin/runners/lib/fingerprint.js +0 -377
- package/bin/runners/lib/firewall/command-validator.js +0 -351
- package/bin/runners/lib/firewall/config.js +0 -341
- package/bin/runners/lib/firewall/content-validator.js +0 -519
- package/bin/runners/lib/firewall/index.js +0 -101
- package/bin/runners/lib/firewall/path-validator.js +0 -256
- package/bin/runners/lib/help-formatter.js +0 -413
- package/bin/runners/lib/intelligence/cross-repo-intelligence.js +0 -817
- package/bin/runners/lib/logger.js +0 -38
- package/bin/runners/lib/mcp-utils.js +0 -425
- package/bin/runners/lib/output/index.js +0 -1022
- package/bin/runners/lib/policy-engine.js +0 -652
- package/bin/runners/lib/polish/autofix/accessibility-fixes.js +0 -333
- package/bin/runners/lib/polish/autofix/async-handlers.js +0 -273
- package/bin/runners/lib/polish/autofix/dead-code.js +0 -280
- package/bin/runners/lib/polish/autofix/imports-optimizer.js +0 -344
- package/bin/runners/lib/polish/autofix/index.js +0 -200
- package/bin/runners/lib/polish/autofix/remove-consoles.js +0 -209
- package/bin/runners/lib/polish/autofix/strengthen-types.js +0 -245
- package/bin/runners/lib/polish/backend-checks.js +0 -148
- package/bin/runners/lib/polish/documentation-checks.js +0 -111
- package/bin/runners/lib/polish/frontend-checks.js +0 -168
- package/bin/runners/lib/polish/index.js +0 -71
- package/bin/runners/lib/polish/infrastructure-checks.js +0 -131
- package/bin/runners/lib/polish/library-detection.js +0 -175
- package/bin/runners/lib/polish/performance-checks.js +0 -100
- package/bin/runners/lib/polish/security-checks.js +0 -148
- package/bin/runners/lib/polish/utils.js +0 -203
- package/bin/runners/lib/prompt-builder.js +0 -540
- package/bin/runners/lib/proof-certificate.js +0 -634
- package/bin/runners/lib/reality/accessibility-audit.js +0 -946
- package/bin/runners/lib/reality/api-contract-validator.js +0 -1012
- package/bin/runners/lib/reality/chaos-engineering.js +0 -1084
- package/bin/runners/lib/reality/performance-tracker.js +0 -1077
- package/bin/runners/lib/reality/scenario-generator.js +0 -1404
- package/bin/runners/lib/reality/visual-regression.js +0 -852
- package/bin/runners/lib/reality-profiler.js +0 -717
- package/bin/runners/lib/replay/flight-recorder-viewer.js +0 -1160
- package/bin/runners/lib/review/ai-code-review.js +0 -832
- package/bin/runners/lib/rules/custom-rule-engine.js +0 -985
- package/bin/runners/lib/sbom-generator.js +0 -641
- package/bin/runners/lib/scan-output-enhanced.js +0 -512
- package/bin/runners/lib/security/owasp-scanner.js +0 -939
- package/bin/runners/lib/ship-output-enterprise.js +0 -239
- package/bin/runners/lib/unified-cli-output.js +0 -777
- package/bin/runners/lib/validators/contract-validator.js +0 -283
- package/bin/runners/lib/validators/dead-export-detector.js +0 -279
- package/bin/runners/lib/validators/dep-audit.js +0 -245
- package/bin/runners/lib/validators/env-validator.js +0 -319
- package/bin/runners/lib/validators/index.js +0 -120
- package/bin/runners/lib/validators/license-checker.js +0 -252
- package/bin/runners/lib/validators/route-validator.js +0 -290
- package/bin/runners/runAgent.d.ts +0 -5
- package/bin/runners/runAgent.js +0 -164
- package/bin/runners/runApprove.js +0 -1233
- package/bin/runners/runAuthority.js +0 -528
- package/bin/runners/runClassify.js +0 -862
- package/bin/runners/runConductor.js +0 -772
- package/bin/runners/runContainer.js +0 -366
- package/bin/runners/runContext.d.ts +0 -4
- package/bin/runners/runEasy.js +0 -410
- package/bin/runners/runFirewall.d.ts +0 -5
- package/bin/runners/runFirewall.js +0 -137
- package/bin/runners/runFirewallHook.d.ts +0 -5
- package/bin/runners/runFirewallHook.js +0 -59
- package/bin/runners/runIaC.js +0 -372
- package/bin/runners/runPolish.d.ts +0 -4
- package/bin/runners/runProof.zip +0 -0
- package/bin/runners/runTruth.d.ts +0 -5
- package/bin/runners/runTruth.js +0 -104
- package/bin/runners/runVibe.js +0 -791
- package/mcp-server/HARDENING_SUMMARY.md +0 -299
- package/mcp-server/agent-firewall-interceptor.js +0 -500
- package/mcp-server/authority-tools.js +0 -569
- package/mcp-server/conductor/conflict-resolver.js +0 -588
- package/mcp-server/conductor/execution-planner.js +0 -544
- package/mcp-server/conductor/index.js +0 -377
- package/mcp-server/conductor/lock-manager.js +0 -615
- package/mcp-server/conductor/request-queue.js +0 -550
- package/mcp-server/conductor/session-manager.js +0 -500
- package/mcp-server/conductor/tools.js +0 -510
- package/mcp-server/lib/api-client.cjs +0 -13
- package/mcp-server/lib/logger.cjs +0 -30
- package/mcp-server/logger.js +0 -173
- package/mcp-server/tools-v3.js +0 -1039
- package/mcp-server/tools.js +0 -495
- package/mcp-server/vibecheck-mcp-server-3.2.0.tgz +0 -0
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Schema Validator for MCP Server
|
|
3
|
+
*
|
|
4
|
+
* Validates inputs/outputs against JSON schemas.
|
|
5
|
+
* Uses Ajv for fast, strict validation.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import Ajv, { ValidateFunction, ErrorObject } from 'ajv';
|
|
9
|
+
import addFormats from 'ajv-formats';
|
|
10
|
+
import { readFileSync, existsSync } from 'fs';
|
|
11
|
+
import { join, dirname } from 'path';
|
|
12
|
+
import { fileURLToPath } from 'url';
|
|
13
|
+
|
|
14
|
+
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
15
|
+
|
|
16
|
+
// Create Ajv instance - handle ESM/CJS interop
|
|
17
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
18
|
+
const AjvClass = (Ajv as any).default || Ajv;
|
|
19
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
20
|
+
const addFormatsFunc = (addFormats as any).default || addFormats;
|
|
21
|
+
|
|
22
|
+
// Singleton Ajv instance with strict settings
|
|
23
|
+
const ajv = new AjvClass({
|
|
24
|
+
strict: true,
|
|
25
|
+
allErrors: true,
|
|
26
|
+
verbose: true,
|
|
27
|
+
coerceTypes: false,
|
|
28
|
+
removeAdditional: false,
|
|
29
|
+
useDefaults: true,
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
addFormatsFunc(ajv);
|
|
33
|
+
|
|
34
|
+
// Schema cache
|
|
35
|
+
const schemaCache = new Map<string, ValidateFunction>();
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Load and compile a JSON schema
|
|
39
|
+
*/
|
|
40
|
+
function loadSchema(schemaName: string): ValidateFunction {
|
|
41
|
+
if (schemaCache.has(schemaName)) {
|
|
42
|
+
return schemaCache.get(schemaName)!;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
const schemaPath = join(__dirname, '..', 'schemas', `${schemaName}.schema.json`);
|
|
46
|
+
|
|
47
|
+
if (!existsSync(schemaPath)) {
|
|
48
|
+
throw new Error(`Schema not found: ${schemaName}`);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
const schema = JSON.parse(readFileSync(schemaPath, 'utf-8'));
|
|
52
|
+
const validate = ajv.compile(schema);
|
|
53
|
+
|
|
54
|
+
schemaCache.set(schemaName, validate);
|
|
55
|
+
return validate;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Validation result
|
|
60
|
+
*/
|
|
61
|
+
export interface ValidationResult {
|
|
62
|
+
valid: boolean;
|
|
63
|
+
errors?: ValidationError[];
|
|
64
|
+
coerced?: Record<string, unknown>;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface ValidationError {
|
|
68
|
+
path: string;
|
|
69
|
+
message: string;
|
|
70
|
+
keyword: string;
|
|
71
|
+
params: Record<string, unknown>;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Convert Ajv errors to our format
|
|
76
|
+
*/
|
|
77
|
+
function formatErrors(errors: ErrorObject[] | null | undefined): ValidationError[] {
|
|
78
|
+
if (!errors) return [];
|
|
79
|
+
|
|
80
|
+
return errors.map(err => ({
|
|
81
|
+
path: err.instancePath || '/',
|
|
82
|
+
message: err.message || 'Unknown error',
|
|
83
|
+
keyword: err.keyword,
|
|
84
|
+
params: err.params as Record<string, unknown>,
|
|
85
|
+
}));
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Validate input against RunRequest schema
|
|
90
|
+
*/
|
|
91
|
+
export function validateRunRequest(data: unknown): ValidationResult {
|
|
92
|
+
const validate = loadSchema('run-request');
|
|
93
|
+
const valid = validate(data);
|
|
94
|
+
|
|
95
|
+
return {
|
|
96
|
+
valid,
|
|
97
|
+
errors: valid ? undefined : formatErrors(validate.errors),
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Validate a finding object
|
|
103
|
+
*/
|
|
104
|
+
export function validateFinding(data: unknown): ValidationResult {
|
|
105
|
+
const validate = loadSchema('finding');
|
|
106
|
+
const valid = validate(data);
|
|
107
|
+
|
|
108
|
+
return {
|
|
109
|
+
valid,
|
|
110
|
+
errors: valid ? undefined : formatErrors(validate.errors),
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Validate a verdict object
|
|
116
|
+
*/
|
|
117
|
+
export function validateVerdict(data: unknown): ValidationResult {
|
|
118
|
+
const validate = loadSchema('verdict');
|
|
119
|
+
const valid = validate(data);
|
|
120
|
+
|
|
121
|
+
return {
|
|
122
|
+
valid,
|
|
123
|
+
errors: valid ? undefined : formatErrors(validate.errors),
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Validate an error envelope
|
|
129
|
+
*/
|
|
130
|
+
export function validateErrorEnvelope(data: unknown): ValidationResult {
|
|
131
|
+
const validate = loadSchema('error-envelope');
|
|
132
|
+
const valid = validate(data);
|
|
133
|
+
|
|
134
|
+
return {
|
|
135
|
+
valid,
|
|
136
|
+
errors: valid ? undefined : formatErrors(validate.errors),
|
|
137
|
+
};
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Validate tool-specific input schema
|
|
142
|
+
*/
|
|
143
|
+
export function validateToolInput(toolName: string, data: unknown): ValidationResult {
|
|
144
|
+
// Load tool registry to get input schema
|
|
145
|
+
const registryPath = join(__dirname, '..', 'registry', 'tools.json');
|
|
146
|
+
const registry = JSON.parse(readFileSync(registryPath, 'utf-8'));
|
|
147
|
+
|
|
148
|
+
const tool = registry.tools.find((t: { name: string }) => t.name === toolName);
|
|
149
|
+
if (!tool) {
|
|
150
|
+
return {
|
|
151
|
+
valid: false,
|
|
152
|
+
errors: [{ path: '/', message: `Unknown tool: ${toolName}`, keyword: 'tool', params: {} }],
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
// Compile and validate against tool's input schema
|
|
157
|
+
const cacheKey = `tool:${toolName}:input`;
|
|
158
|
+
let validate = schemaCache.get(cacheKey);
|
|
159
|
+
|
|
160
|
+
if (!validate) {
|
|
161
|
+
validate = ajv.compile(tool.inputSchema) as ValidateFunction;
|
|
162
|
+
schemaCache.set(cacheKey, validate);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
const valid = validate(data);
|
|
166
|
+
|
|
167
|
+
return {
|
|
168
|
+
valid,
|
|
169
|
+
errors: valid ? undefined : formatErrors(validate.errors),
|
|
170
|
+
};
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Normalize and validate finding ID
|
|
175
|
+
* Ensures deterministic, stable IDs
|
|
176
|
+
*/
|
|
177
|
+
export function normalizeFindingId(category: string, evidence: { file?: string; line?: number }): string {
|
|
178
|
+
const hash = createStableHash(`${category}:${evidence.file || ''}:${evidence.line || 0}`);
|
|
179
|
+
return `${category}-${hash.substring(0, 8)}`;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Create stable hash for deterministic IDs
|
|
184
|
+
*/
|
|
185
|
+
function createStableHash(input: string): string {
|
|
186
|
+
let hash = 0;
|
|
187
|
+
for (let i = 0; i < input.length; i++) {
|
|
188
|
+
const char = input.charCodeAt(i);
|
|
189
|
+
hash = ((hash << 5) - hash) + char;
|
|
190
|
+
hash = hash & hash; // Convert to 32-bit integer
|
|
191
|
+
}
|
|
192
|
+
return Math.abs(hash).toString(16).padStart(8, '0');
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* Validate and sanitize project path
|
|
197
|
+
*/
|
|
198
|
+
export function validateProjectPath(
|
|
199
|
+
path: string,
|
|
200
|
+
allowedWorkspace?: string
|
|
201
|
+
): { valid: boolean; normalized?: string; error?: string } {
|
|
202
|
+
// Normalize path
|
|
203
|
+
const normalized = path.replace(/\\/g, '/').replace(/\/+/g, '/');
|
|
204
|
+
|
|
205
|
+
// Check for path traversal
|
|
206
|
+
if (normalized.includes('..')) {
|
|
207
|
+
return { valid: false, error: 'Path traversal not allowed' };
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
// Check sandbox if workspace provided
|
|
211
|
+
if (allowedWorkspace) {
|
|
212
|
+
const normalizedWorkspace = allowedWorkspace.replace(/\\/g, '/');
|
|
213
|
+
if (!normalized.startsWith(normalizedWorkspace)) {
|
|
214
|
+
return { valid: false, error: 'Path outside allowed workspace' };
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
return { valid: true, normalized };
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
export default {
|
|
222
|
+
validateRunRequest,
|
|
223
|
+
validateFinding,
|
|
224
|
+
validateVerdict,
|
|
225
|
+
validateErrorEnvelope,
|
|
226
|
+
validateToolInput,
|
|
227
|
+
normalizeFindingId,
|
|
228
|
+
validateProjectPath,
|
|
229
|
+
};
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vibecheck-mcp-server",
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "vibecheck-mcp-server",
|
|
9
|
+
"version": "2.1.0",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@modelcontextprotocol/sdk": "^0.5.0"
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"vibecheck-mcp": "index.js"
|
|
16
|
+
},
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=18.0.0"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"node_modules/@modelcontextprotocol/sdk": {
|
|
22
|
+
"version": "0.5.0",
|
|
23
|
+
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-0.5.0.tgz",
|
|
24
|
+
"integrity": "sha512-RXgulUX6ewvxjAG0kOpLMEdXXWkzWgaoCGaA2CwNW7cQCIphjpJhjpHSiaPdVCnisjRF/0Cm9KWHUuIoeiAblQ==",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"content-type": "^1.0.5",
|
|
28
|
+
"raw-body": "^3.0.0",
|
|
29
|
+
"zod": "^3.23.8"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"node_modules/bytes": {
|
|
33
|
+
"version": "3.1.2",
|
|
34
|
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
|
35
|
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">= 0.8"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"node_modules/content-type": {
|
|
42
|
+
"version": "1.0.5",
|
|
43
|
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
|
|
44
|
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">= 0.6"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"node_modules/depd": {
|
|
51
|
+
"version": "2.0.0",
|
|
52
|
+
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
|
53
|
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
|
54
|
+
"license": "MIT",
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">= 0.8"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"node_modules/http-errors": {
|
|
60
|
+
"version": "2.0.1",
|
|
61
|
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
|
|
62
|
+
"integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
|
|
63
|
+
"license": "MIT",
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"depd": "~2.0.0",
|
|
66
|
+
"inherits": "~2.0.4",
|
|
67
|
+
"setprototypeof": "~1.2.0",
|
|
68
|
+
"statuses": "~2.0.2",
|
|
69
|
+
"toidentifier": "~1.0.1"
|
|
70
|
+
},
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": ">= 0.8"
|
|
73
|
+
},
|
|
74
|
+
"funding": {
|
|
75
|
+
"type": "opencollective",
|
|
76
|
+
"url": "https://opencollective.com/express"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"node_modules/iconv-lite": {
|
|
80
|
+
"version": "0.7.1",
|
|
81
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.1.tgz",
|
|
82
|
+
"integrity": "sha512-2Tth85cXwGFHfvRgZWszZSvdo+0Xsqmw8k8ZwxScfcBneNUraK+dxRxRm24nszx80Y0TVio8kKLt5sLE7ZCLlw==",
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
"dependencies": {
|
|
85
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
86
|
+
},
|
|
87
|
+
"engines": {
|
|
88
|
+
"node": ">=0.10.0"
|
|
89
|
+
},
|
|
90
|
+
"funding": {
|
|
91
|
+
"type": "opencollective",
|
|
92
|
+
"url": "https://opencollective.com/express"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"node_modules/inherits": {
|
|
96
|
+
"version": "2.0.4",
|
|
97
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
98
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
99
|
+
"license": "ISC"
|
|
100
|
+
},
|
|
101
|
+
"node_modules/raw-body": {
|
|
102
|
+
"version": "3.0.2",
|
|
103
|
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
|
|
104
|
+
"integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
|
|
105
|
+
"license": "MIT",
|
|
106
|
+
"dependencies": {
|
|
107
|
+
"bytes": "~3.1.2",
|
|
108
|
+
"http-errors": "~2.0.1",
|
|
109
|
+
"iconv-lite": "~0.7.0",
|
|
110
|
+
"unpipe": "~1.0.0"
|
|
111
|
+
},
|
|
112
|
+
"engines": {
|
|
113
|
+
"node": ">= 0.10"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"node_modules/safer-buffer": {
|
|
117
|
+
"version": "2.1.2",
|
|
118
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
119
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
120
|
+
"license": "MIT"
|
|
121
|
+
},
|
|
122
|
+
"node_modules/setprototypeof": {
|
|
123
|
+
"version": "1.2.0",
|
|
124
|
+
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
|
125
|
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
|
|
126
|
+
"license": "ISC"
|
|
127
|
+
},
|
|
128
|
+
"node_modules/statuses": {
|
|
129
|
+
"version": "2.0.2",
|
|
130
|
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
|
|
131
|
+
"integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
|
|
132
|
+
"license": "MIT",
|
|
133
|
+
"engines": {
|
|
134
|
+
"node": ">= 0.8"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"node_modules/toidentifier": {
|
|
138
|
+
"version": "1.0.1",
|
|
139
|
+
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
|
140
|
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
|
141
|
+
"license": "MIT",
|
|
142
|
+
"engines": {
|
|
143
|
+
"node": ">=0.6"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"node_modules/unpipe": {
|
|
147
|
+
"version": "1.0.0",
|
|
148
|
+
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
|
149
|
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
|
150
|
+
"license": "MIT",
|
|
151
|
+
"engines": {
|
|
152
|
+
"node": ">= 0.8"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"node_modules/zod": {
|
|
156
|
+
"version": "3.25.76",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
158
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
159
|
+
"license": "MIT",
|
|
160
|
+
"funding": {
|
|
161
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
package/mcp-server/package.json
CHANGED
|
@@ -1,15 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibecheck-mcp-server",
|
|
3
|
-
"version": "3.5.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.5.1",
|
|
4
|
+
"description": "World-class MCP server for vibecheck - CLI-tight, deterministic, fast, secure",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"vibecheck-mcp": "./index.js"
|
|
8
|
+
"vibecheck-mcp": "./index.js",
|
|
9
|
+
"vibecheck-mcp-v3": "./dist/index-v3.js"
|
|
9
10
|
},
|
|
10
11
|
"scripts": {
|
|
11
12
|
"start": "node index.js",
|
|
12
|
-
"
|
|
13
|
+
"start:v3": "node dist/index-v3.js",
|
|
14
|
+
"dev": "node --env-file=.env index.js",
|
|
15
|
+
"dev:v3": "tsx index-v3.ts",
|
|
16
|
+
"build": "tsc -p tsconfig.json",
|
|
17
|
+
"test": "vitest run",
|
|
18
|
+
"test:watch": "vitest",
|
|
19
|
+
"test:coverage": "vitest run --coverage",
|
|
20
|
+
"test:ci": "vitest run --reporter=verbose",
|
|
21
|
+
"benchmark": "tsx benchmarks/run-benchmarks.ts",
|
|
22
|
+
"lint": "eslint lib handlers --ext .ts",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"verify": "npm run typecheck && npm run test && npm run lint",
|
|
25
|
+
"prepublishOnly": "npm run build"
|
|
13
26
|
},
|
|
14
27
|
"keywords": [
|
|
15
28
|
"mcp",
|
|
@@ -18,13 +31,22 @@
|
|
|
18
31
|
"vibecheck",
|
|
19
32
|
"development",
|
|
20
33
|
"validation",
|
|
21
|
-
"architecture"
|
|
34
|
+
"architecture",
|
|
35
|
+
"cli"
|
|
22
36
|
],
|
|
23
37
|
"dependencies": {
|
|
24
|
-
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
38
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
39
|
+
"ajv": "^8.17.1",
|
|
40
|
+
"ajv-formats": "^3.0.1"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/node": "^22.0.0",
|
|
44
|
+
"tsx": "^4.0.0",
|
|
45
|
+
"typescript": "^5.0.0",
|
|
46
|
+
"vitest": "^2.0.0"
|
|
25
47
|
},
|
|
26
48
|
"engines": {
|
|
27
|
-
"node": ">=
|
|
49
|
+
"node": ">=18.0.0"
|
|
28
50
|
},
|
|
29
51
|
"author": "vibecheck",
|
|
30
52
|
"license": "MIT",
|
|
@@ -33,6 +55,9 @@
|
|
|
33
55
|
},
|
|
34
56
|
"files": [
|
|
35
57
|
"*.js",
|
|
58
|
+
"dist/",
|
|
59
|
+
"schemas/",
|
|
60
|
+
"registry/",
|
|
36
61
|
"README.md"
|
|
37
62
|
],
|
|
38
63
|
"repository": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
import fs from 'fs/promises';
|
|
17
17
|
import path from 'path';
|
|
18
18
|
import { execSync, spawn } from 'child_process';
|
|
19
|
-
import {
|
|
19
|
+
import { checkFeatureAccess } from "./tier-auth.js";
|
|
20
20
|
|
|
21
21
|
// State management (in-memory for MCP session, persisted to disk)
|
|
22
22
|
class MCPState {
|
|
@@ -434,7 +434,7 @@ export async function handlePremiumTool(name, args, logger) {
|
|
|
434
434
|
|
|
435
435
|
const requiredFeature = featureMap[name];
|
|
436
436
|
if (requiredFeature) {
|
|
437
|
-
const access = await
|
|
437
|
+
const access = await checkFeatureAccess(requiredFeature, args?.apiKey);
|
|
438
438
|
if (!access.hasAccess) {
|
|
439
439
|
return {
|
|
440
440
|
content: [{
|