@vibecheck-ai/mcp 26.0.1 → 26.0.2

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.
@@ -2007,11 +2007,21 @@ function quotasToTierLimits(q) {
2007
2007
  retentionDays: q.scanHistoryDays
2008
2008
  };
2009
2009
  }
2010
+ function getQuotasForTier(tier) {
2011
+ if (tier === null || tier === "free" || tier === void 0) {
2012
+ return getQuotas(null);
2013
+ }
2014
+ return PLAN_QUOTAS[tier] ?? getQuotas(null);
2015
+ }
2010
2016
  ({
2011
2017
  free: quotasToTierLimits(getQuotas(null)),
2012
- pro: quotasToTierLimits(PLAN_QUOTAS.pro),
2013
- team: quotasToTierLimits(PLAN_QUOTAS.team),
2014
- enterprise: quotasToTierLimits(PLAN_QUOTAS.enterprise)
2018
+ pro: quotasToTierLimits(getQuotasForTier("vibecoder")),
2019
+ team: quotasToTierLimits(getQuotasForTier("engineer")),
2020
+ enterprise: quotasToTierLimits(getQuotasForTier("enterprise")),
2021
+ // Legacy aliases map to canonical tiers
2022
+ vibecoder: quotasToTierLimits(getQuotasForTier("vibecoder")),
2023
+ developer: quotasToTierLimits(getQuotasForTier("vibecoder")),
2024
+ engineer: quotasToTierLimits(getQuotasForTier("engineer"))
2015
2025
  });
