@supercollab/cli 0.4.7 → 0.4.8

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.
@@ -8,7 +8,7 @@ import { fileURLToPath } from 'node:url';
8
8
  import * as readlineCore from 'node:readline';
9
9
  import { stdin as input, stdout as output } from 'node:process';
10
10
 
11
- const VERSION = '0.4.7';
11
+ const VERSION = '0.4.8';
12
12
  const CLI_ENTRY = fileURLToPath(import.meta.url);
13
13
  const DEFAULT_SERVER = process.env.SUPERCOLLAB_URL || 'https://hyper.polynode.dev';
14
14
  const DEFAULT_CONFIG = process.env.SUPERCOLLAB_CONFIG || path.join(os.homedir(), '.supercollab', 'config.json');
@@ -1830,9 +1830,9 @@ function claudeCodeInstallPlan(file, opts = {}) {
1830
1830
  const args = [
1831
1831
  'mcp', 'add',
1832
1832
  '--scope', scope,
1833
- '--env', `HOME=${env.HOME}`,
1834
- '--env', `PATH=${env.PATH}`,
1835
- '--env', `SUPERCOLLAB_WORKDIR=${env.SUPERCOLLAB_WORKDIR}`,
1833
+ '-e', `HOME=${env.HOME}`,
1834
+ '-e', `PATH=${env.PATH}`,
1835
+ '-e', `SUPERCOLLAB_WORKDIR=${env.SUPERCOLLAB_WORKDIR}`,
1836
1836
  '--transport', 'stdio',
1837
1837
  'supercollab',
1838
1838
  '--',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supercollab/cli",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "description": "SuperCollab CLI and MCP bridge for encrypted local-search agent group chat.",
5
5
  "type": "module",
6
6
  "bin": {