chatroom-cli 1.64.0 → 1.65.1

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.
@@ -2,9 +2,9 @@
2
2
  "version": 3,
3
3
  "sources": ["../src/node-launch.ts"],
4
4
  "sourcesContent": [
5
- "#!/usr/bin/env node\n/**\n * Re-exec chatroom with Node flags required by @cursor/sdk@1.0.19+.\n *\n * As of 2026-06-23, pinned to @cursor/sdk@1.0.19 later SDK releases may drop\n * `node:sqlite` or change how local storage works; re-check this wrapper when bumping\n * the SDK pin in packages/cli/package.json.\n *\n * ## Why this wrapper exists\n *\n * `@cursor/sdk` uses Node's built-in `node:sqlite` for local agent run storage.\n * NODE_OPTIONS must be set before the process starts; the SDK loads sqlite during\n * harness detection when `CURSOR_API_KEY` is set (see cursor-sdk-agent-service.ts).\n *\n * ## About the ExperimentalWarning\n *\n * Daemon logs may show:\n * ExperimentalWarning: SQLite is an experimental feature and might change at any time\n *\n * This is expected and harmless — not a daemon bug (verified with @cursor/sdk@1.0.19,\n * 2026-06-23). Node still marks `node:sqlite` as experimental on v22–v24 even after\n * the `--experimental-sqlite` gate was removed. The warning fires when the daemon\n * probes the cursor-sdk harness, not on every command.\n *\n * Do not try to fix it by:\n * - Removing `--experimental-sqlite` (older Node needs it; harmless on newer Node)\n * - Eagerly importing or avoiding `@cursor/sdk` in chatroom (SDK already deferred via loadSdk())\n *\n * To silence the warning deliberately, add `--disable-warning=ExperimentalWarning` below.\n * See: https://nodejs.org/api/cli.html#--disable-warningcode-or-type\n */\nimport { spawnSync } from 'node:child_process';\nimport { dirname, join } from 'node:path';\nimport { fileURLToPath } from 'node:url';\n\nconst main = join(dirname(fileURLToPath(import.meta.url)), 'index.js');\nconst nodeOptions = (process.env.NODE_OPTIONS ?? '').split(/\\s+/).filter(Boolean);\n// Required for @cursor/sdk → node:sqlite on Node <24.2; no-op on newer releases.\nif (!nodeOptions.some((opt) => opt.includes('experimental-sqlite'))) {\n nodeOptions.push('--experimental-sqlite');\n}\n\nconst result = spawnSync(process.execPath, [main, ...process.argv.slice(2)], {\n stdio: 'inherit',\n env: { ...process.env, NODE_OPTIONS: nodeOptions.join(' ') },\n});\n\nif (result.signal) {\n process.exit(1);\n}\nprocess.exit(result.status ?? 1);\n"
5
+ "#!/usr/bin/env node\n/**\n * Re-exec chatroom with Node flags required by @cursor/sdk@1.0.19+.\n *\n * Pinned to @cursor/sdk@1.0.23 (upgraded from 1.0.19). Re-check this wrapper when\n * bumping the SDK pin in packages/cli/package.json.\n *\n * ## Why this wrapper exists\n *\n * `@cursor/sdk` uses Node's built-in `node:sqlite` for local agent run storage.\n * NODE_OPTIONS must be set before the process starts; the SDK loads sqlite during\n * harness detection when `CURSOR_API_KEY` is set (see cursor-sdk-agent-service.ts).\n *\n * ## About the ExperimentalWarning\n *\n * Daemon logs may show:\n * ExperimentalWarning: SQLite is an experimental feature and might change at any time\n *\n * This is expected and harmless — not a daemon bug (verified with @cursor/sdk@1.0.23,\n * 2026-07-09). Node still marks `node:sqlite` as experimental on v22–v24 even after\n * the `--experimental-sqlite` gate was removed. The warning fires when the daemon\n * probes the cursor-sdk harness, not on every command.\n *\n * Do not try to fix it by:\n * - Removing `--experimental-sqlite` (older Node needs it; harmless on newer Node)\n * - Eagerly importing or avoiding `@cursor/sdk` in chatroom (SDK already deferred via loadSdk())\n *\n * To silence the warning deliberately, add `--disable-warning=ExperimentalWarning` below.\n * See: https://nodejs.org/api/cli.html#--disable-warningcode-or-type\n */\nimport { spawnSync } from 'node:child_process';\nimport { dirname, join } from 'node:path';\nimport { fileURLToPath } from 'node:url';\n\nconst main = join(dirname(fileURLToPath(import.meta.url)), 'index.js');\nconst nodeOptions = (process.env.NODE_OPTIONS ?? '').split(/\\s+/).filter(Boolean);\n// Required for @cursor/sdk → node:sqlite on Node <24.2; no-op on newer releases.\nif (!nodeOptions.some((opt) => opt.includes('experimental-sqlite'))) {\n nodeOptions.push('--experimental-sqlite');\n}\n\nconst result = spawnSync(process.execPath, [main, ...process.argv.slice(2)], {\n stdio: 'inherit',\n env: { ...process.env, NODE_OPTIONS: nodeOptions.join(' ') },\n});\n\nif (result.signal) {\n process.exit(1);\n}\nprocess.exit(result.status ?? 1);\n"
6
6
  ],
