claude-remote-cli 2.12.0 → 2.12.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.
@@ -11,7 +11,7 @@
11
11
  <meta name="apple-mobile-web-app-capable" content="yes" />
12
12
  <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
13
13
  <meta name="theme-color" content="#1a1a1a" />
14
- <script type="module" crossorigin src="/assets/index-CEJznk5F.js"></script>
14
+ <script type="module" crossorigin src="/assets/index-BBAKirMm.js"></script>
15
15
  <link rel="stylesheet" crossorigin href="/assets/index-nIPDa7NP.css">
16
16
  </head>
17
17
  <body>
@@ -24,7 +24,7 @@ function generateTmuxSessionName(displayName, id) {
24
24
  function resolveTmuxSpawn(command, args, tmuxSessionName) {
25
25
  return {
26
26
  command: 'tmux',
27
- args: ['new-session', '-s', tmuxSessionName, '--', command, ...args],
27
+ args: ['-u', 'new-session', '-s', tmuxSessionName, '--', command, ...args],
28
28
  };
29
29
  }
30
30
  // In-memory registry: id -> Session
@@ -269,7 +269,7 @@ describe('sessions', () => {
269
269
  const result = resolveTmuxSpawn('claude', ['--continue'], 'test-session');
270
270
  assert.deepStrictEqual(result, {
271
271
  command: 'tmux',
272
- args: ['new-session', '-s', 'test-session', '--', 'claude', '--continue'],
272
+ args: ['-u', 'new-session', '-s', 'test-session', '--', 'claude', '--continue'],
273
273
  });
274
274
  });
275
275
  it('generateTmuxSessionName has crc- prefix', () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-remote-cli",
3
- "version": "2.12.0",
3
+ "version": "2.12.1",
4
4
  "description": "Remote web interface for Claude Code CLI sessions",
5
5
  "type": "module",
6
6
  "main": "dist/server/index.js",