delimit-cli 3.13.2 → 3.13.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.13.3] - 2026-03-27
4
+
5
+ ### Changed
6
+ - Postinstall message now shows full quick-start guide (init, lint, setup) with links to dashboard and docs
7
+
3
8
  ## [3.13.1] - 2026-03-27
4
9
 
5
10
  ### Added
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.13.2",
4
+ "version": "3.13.3",
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": [
@@ -4,8 +4,19 @@
4
4
  * No PII. Silent fail. Never blocks install.
5
5
  */
6
6
 
7
- // Print setup hint
8
- console.log('\n Run: npx delimit-cli setup\n');
7
+ // Print setup hint with quick start
8
+ const v = require('../package.json').version;
9
+ console.log('');
10
+ console.log(' \x1b[1m\x1b[35mDelimit\x1b[0m v' + v + ' installed');
11
+ console.log('');
12
+ console.log(' Quick start:');
13
+ console.log(' \x1b[32mdelimit init\x1b[0m Auto-detect framework, set policy, first lint');
14
+ console.log(' \x1b[32mdelimit lint\x1b[0m Check for breaking API changes');
15
+ console.log(' \x1b[32mdelimit setup\x1b[0m Install MCP governance for AI assistants');
16
+ console.log('');
17
+ console.log(' Dashboard: \x1b[36mhttps://app.delimit.ai\x1b[0m');
18
+ console.log(' Docs: \x1b[36mhttps://delimit.ai/docs\x1b[0m');
19
+ console.log('');
9
20
 
10
21
  // Anonymous telemetry ping — no PII, just "someone installed"
11
22
  try {