@vibecheckai/cli 3.9.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/README.md +1 -1
  2. package/bin/runners/context/generators/cursor-enhanced.js +99 -13
  3. package/bin/runners/lib/unified-cli-output.js +16 -0
  4. package/bin/runners/runCI.js +353 -0
  5. package/bin/runners/runCheckpoint.js +2 -2
  6. package/mcp-server/.eslintrc.json +24 -0
  7. package/mcp-server/README.md +425 -135
  8. package/mcp-server/SPEC.md +583 -0
  9. package/mcp-server/configs/README.md +172 -0
  10. package/mcp-server/configs/claude-desktop-pro.json +31 -0
  11. package/mcp-server/configs/claude-desktop-with-workspace.json +25 -0
  12. package/mcp-server/configs/claude-desktop.json +19 -0
  13. package/mcp-server/configs/cursor-mcp.json +21 -0
  14. package/mcp-server/configs/windsurf-mcp.json +17 -0
  15. package/mcp-server/mcp-config.example.json +9 -0
  16. package/mcp-server/package.json +49 -34
  17. package/mcp-server/src/cli.ts +185 -0
  18. package/mcp-server/src/index.ts +85 -0
  19. package/mcp-server/src/server.ts +1933 -0
  20. package/mcp-server/src/services/cache-service.ts +466 -0
  21. package/mcp-server/src/services/cli-service.ts +345 -0
  22. package/mcp-server/src/services/context-manager.ts +717 -0
  23. package/mcp-server/src/services/firewall-service.ts +662 -0
  24. package/mcp-server/src/services/git-service.ts +671 -0
  25. package/mcp-server/src/services/index.ts +52 -0
  26. package/mcp-server/src/services/prompt-builder-service.ts +1031 -0
  27. package/mcp-server/src/services/session-service.ts +550 -0
  28. package/mcp-server/src/services/tier-service.ts +470 -0
  29. package/mcp-server/src/types.ts +351 -0
  30. package/mcp-server/tsconfig.json +16 -27
  31. package/package.json +6 -6
  32. package/mcp-server/.guardrail/audit/audit.log.jsonl +0 -2
  33. package/mcp-server/.specs/architecture.mdc +0 -90
  34. package/mcp-server/.specs/security.mdc +0 -30
  35. package/mcp-server/HARDENING_SUMMARY.md +0 -299
  36. package/mcp-server/agent-checkpoint.js +0 -364
  37. package/mcp-server/agent-firewall-interceptor.js +0 -500
  38. package/mcp-server/architect-tools.js +0 -707
  39. package/mcp-server/audit-mcp.js +0 -206
  40. package/mcp-server/authority-tools.js +0 -569
  41. package/mcp-server/codebase-architect-tools.js +0 -838
  42. package/mcp-server/conductor/conflict-resolver.js +0 -588
  43. package/mcp-server/conductor/execution-planner.js +0 -544
  44. package/mcp-server/conductor/index.js +0 -377
  45. package/mcp-server/conductor/lock-manager.js +0 -615
  46. package/mcp-server/conductor/request-queue.js +0 -550
  47. package/mcp-server/conductor/session-manager.js +0 -500
  48. package/mcp-server/conductor/tools.js +0 -510
  49. package/mcp-server/consolidated-tools.js +0 -1170
  50. package/mcp-server/deprecation-middleware.js +0 -282
  51. package/mcp-server/handlers/index.ts +0 -15
  52. package/mcp-server/handlers/tool-handler.ts +0 -593
  53. package/mcp-server/hygiene-tools.js +0 -428
  54. package/mcp-server/index-v1.js +0 -698
  55. package/mcp-server/index.js +0 -2940
  56. package/mcp-server/intelligence-tools.js +0 -664
  57. package/mcp-server/intent-drift-tools.js +0 -873
  58. package/mcp-server/intent-firewall-interceptor.js +0 -529
  59. package/mcp-server/lib/api-client.cjs +0 -13
  60. package/mcp-server/lib/cache-wrapper.cjs +0 -383
  61. package/mcp-server/lib/error-envelope.js +0 -138
  62. package/mcp-server/lib/executor.ts +0 -499
  63. package/mcp-server/lib/index.ts +0 -29
  64. package/mcp-server/lib/logger.cjs +0 -30
  65. package/mcp-server/lib/rate-limiter.js +0 -166
  66. package/mcp-server/lib/sandbox.test.ts +0 -519
  67. package/mcp-server/lib/sandbox.ts +0 -395
  68. package/mcp-server/lib/types.ts +0 -267
  69. package/mcp-server/logger.js +0 -173
  70. package/mcp-server/manifest.json +0 -473
  71. package/mcp-server/mdc-generator.js +0 -298
  72. package/mcp-server/premium-tools.js +0 -1275
  73. package/mcp-server/proof-tools.js +0 -571
  74. package/mcp-server/registry/tool-registry.js +0 -586
  75. package/mcp-server/registry/tools.json +0 -619
  76. package/mcp-server/registry.test.ts +0 -340
  77. package/mcp-server/test-mcp.js +0 -108
  78. package/mcp-server/test-tools.js +0 -36
  79. package/mcp-server/tests/tier-gating.test.js +0 -297
  80. package/mcp-server/tier-auth.js +0 -767
  81. package/mcp-server/tools/index.js +0 -72
  82. package/mcp-server/tools-reorganized.ts +0 -244
  83. package/mcp-server/tools-v3.js +0 -1004
  84. package/mcp-server/truth-context.js +0 -622
  85. package/mcp-server/truth-firewall-tools.js +0 -2183
  86. package/mcp-server/vibecheck-2.0-tools.js +0 -761
  87. package/mcp-server/vibecheck-mcp-server-3.2.0.tgz +0 -0
  88. package/mcp-server/vibecheck-tools.js +0 -1075