7
- "mappings": ";;;AA+BA;AACA;AACA;AAEA,IAAM,OAAO,KAAK,QAAQ,cAAc,YAAY,GAAG,CAAC,GAAG,UAAU;AACrE,IAAM,eAAe,QAAQ,IAAI,gBAAgB,IAAI,MAAM,KAAK,EAAE,OAAO,OAAO;AAEhF,IAAI,CAAC,YAAY,KAAK,CAAC,QAAQ,IAAI,SAAS,qBAAqB,CAAC,GAAG;AAAA,EACnE,YAAY,KAAK,uBAAuB;AAC1C;AAEA,IAAM,SAAS,UAAU,QAAQ,UAAU,CAAC,MAAM,GAAG,QAAQ,KAAK,MAAM,CAAC,CAAC,GAAG;AAAA,EAC3E,OAAO;AAAA,EACP,KAAK,KAAK,QAAQ,KAAK,cAAc,YAAY,KAAK,GAAG,EAAE;AAC7D,CAAC;AAED,IAAI,OAAO,QAAQ;AAAA,EACjB,QAAQ,KAAK,CAAC;AAChB;AACA,QAAQ,KAAK,OAAO,UAAU,CAAC;",
7
+ "mappings": ";;;AA8BA;AACA;AACA;AAEA,IAAM,OAAO,KAAK,QAAQ,cAAc,YAAY,GAAG,CAAC,GAAG,UAAU;AACrE,IAAM,eAAe,QAAQ,IAAI,gBAAgB,IAAI,MAAM,KAAK,EAAE,OAAO,OAAO;AAEhF,IAAI,CAAC,YAAY,KAAK,CAAC,QAAQ,IAAI,SAAS,qBAAqB,CAAC,GAAG;AAAA,EACnE,YAAY,KAAK,uBAAuB;AAC1C;AAEA,IAAM,SAAS,UAAU,QAAQ,UAAU,CAAC,MAAM,GAAG,QAAQ,KAAK,MAAM,CAAC,CAAC,GAAG;AAAA,EAC3E,OAAO;AAAA,EACP,KAAK,KAAK,QAAQ,KAAK,cAAc,YAAY,KAAK,GAAG,EAAE;AAC7D,CAAC;AAED,IAAI,OAAO,QAAQ;AAAA,EACjB,QAAQ,KAAK,CAAC;AAChB;AACA,QAAQ,KAAK,OAAO,UAAU,CAAC;",
8
8
  "debugId": "57BCCAE0B29521A764756E2164756E21",
9
9
  "names": []
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chatroom-cli",
3
- "version": "1.64.0",
3
+ "version": "1.65.1",
4
4
  "description": "CLI for multi-agent chatroom collaboration",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,7 +10,7 @@
10
10
  "dependencies": {
11
11
  "@anthropic-ai/claude-agent-sdk": "0.3.195",
12
12
  "@connectrpc/connect-node": "^1.6.1",
13
- "@cursor/sdk": "1.0.19",
13
+ "@cursor/sdk": "1.0.23",
14
14
  "@earendil-works/pi-coding-agent": "0.74.2",
15
15
  "@llamaindex/liteparse": "^1.4.2",
16
16
  "@opencode-ai/sdk": "^1.14.22",
@@ -18,6 +18,7 @@
18
18
  "convex": "^1.31.0",
19
19
  "convex-helpers": "^0.1.108",
20
20
  "effect": "^3.0.0",
21
+ "ignore": "^7.0.0",
21
22
  "jsonc-parser": "^3.3.1"
22
23
  },
23
24
  "keywords": [