2016
2026
  ({
2017
2027
  ...PLAN_PRICE_LABELS
@@ -1,7 +1,7 @@
1
1
  import { createRequire } from 'module';
2
2
  import { fileURLToPath } from 'url';
3
3
  import { dirname } from 'path';
4
- export { AIRulesAttackEngine, AI_HALLUCINATED_PACKAGES, CANONICAL_AI_PACKAGES_NPM, CORE_ENGINE_IDS, CORE_ENGINE_MANIFESTS, CircuitBreaker, ENGINE_FOCUS_PRESETS, EngineRegistry, EnvLoader, FakeFeaturesEngine, IncompleteImplEngine, OutcomeVerificationEngine, PerformanceAntipatternEngine, RULE_AUTOFIX_SAFETY_BY_ID, RULE_MATURITY_BY_ID, RULE_TRUST_IMPACT_BY_ID, RuntimeProbeEngine, SCAN_ENGINE_FOCUS_PRESET_NAMES, SecurityPatternEngine, SlopsquatEngine, TestQualityEngine, TruthpackEnvIndex, TypeContractEngine, VIBECHECK_DEFAULT_ENGINE_IDS, VibecheckNativeEngine, WORKSPACE_ENGINE_IDS, WORKSPACE_ENGINE_MANIFESTS, accessibilityEngine, aiRulesAttackManifest, apexFromHost, apexFromUrl, autofixSafetyForRule, backendEngine, buildCiSummaryJson, buildRiskClusters, buildShipBlockers, categoryIcons, computeFusionStats, computeTrustScore, configurationEngine, createDefaultRegistry, detectBrandImpersonationNpm, diffScores, documentationEngine, engineTogglesAllowOnly, errorHandlingManifest, estimateBlastRadius, extractKnownHostsFromIntegrations, fakeFeaturesManifest, findUncalledExportedFunctions, formatCiSummaryMarkdown, formatCiSummaryPlainLines, formatFindings, formatSummary, formatTraceAsJson, formatTraceForTerminal, formatTrustScoreMarkdown, fuseFindings, generateVerdict, ghostRouteManifest, hostMatchesKnownSet, icons, incompleteImplManifest, infrastructureEngine, isTestLikeScanPath, isVibecheckFinding, loadTruthpack, logicGapManifest, maturityTierForRule, observabilityEngine, outcomeVerificationManifest, parseCallSites, perfAntipatternManifest, performanceEngine, phantomDepManifest, registerAllEngines, registerCoreEngines, registerWorkspaceEngines, resilienceEngine, runGhostTrace, runPolish, scan, securityEngine, securityPatternManifest, seoEngine, slopsquatManifest, testQualityManifest, toCanonicalFinding, toCanonicalFindingFromGuardrail, toCanonicalFindingFromLegacyFinding, toCanonicalFindingFromMissionFinding, toCanonicalFindingFromPolish, toCanonicalFindingFromReport, toCanonicalFindingFromScanApi, toCanonicalFindingFromScanFinding, toCanonicalFindings, toSarif, trustImpactForRule, trustPenaltyScaleForFinding, truthpackToRouteIndex, typeContractManifest } from './chunk-PXXM6OHD.js';
4
+ export { AIRulesAttackEngine, AI_HALLUCINATED_PACKAGES, CANONICAL_AI_PACKAGES_NPM, CORE_ENGINE_IDS, CORE_ENGINE_MANIFESTS, CircuitBreaker, ENGINE_FOCUS_PRESETS, EngineRegistry, EnvLoader, FakeFeaturesEngine, IncompleteImplEngine, OutcomeVerificationEngine, PerformanceAntipatternEngine, RULE_AUTOFIX_SAFETY_BY_ID, RULE_MATURITY_BY_ID, RULE_TRUST_IMPACT_BY_ID, RuntimeProbeEngine, SCAN_ENGINE_FOCUS_PRESET_NAMES, SecurityPatternEngine, SlopsquatEngine, TestQualityEngine, TruthpackEnvIndex, TypeContractEngine, VIBECHECK_DEFAULT_ENGINE_IDS, VibecheckNativeEngine, WORKSPACE_ENGINE_IDS, WORKSPACE_ENGINE_MANIFESTS, accessibilityEngine, aiRulesAttackManifest, apexFromHost, apexFromUrl, autofixSafetyForRule, backendEngine, buildCiSummaryJson, buildRiskClusters, buildShipBlockers, categoryIcons, computeFusionStats, computeTrustScore, configurationEngine, createDefaultRegistry, detectBrandImpersonationNpm, diffScores, documentationEngine, engineTogglesAllowOnly, errorHandlingManifest, estimateBlastRadius, extractKnownHostsFromIntegrations, fakeFeaturesManifest, findUncalledExportedFunctions, formatCiSummaryMarkdown, formatCiSummaryPlainLines, formatFindings, formatSummary, formatTraceAsJson, formatTraceForTerminal, formatTrustScoreMarkdown, fuseFindings, generateVerdict, ghostRouteManifest, hostMatchesKnownSet, icons, incompleteImplManifest, infrastructureEngine, isTestLikeScanPath, isVibecheckFinding, loadTruthpack, logicGapManifest, maturityTierForRule, observabilityEngine, outcomeVerificationManifest, parseCallSites, perfAntipatternManifest, performanceEngine, phantomDepManifest, registerAllEngines, registerCoreEngines, registerWorkspaceEngines, resilienceEngine, runGhostTrace, runPolish, scan, securityEngine, securityPatternManifest, seoEngine, slopsquatManifest, testQualityManifest, toCanonicalFinding, toCanonicalFindingFromGuardrail, toCanonicalFindingFromLegacyFinding, toCanonicalFindingFromMissionFinding, toCanonicalFindingFromPolish, toCanonicalFindingFromReport, toCanonicalFindingFromScanApi, toCanonicalFindingFromScanFinding, toCanonicalFindings, toSarif, trustImpactForRule, trustPenaltyScaleForFinding, truthpackToRouteIndex, typeContractManifest } from './chunk-M5RKCWHG.js';
5
5
  export { FrameworkPackEngine } from './chunk-MUP4JXOF.js';
6
6
  export { LogicGapEngine } from './chunk-DDTUTWRY.js';
7
7
  export { ErrorHandlingEngine } from './chunk-FRK2XZX5.js';
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import * as path2 from 'path';
5
5
  import path2__default, { dirname, win32, posix, join, extname, resolve, basename, normalize } from 'path';
6
6
  import { recordFeedback, evolve } from './chunk-J52EUKKW.js';
7
7
  import { require_braces, require_picomatch, require_utils, require_glob_parent } from './chunk-QGPX6H6L.js';
8
- import { SCAN_ENGINE_FOCUS_PRESET_NAMES, FEATURE_NAMES, getCheckoutUrl, DAILY_SCAN_LIMIT_UPGRADE_URL, formatDailyScanLimitMessage, dashboardFindingUrl, gateCanonicalScanReportFindings, getTrustScoreStatus, formatTrustScoreMcp, buildGatedScanResponse, formatFindingSeverityBreakdown, ENGINE_FOCUS_PRESETS, computeTrustScore, normalizeCanonicalScanReport, planHasApiSurface, canAccessFeature, getMinPlanForApiSurface, buildCliUpgradeBlock, getMinimumPlanForFeature, getQuotas, normalizePlanId, fetchCanonicalAccess } from './chunk-PXXM6OHD.js';
8
+ import { SCAN_ENGINE_FOCUS_PRESET_NAMES, FEATURE_NAMES, getCheckoutUrl, DAILY_SCAN_LIMIT_UPGRADE_URL, formatDailyScanLimitMessage, dashboardFindingUrl, gateCanonicalScanReportFindings, getTrustScoreStatus, formatTrustScoreMcp, buildGatedScanResponse, formatFindingSeverityBreakdown, ENGINE_FOCUS_PRESETS, computeTrustScore, normalizeCanonicalScanReport, planHasApiSurface, canAccessFeature, getMinPlanForApiSurface, buildCliUpgradeBlock, getMinimumPlanForFeature, getQuotas, normalizePlanId, fetchCanonicalAccess } from './chunk-M5RKCWHG.js';
9
9
  import './chunk-MUP4JXOF.js';
10
10
  import './chunk-DDTUTWRY.js';
11
11
  import { require_typescript } from './chunk-FRK2XZX5.js';
@@ -26794,7 +26794,7 @@ function createScanIdempotencyKey(prefix) {
26794
26794
  // src/mcp-scan-meter-client.ts
26795
26795
  var MCP_SCAN_METER_CLIENT = {
26796
26796
  type: "mcp",
26797
- version: "26.0.1"
26797
+ version: "26.0.2"
26798
26798
  };
26799
26799
 
26800
26800
  // ../shared/dist/chunk-YYSV5CG4.js
@@ -27528,23 +27528,23 @@ async function handleCallToolRequest(request, runtimeOverrides = {}) {
27528
27528
  const toolStartMs = Date.now();
27529
27529
  try {
27530
27530
  const { isMcpBelowMinimum } = await import('./version-gate-DWV5M7WC.js');
27531
- const gate = await isMcpBelowMinimum("26.0.1");
27531
+ const gate = await isMcpBelowMinimum("26.0.2");
27532
27532
  if (gate.belowMin) {
27533
27533
  return buildErrorResponse(
27534
- `VibeCheck MCP ${"26.0.1"} is below the minimum supported version (${gate.minVersion}). Upgrade with: npm install -g @vibecheck-ai/mcp@latest`
27534
+ `VibeCheck MCP ${"26.0.2"} is below the minimum supported version (${gate.minVersion}). Upgrade with: npm install -g @vibecheck-ai/mcp@latest`
27535
27535
  );
27536
27536
  }
27537
27537
  } catch {
27538
27538
  }
27539
27539
  try {
27540
- const { trackToolCall } = await import('./analytics-P4AUZXCQ.js');
27540
+ const { trackToolCall } = await import('./analytics-RKAYZLK7.js');
27541
27541
  trackToolCall(name);
27542
27542
  } catch {
27543
27543
  }
27544
27544
  if (!isKnownToolName(name)) {
27545
27545
  void (async () => {
27546
27546
  try {
27547
- const { trackToolResult } = await import('./analytics-P4AUZXCQ.js');
27547
+ const { trackToolResult } = await import('./analytics-RKAYZLK7.js');
27548
27548
  trackToolResult(name, false, Date.now() - toolStartMs, { reason: "unknown_tool" });
27549
27549
  } catch {
27550
27550
  }
@@ -27891,7 +27891,7 @@ ${validation.errors.join("\n")}`);
27891
27891
  if (!fs6.existsSync(absFile) || !fs6.statSync(absFile).isFile()) {
27892
27892
  return buildErrorResponse(`Not a file: ${relFile}`);
27893
27893
  }
27894
- const { runGhostTrace } = await import('./dist-ZTADJLYH.js');
27894
+ const { runGhostTrace } = await import('./dist-E7DNWZIO.js');
27895
27895
  const trace = await withTimeout(
27896
27896
  runGhostTrace({ workspaceRoot: targetPath, filePath: absFile }),
27897
27897
  MCP_TOOL_TIMEOUT_MS,
@@ -28469,7 +28469,7 @@ function createMcpServer(runtimeOverrides = {}) {
28469
28469
  const server = new Server(
28470
28470
  {
28471
28471
  name: "vibecheck-mcp",
28472
- version: "26.0.1"
28472
+ version: "26.0.2"
28473
28473
  },
28474
28474
  {
28475
28475
  capabilities: {
@@ -28486,8 +28486,8 @@ function createMcpServer(runtimeOverrides = {}) {
28486
28486
  }
28487
28487
  async function startStdioServer(runtimeOverrides = {}) {
28488
28488
  try {
28489
- const { initAnalytics } = await import('./analytics-P4AUZXCQ.js');
28490
- await initAnalytics("26.0.1");
28489
+ const { initAnalytics } = await import('./analytics-RKAYZLK7.js');
28490
+ await initAnalytics("26.0.2");
28491
28491
  } catch {
28492
28492
  }
28493
28493
  const server = createMcpServer(runtimeOverrides);
@@ -28495,7 +28495,7 @@ async function startStdioServer(runtimeOverrides = {}) {
28495
28495
  await server.connect(transport);
28496
28496
  const flush = async () => {
28497
28497
  try {
28498
- const { shutdownAnalytics } = await import('./analytics-P4AUZXCQ.js');
28498
+ const { shutdownAnalytics } = await import('./analytics-RKAYZLK7.js');
28499
28499
  await shutdownAnalytics();
28500
28500
  } catch {
28501
28501
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibecheck-ai/mcp",
3
- "version": "26.0.1",
3
+ "version": "26.0.2",
4
4
  "description": "VibeCheck MCP — the code intelligence layer for AI-built software, wired into your agent. Truth-grounded, runtime-aware, multi-agent. 16+ verification engines, runtime probes, and live truthpack context for Cursor, Claude, Windsurf, and any MCP-compatible client.",
5
5
  "mcpName": "io.github.guardiavault-oss/vibecheck-mcp",
6
6
  "type": "module",
@@ -60,15 +60,15 @@
60
60
  "postpublish": "node scripts/postpublish.cjs"
61
61
  },
62
62
  "dependencies": {
63
- "@isl-lang/pipeline": "workspace:*",
63
+ "@isl-lang/pipeline": "^1.0.0",
64
64
  "@modelcontextprotocol/sdk": "^1.0.0",
65
- "@repo/shared": "workspace:*",
66
- "@repo/shared-types": "workspace:*",
67
- "@repo/subscriptions": "workspace:*",
68
- "@vibecheck-ai/cli": "workspace:*",
69
- "@vibecheck/engines": "workspace:*",
70
- "@vibecheck/roast": "workspace:*",
71
- "@vibecheck/x402-gate": "workspace:*",
65
+ "@repo/shared": "^0.1.0",
66
+ "@repo/shared-types": "^1.1.0",
67
+ "@repo/subscriptions": "^1.0.0",
68
+ "@vibecheck-ai/cli": "^26.1.0",
69
+ "@vibecheck/engines": "^2.0.0-beta.1",
70
+ "@vibecheck/roast": "^1.0.0",
71
+ "@vibecheck/x402-gate": "^0.1.0",
72
72
  "posthog-node": "^4.2.0",
73
73
  "zod": "^3.25.76"
74
74
  },
@@ -76,16 +76,7 @@
76
76
  "better-sqlite3": "^11.7.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@repo/eslint-config": "workspace:*",
80
- "@repo/context-engine": "workspace:*",
81
- "@repo/context-evolution": "workspace:*",
82
79
  "@types/node": "^20.0.0",
83
- "@vibecheck/codegraph": "workspace:*",
84
- "@vibecheck/core": "workspace:*",
85
- "@vibecheck/engines": "workspace:*",
86
- "@vibecheck/nexus-orchestrator": "workspace:*",
87
- "@vibecheck/nexus-sentinel": "workspace:*",
88
- "@vibecheck/truthpack": "workspace:*",
89
80
  "eslint": "^9.28.0",
90
81
  "tsup": "^8.0.0",
91
82
  "typescript": "^5.8.0",