delimit-cli 3.11.5 → 3.11.6
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/delimit-cli.js +8 -0
- package/bin/delimit-setup.js +15 -2
- package/package.json +1 -1
- package/server.json +2 -2
package/bin/delimit-cli.js
CHANGED
|
@@ -1277,6 +1277,14 @@ program
|
|
|
1277
1277
|
console.log(chalk.dim('Tier: pro'));
|
|
1278
1278
|
});
|
|
1279
1279
|
|
|
1280
|
+
// Version subcommand alias (users type 'delimit version' not 'delimit -V')
|
|
1281
|
+
program
|
|
1282
|
+
.command('version')
|
|
1283
|
+
.description('Show version')
|
|
1284
|
+
.action(() => {
|
|
1285
|
+
console.log(require('../package.json').version);
|
|
1286
|
+
});
|
|
1287
|
+
|
|
1280
1288
|
// Hide legacy/internal commands from --help
|
|
1281
1289
|
['install', 'mode', 'status', 'policy', 'auth', 'audit',
|
|
1282
1290
|
'explain-decision', 'uninstall', 'proxy', 'hook'].forEach(name => {
|
package/bin/delimit-setup.js
CHANGED
|
@@ -504,8 +504,21 @@ echo "[Delimit] ${toolName} not found" >&2; exit 127
|
|
|
504
504
|
}
|
|
505
505
|
log('');
|
|
506
506
|
|
|
507
|
-
// Step 7:
|
|
508
|
-
step(7, '
|
|
507
|
+
// Step 7: Local dashboard API server
|
|
508
|
+
step(7, 'Local dashboard API...');
|
|
509
|
+
|
|
510
|
+
const localServerPath = path.join(DELIMIT_HOME, 'server', 'ai', 'local_server.py');
|
|
511
|
+
if (fs.existsSync(localServerPath)) {
|
|
512
|
+
log(` ${green('✓')} Local API server available on port 7823`);
|
|
513
|
+
log(` ${dim(' Start it: python3 ' + localServerPath)}`);
|
|
514
|
+
log(` ${dim(' Dashboard connects to localhost:7823 automatically')}`);
|
|
515
|
+
} else {
|
|
516
|
+
log(` ${dim(' Local API server not found — dashboard will use cloud sync')}`);
|
|
517
|
+
}
|
|
518
|
+
log('');
|
|
519
|
+
|
|
520
|
+
// Step 8: Done
|
|
521
|
+
step(8, 'Done!');
|
|
509
522
|
log('');
|
|
510
523
|
log(` ${green('Delimit is installed.')} Your AI now has persistent memory and governance.`);
|
|
511
524
|
log('');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "delimit-cli",
|
|
3
3
|
"mcpName": "io.github.delimit-ai/delimit",
|
|
4
|
-
"version": "3.11.
|
|
4
|
+
"version": "3.11.6",
|
|
5
5
|
"description": "One workspace for every AI coding assistant. Tasks, memory, and governance carry between Claude Code, Codex, and Gemini CLI.",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"files": [
|
package/server.json
CHANGED
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
"url": "https://github.com/delimit-ai/delimit",
|
|
8
8
|
"source": "github"
|
|
9
9
|
},
|
|
10
|
-
"version": "3.11.
|
|
10
|
+
"version": "3.11.6",
|
|
11
11
|
"websiteUrl": "https://delimit.ai",
|
|
12
12
|
"packages": [
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"identifier": "delimit-cli",
|
|
16
|
-
"version": "3.11.
|
|
16
|
+
"version": "3.11.6",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
}
|