@@ -1,383 +0,0 @@
1
- /**
2
- * Cache Wrapper for MCP Server (CommonJS)
3
- *
4
- * Provides cache integration for vibecheck MCP tools.
5
- * Wraps tool execution with caching and returns cacheStats.
6
- */
7
-
8
- const fs = require('fs');
9
- const path = require('path');
10
- const crypto = require('crypto');
11
- const os = require('os');
12
-
13
- // =============================================================================
14
- // CONFIGURATION
15
- // =============================================================================
16
-
17
- const CACHE_VERSION = '1.0.0';
18
- const CACHE_MAX_AGE_MS = 24 * 60 * 60 * 1000; // 24 hours
19
- const CACHE_MAX_ENTRIES = 100;
20
- const SCHEMA_VERSION = '1.0.0';
21
-
22
- const CONFIG_FILES = ['.vibecheckrc.json', '.vibecheckrc', 'vibecheck.config.js'];
23
- const LOCKFILES = ['pnpm-lock.yaml', 'package-lock.json', 'yarn.lock', 'bun.lockb'];
24
-
25
- // =============================================================================
26
- // CACHE UTILITIES
27
- // =============================================================================
28
-
29
- function getCacheDir() {
30
- const home = os.homedir();
31
- if (process.platform === 'win32') {
32
- return path.join(
33
- process.env.APPDATA || path.join(home, 'AppData', 'Roaming'),
34
- 'vibecheck',
35
- 'cache',
36
- 'runs'
37
- );
38
- }
39
- return path.join(home, '.cache', 'vibecheck', 'runs');
40
- }
41
-
42
- function getCacheFilePath(projectPath) {
43
- const cacheDir = getCacheDir();
44
- const projectHash = crypto
45
- .createHash('sha256')
46
- .update(path.resolve(projectPath))
47
- .digest('hex')
48
- .slice(0, 16);
49
- return path.join(cacheDir, `tool-cache-${projectHash}.json`);
50
- }
51
-
52
- function ensureCacheDir() {
53
- const cacheDir = getCacheDir();
54
- if (!fs.existsSync(cacheDir)) {
55
- fs.mkdirSync(cacheDir, { recursive: true, mode: 0o700 });
56
- }
57
- }
58
-
59
- function computeFileHash(filePath) {
60
- try {
61
- if (!fs.existsSync(filePath)) return null;
62
- const content = fs.readFileSync(filePath);
63
- return crypto.createHash('sha256').update(content).digest('hex').slice(0, 16);
64
- } catch {
65
- return null;
66
- }
67
- }
68
-
69
- function hashString(str) {
70
- return crypto.createHash('sha256').update(str).digest('hex').slice(0, 16);
71
- }
72
-
73
- function computeRepoFingerprint(projectPath) {
74
- const components = [];
75
-
76
- // Hash config files
77
- for (const configFile of CONFIG_FILES) {
78
- const configPath = path.join(projectPath, configFile);
79
- const hash = computeFileHash(configPath);
80
- if (hash) {
81
- components.push(`config:${configFile}:${hash}`);
82
- }
83
- }
84
-
85
- // Hash lockfiles
86
- for (const lockfile of LOCKFILES) {
87
- const lockPath = path.join(projectPath, lockfile);
88
- const hash = computeFileHash(lockPath);
89
- if (hash) {
90
- components.push(`lock:${lockfile}:${hash}`);
91
- }
92
- }
93
-
94
- // Hash root package.json
95
- const manifestPath = path.join(projectPath, 'package.json');
96
- const manifestHash = computeFileHash(manifestPath);
97
- if (manifestHash) {
98
- components.push(`manifest:root:${manifestHash}`);
99
- }
100
-
101
- const combined = components.sort().join('|');
102
- return hashString(combined);
103
- }
104
-
105
- function generateCacheKey(toolName, projectPath, vibecheckVersion) {
106
- const repoFingerprint = computeRepoFingerprint(projectPath);
107
- return {
108
- toolName,
109
- vibecheckVersion,
110
- schemaVersion: SCHEMA_VERSION,
111
- repoFingerprint,
112
- };
113
- }
114
-
115
- function cacheKeyToString(key) {
116
- return `${key.toolName}:${key.vibecheckVersion}:${key.schemaVersion}:${key.repoFingerprint}`;
117
- }
118
-
119
- function loadCacheStore(projectPath) {
120
- try {
121
- const cachePath = getCacheFilePath(projectPath);
122
- if (!fs.existsSync(cachePath)) {
123
- return { version: CACHE_VERSION, entries: {} };
124
- }
125
-
126
- const data = JSON.parse(fs.readFileSync(cachePath, 'utf8'));
127
-
128
- if (data.version !== CACHE_VERSION) {
129
- return { version: CACHE_VERSION, entries: {} };
130
- }
131
-
132
- // Prune old entries
133
- const now = Date.now();
134
- const entries = {};
135
- for (const [keyStr, entry] of Object.entries(data.entries)) {
136
- const createdAt = new Date(entry.createdAt).getTime();
137
- if (now - createdAt < CACHE_MAX_AGE_MS) {
138
- entries[keyStr] = entry;
139
- }
140
- }
141
-
142
- return { version: CACHE_VERSION, entries };
143
- } catch {
144
- return { version: CACHE_VERSION, entries: {} };
145
- }
146
- }
147
-
148
- function saveCacheStore(projectPath, store) {
149
- try {
150
- ensureCacheDir();
151
- const cachePath = getCacheFilePath(projectPath);
152
- const tempPath = `${cachePath}.tmp.${Date.now()}`;
153
-
154
- // Limit cache size
155
- const entries = Object.entries(store.entries);
156
- if (entries.length > CACHE_MAX_ENTRIES) {
157
- entries.sort((a, b) => {
158
- const aTime = new Date(a[1].createdAt).getTime();
159
- const bTime = new Date(b[1].createdAt).getTime();
160
- return bTime - aTime;
161
- });
162
- store.entries = Object.fromEntries(entries.slice(0, CACHE_MAX_ENTRIES));
163
- }
164
-
165
- fs.writeFileSync(tempPath, JSON.stringify(store, null, 2), { mode: 0o600 });
166
- fs.renameSync(tempPath, cachePath);
167
- } catch (err) {
168
- if (process.env.DEBUG || process.env.VIBECHECK_DEBUG) {
169
- console.warn(`Cache save failed: ${err.message}`);
170
- }
171
- }
172
- }
173
-
174
- function buildFileHashMap(projectPath, files) {
175
- const hashMap = {};
176
- for (const file of files) {
177
- const fullPath = path.isAbsolute(file) ? file : path.join(projectPath, file);
178
- const hash = computeFileHash(fullPath);
179
- if (hash) {
180
- const relPath = path.relative(projectPath, fullPath).replace(/\\/g, '/');
181
- hashMap[relPath] = hash;
182
- }
183
- }
184
- return hashMap;
185
- }
186
-
187
- // =============================================================================
188
- // CACHE CLASS
189
- // =============================================================================
190
-
191
- class ToolCache {
192
- constructor(projectPath, options = {}) {
193
- this.projectPath = path.resolve(projectPath);
194
- this.vibecheckVersion = options.vibecheckVersion || '3.3.0';
195
- this.enabled = options.enabled !== false;
196
- this.store = this.enabled ? loadCacheStore(this.projectPath) : { version: CACHE_VERSION, entries: {} };
197
- }
198
-
199
- get(toolName) {
200
- if (!this.enabled) return null;
201
-
202
- const key = generateCacheKey(toolName, this.projectPath, this.vibecheckVersion);
203
- const keyStr = cacheKeyToString(key);
204
- const entry = this.store.entries[keyStr];
205
-
206
- if (entry) {
207
- // Verify fingerprint still matches
208
- const currentFingerprint = computeRepoFingerprint(this.projectPath);
209
- if (currentFingerprint !== key.repoFingerprint) {
210
- delete this.store.entries[keyStr];
211
- return null;
212
- }
213
-
214
- return {
215
- entry,
216
- stats: {
217
- hit: true,
218
- reusedFindingsCount: entry.output.findings?.length || 0,
219
- durationMs: 0,
220
- },
221
- };
222
- }
223
-
224
- return null;
225
- }
226
-
227
- set(toolName, output, fileHashMap, durationMs) {
228
- if (!this.enabled) return;
229
-
230
- const key = generateCacheKey(toolName, this.projectPath, this.vibecheckVersion);
231
- const keyStr = cacheKeyToString(key);
232
-
233
- const entry = {
234
- key,
235
- output,
236
- fileHashMap,
237
- createdAt: new Date().toISOString(),
238
- durationMs,
239
- vibecheckVersion: this.vibecheckVersion,
240
- schemaVersion: SCHEMA_VERSION,
241
- };
242
-
243
- this.store.entries[keyStr] = entry;
244
- saveCacheStore(this.projectPath, this.store);
245
- }
246
-
247
- invalidate(toolName) {
248
- if (!this.enabled) return;
249
-
250
- const key = generateCacheKey(toolName, this.projectPath, this.vibecheckVersion);
251
- const keyStr = cacheKeyToString(key);
252
- delete this.store.entries[keyStr];
253
- saveCacheStore(this.projectPath, this.store);
254
- }
255
-
256
- invalidateAll() {
257
- if (!this.enabled) return;
258
- this.store.entries = {};
259
- saveCacheStore(this.projectPath, this.store);
260
- }
261
- }
262
-
263
- // =============================================================================
264
- // EXECUTE WITH CACHE
265
- // =============================================================================
266
-
267
- /**
268
- * Execute a tool with caching support
269
- * @param {Object} options - Tool options
270
- * @param {Function} executor - Tool executor function
271
- * @returns {Promise<Object>} Result with cacheStats
272
- */
273
- async function executeWithCache(options, executor) {
274
- const startTime = Date.now();
275
- const {
276
- projectPath,
277
- toolName,
278
- useCache = true,
279
- forceRefresh = false,
280
- files = [],
281
- vibecheckVersion = '3.3.0',
282
- } = options;
283
-
284
- const cache = new ToolCache(projectPath, {
285
- vibecheckVersion,
286
- enabled: useCache,
287
- });
288
-
289
- // Check for cache hit
290
- if (!forceRefresh) {
291
- const cached = cache.get(toolName);
292
- if (cached) {
293
- return {
294
- ...cached.entry.output,
295
- cacheStats: {
296
- hit: true,
297
- reusedFindingsCount: cached.entry.output.findings?.length || 0,
298
- durationMs: Date.now() - startTime,
299
- },
300
- };
301
- }
302
- }
303
-
304
- // Cache miss - execute tool
305
- const result = await executor(options);
306
- const durationMs = Date.now() - startTime;
307
-
308
- // Build file hash map
309
- const fileHashMap = files.length > 0 ? buildFileHashMap(projectPath, files) : {};
310
-
311
- // Store in cache
312
- const output = {
313
- findings: result.findings || [],
314
- verdict: result.verdict || null,
315
- metadata: {
316
- ...result.metadata,
317
- cachedAt: new Date().toISOString(),
318
- },
319
- };
320
-
321
- cache.set(toolName, output, fileHashMap, durationMs);
322
-
323
- return {
324
- ...result,
325
- cacheStats: {
326
- hit: false,
327
- reusedFindingsCount: 0,
328
- durationMs,
329
- },
330
- };
331
- }
332
-
333
- /**
334
- * Wrap CLI command execution with caching
335
- * @param {string} projectPath - Project path
336
- * @param {string} toolName - Tool name
337
- * @param {Function} cliExecutor - CLI executor function
338
- * @param {Object} options - Additional options
339
- * @returns {Promise<Object>} Result with cacheStats
340
- */
341
- async function executeCachedCliCommand(projectPath, toolName, cliExecutor, options = {}) {
342
- return executeWithCache(
343
- {
344
- projectPath,
345
- toolName,
346
- useCache: options.useCache !== false,
347
- forceRefresh: options.forceRefresh || false,
348
- files: options.files || [],
349
- vibecheckVersion: options.vibecheckVersion || '3.3.0',
350
- },
351
- async () => cliExecutor()
352
- );
353
- }
354
-
355
- // =============================================================================
356
- // EXPORTS
357
- // =============================================================================
358
-
359
- module.exports = {
360
- ToolCache,
361
- executeWithCache,
362
- executeCachedCliCommand,
363
- computeFileHash,
364
- computeRepoFingerprint,
365
- buildFileHashMap,
366
- getCacheDir,
367
- clearAllCaches: () => {
368
- try {
369
- const cacheDir = getCacheDir();
370
- if (fs.existsSync(cacheDir)) {
371
- const files = fs.readdirSync(cacheDir);
372
- for (const file of files) {
373
- if (file.startsWith('tool-cache-') && file.endsWith('.json')) {
374
- fs.unlinkSync(path.join(cacheDir, file));
375
- }
376
- }
377
- }
378
- return { success: true, message: 'All tool caches cleared' };
379
- } catch (err) {
380
- return { success: false, message: `Failed to clear caches: ${err.message}` };
381
- }
382
- },
383
- };
@@ -1,138 +0,0 @@
1
- /**
2
- * MCP Error Envelope - consistent error format across all tools
3
- *
4
- * Provides standardized error and success envelopes for all MCP tool responses.
5
- * Ensures consistent error handling, timeout support, and cancellation.
6
- */
7
-
8
- const ERROR_CODES = {
9
- // Auth errors
10
- AUTH_REQUIRED: { status: 401, message: 'Authentication required' },
11
- AUTH_FAILED: { status: 401, message: 'Authentication failed' },
12
- TIER_REQUIRED: { status: 403, message: 'Upgrade required for this feature' },
13
- NOT_ENTITLED: { status: 403, message: 'Feature not available on current tier' },
14
- OPTION_NOT_ENTITLED: { status: 403, message: 'Option requires higher tier' },
15
-
16
- // Validation errors
17
- VALIDATION_ERROR: { status: 400, message: 'Invalid input' },
18
- NOT_FOUND: { status: 404, message: 'Resource not found' },
19
- TOOL_NOT_FOUND: { status: 404, message: 'Tool not found' },
20
-
21
- // Rate limiting
22
- RATE_LIMITED: { status: 429, message: 'Too many requests' },
23
-
24
- // Execution errors
25
- TIMEOUT: { status: 408, message: 'Operation timed out' },
26
- CANCELLED: { status: 499, message: 'Operation cancelled' },
27
- INTERNAL_ERROR: { status: 500, message: 'Internal error' },
28
- };
29
-
30
- /**
31
- * Create a standard ErrorEnvelope for tool errors
32
- * @param {string} code - Error code (AUTH_REQUIRED, TIER_REQUIRED, etc.)
33
- * @param {string} message - Human-readable error message
34
- * @param {object} details - Additional error details
35
- * @returns {object} ErrorEnvelope
36
- */
37
- function createErrorEnvelope(code, message, details = {}) {
38
- const errorDef = ERROR_CODES[code] || ERROR_CODES.INTERNAL_ERROR;
39
-
40
- return {
41
- success: false,
42
- ok: false,
43
- error: {
44
- code,
45
- message: message || errorDef.message,
46
- status: errorDef.status,
47
- ...details,
48
- },
49
- timestamp: new Date().toISOString(),
50
- };
51
- }
52
-
53
- /**
54
- * Create a success envelope for tool responses
55
- * @param {*} data - Response data
56
- * @param {object} metadata - Additional metadata (cacheStats, etc.)
57
- * @returns {object} SuccessEnvelope
58
- */
59
- function createSuccessEnvelope(data, metadata = {}) {
60
- return {
61
- success: true,
62
- ok: true,
63
- data,
64
- ...metadata,
65
- timestamp: new Date().toISOString(),
66
- };
67
- }
68
-
69
- /**
70
- * Wrap tool execution with consistent error handling, timeout, and cancellation
71
- * @param {string} toolName - Name of the tool being executed
72
- * @param {Function} fn - Async function to execute (receives AbortSignal)
73
- * @param {object} options - Options
74
- * @param {number} options.timeout - Timeout in milliseconds (default: 30000)
75
- * @returns {Promise<object>} Success or error envelope
76
- */
77
- async function executeWithEnvelope(toolName, fn, options = {}) {
78
- const timeout = options.timeout || 30000;
79
- const controller = new AbortController();
80
- const timeoutId = setTimeout(() => controller.abort(), timeout);
81
-
82
- try {
83
- const result = await Promise.race([
84
- fn(controller.signal),
85
- new Promise((_, reject) => {
86
- controller.signal.addEventListener('abort', () => {
87
- reject(new Error('TIMEOUT'));
88
- });
89
- }),
90
- ]);
91
-
92
- clearTimeout(timeoutId);
93
- return createSuccessEnvelope(result);
94
- } catch (error) {
95
- clearTimeout(timeoutId);
96
-
97
- if (error.message === 'TIMEOUT') {
98
- return createErrorEnvelope(
99
- 'TIMEOUT',
100
- `${toolName} timed out after ${timeout}ms`,
101
- { timeout, toolName }
102
- );
103
- }
104
-
105
- if (error.name === 'AbortError' || error.message === 'CANCELLED') {
106
- return createErrorEnvelope(
107
- 'CANCELLED',
108
- `${toolName} was cancelled`,
109
- { toolName }
110
- );
111
- }
112
-
113
- // If error already has a code, preserve it
114
- if (error.code && ERROR_CODES[error.code]) {
115
- return createErrorEnvelope(
116
- error.code,
117
- error.message,
118
- { ...error.details, toolName }
119
- );
120
- }
121
-
122
- return createErrorEnvelope(
123
- 'INTERNAL_ERROR',
124
- error.message || 'An unexpected error occurred',
125
- {
126
- stack: process.env.NODE_ENV !== 'production' ? error.stack : undefined,
127
- toolName,
128
- }
129
- );
130
- }
131
- }
132
-
133
- module.exports = {
134
- createErrorEnvelope,
135
- createSuccessEnvelope,
136
- executeWithEnvelope,
137
- ERROR_CODES,
138
- };