delimit-cli 3.14.7 → 3.14.9

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.
@@ -222,6 +222,7 @@ async function main() {
222
222
  // Step 3: Configure Claude Code MCP
223
223
  step(3, 'Configuring Claude Code MCP...');
224
224
 
225
+ const configuredTools = [];
225
226
  let mcpConfig = {};
226
227
  if (fs.existsSync(MCP_CONFIG)) {
227
228
  try {
@@ -236,6 +237,7 @@ async function main() {
236
237
 
237
238
  if (mcpConfig.mcpServers.delimit) {
238
239
  await logp(` ${green('✓')} Delimit MCP already configured`);
240
+ configuredTools.push('Claude Code');
239
241
  } else {
240
242
  mcpConfig.mcpServers.delimit = {
241
243
  type: 'stdio',
@@ -249,6 +251,7 @@ async function main() {
249
251
  };
250
252
  fs.writeFileSync(MCP_CONFIG, JSON.stringify(mcpConfig, null, 2));
251
253
  await logp(` ${green('✓')} Added delimit to ${MCP_CONFIG}`);
254
+ configuredTools.push('Claude Code');
252
255
  }
253
256
 
254
257
  // Step 3b: Configure Codex MCP (if installed)
@@ -258,12 +261,14 @@ async function main() {
258
261
  let toml = fs.readFileSync(CODEX_CONFIG, 'utf-8');
259
262
  if (toml.includes('[mcp_servers.delimit]')) {
260
263
  await logp(` ${green('✓')} Delimit already in Codex config`);
264
+ configuredTools.push('Codex');
261
265
  } else {
262
266
  const serverDir = path.join(DELIMIT_HOME, 'server');
263
267
  const codexEntry = `\n[mcp_servers.delimit]\ncommand = "${python}"\nargs = ["${actualServer}"]\ncwd = "${serverDir}"\n\n[mcp_servers.delimit.env]\nPYTHONPATH = "${serverDir}:${path.join(serverDir, 'ai')}"\n`;
264
268
  toml += codexEntry;
265
269
  fs.writeFileSync(CODEX_CONFIG, toml);
266
270
  await logp(` ${green('✓')} Added delimit to Codex (${CODEX_CONFIG})`);
271
+ configuredTools.push('Codex');
267
272
  }
268
273
  } catch (e) {
269
274
  log(` ${yellow('!')} Could not configure Codex: ${e.message}`);
@@ -281,6 +286,7 @@ async function main() {
281
286
  if (!cursorConfig.mcpServers) cursorConfig.mcpServers = {};
282
287
  if (cursorConfig.mcpServers.delimit) {
283
288
  await logp(` ${green('✓')} Delimit already in Cursor config`);
289
+ configuredTools.push('Cursor');
284
290
  } else {
285
291
  cursorConfig.mcpServers.delimit = {
286
292
  command: python,
@@ -290,6 +296,7 @@ async function main() {
290
296
  };
291
297
  fs.writeFileSync(CURSOR_CONFIG, JSON.stringify(cursorConfig, null, 2));
292
298
  await logp(` ${green('✓')} Added delimit to Cursor (${CURSOR_CONFIG})`);
299
+ configuredTools.push('Cursor');
293
300
  }
294
301
  } catch (e) {
295
302
  log(` ${yellow('!')} Could not configure Cursor: ${e.message}`);
@@ -308,6 +315,7 @@ async function main() {
308
315
  if (!geminiConfig.mcpServers) geminiConfig.mcpServers = {};
309
316
  if (geminiConfig.mcpServers.delimit) {
310
317
  await logp(` ${green('✓')} Delimit already in Gemini CLI config`);
318
+ configuredTools.push('Gemini CLI');
311
319
  } else {
312
320
  geminiConfig.mcpServers.delimit = {
313
321
  command: python,
@@ -317,6 +325,7 @@ async function main() {
317
325
  };
318
326
  fs.writeFileSync(GEMINI_CONFIG, JSON.stringify(geminiConfig, null, 2));
319
327
  await logp(` ${green('✓')} Added delimit to Gemini CLI (${GEMINI_CONFIG})`);
328
+ configuredTools.push('Gemini CLI');
320
329
  }
321
330
  // Add governance instructions
322
331
  if (!geminiConfig.customInstructions || !geminiConfig.customInstructions.includes('delimit_ledger_context')) {
@@ -833,11 +842,10 @@ exit 127
833
842
  log(` ${green('Delimit is installed.')} Your AI now has persistent memory and governance.`);
834
843
  log('');
835
844
  log(' Configured for:');
836
- const tools = ['Claude Code'];
837
- if (fs.existsSync(CODEX_CONFIG)) tools.push('Codex');
838
- if (fs.existsSync(path.join(os.homedir(), '.cursor'))) tools.push('Cursor');
839
- if (fs.existsSync(GEMINI_DIR)) tools.push('Gemini CLI');
840
- log(` ${green('✓')} ${tools.join(', ')}`);
845
+ const tools = configuredTools.length > 0 ? [...new Set(configuredTools)] : ['Claude Code'];
846
+ for (const t of tools) {
847
+ log(` ${green('')} ${t}`);
848
+ }
841
849
 
842
850
  log('');
843
851
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "delimit-cli",
3
3
  "mcpName": "io.github.delimit-ai/delimit-mcp-server",
4
- "version": "3.14.7",
4
+ "version": "3.14.9",
5
5
  "description": "Unify Claude Code, Codex, Cursor, and Gemini CLI with persistent context, governance, and multi-model debate.",
6
6
  "main": "index.js",
7
7
  "files": [