delimit-cli 4.1.23 → 4.1.24

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.
@@ -57,6 +57,11 @@ function getDynamicContinuityContext(options = {}) {
57
57
  function normalizeNaturalLanguageArgs(argv) {
58
58
  const raw = argv.slice(2);
59
59
  if (raw.length === 0) {
60
+ // First-run detection: if no ~/.delimit exists, show welcome flow
61
+ const delimitHome = path.join(os.homedir(), '.delimit');
62
+ if (!fs.existsSync(delimitHome) || !fs.existsSync(path.join(delimitHome, 'server'))) {
63
+ return ['scan']; // lowest friction entry point for new users
64
+ }
60
65
  return resolveRepoRoot(process.cwd()) ? ['session', '--inspect'] : ['session', '--all'];
61
66
  }
62
67
 
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": "4.1.23",
4
+ "version": "4.1.24",
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": [