claude-remote-cli 2.8.0 → 2.9.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.
- package/README.md +5 -2
- package/dist/frontend/assets/index-BnHx9G72.js +47 -0
- package/dist/frontend/assets/index-CEuXqdk2.css +32 -0
- package/dist/frontend/index.html +2 -2
- package/dist/server/config.js +1 -0
- package/dist/server/index.js +27 -9
- package/dist/server/sessions.js +25 -9
- package/dist/test/config.test.js +2 -0
- package/dist/test/sessions.test.js +35 -0
- package/package.json +1 -1
- package/dist/frontend/assets/index-CUkDx_1l.js +0 -47
- package/dist/frontend/assets/index-Not5cXLa.css +0 -32
package/README.md
CHANGED
|
@@ -7,7 +7,8 @@ Control Claude Code from your phone or any browser — manage multiple terminal
|
|
|
7
7
|
| Dependency | Why |
|
|
8
8
|
|------------|-----|
|
|
9
9
|
| **[Node.js 24+](https://nodejs.org/)** | Runtime for the server |
|
|
10
|
-
| **[Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code)** |
|
|
10
|
+
| **[Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code)** | Default coding agent — must be in your `PATH` |
|
|
11
|
+
| **[Codex CLI](https://github.com/openai/codex)** | *Optional* — alternative coding agent. Install if you want to use Codex sessions |
|
|
11
12
|
| **[GitHub CLI (`gh`)](https://cli.github.com/)** | *Optional* — required for the **PRs tab**. Run `gh auth login` after installing. |
|
|
12
13
|
|
|
13
14
|
## Getting Started
|
|
@@ -142,7 +143,8 @@ When running from source, it uses `./config.json` in the project root instead.
|
|
|
142
143
|
| `cookieTTL` | `24h` | Auth cookie lifetime (e.g. `30m`, `12h`, `7d`) |
|
|
143
144
|
| `rootDirs` | `[]` | Directories containing your git repos (scanned one level deep) |
|
|
144
145
|
| `claudeCommand` | `claude` | Path to the Claude Code CLI binary |
|
|
145
|
-
| `claudeArgs` | `[]` | Extra arguments passed to every
|
|
146
|
+
| `claudeArgs` | `[]` | Extra arguments passed to every session |
|
|
147
|
+
| `defaultAgent` | `claude` | Default coding agent CLI (`claude` or `codex`) |
|
|
146
148
|
|
|
147
149
|
Root directories can also be managed from the **Settings** button in the app.
|
|
148
150
|
|
|
@@ -157,6 +159,7 @@ The PIN hash is stored in config under `pinHash`. To reset:
|
|
|
157
159
|
## Features
|
|
158
160
|
|
|
159
161
|
### Session Management
|
|
162
|
+
- **Multi-agent support** — choose between Claude Code and Codex as the coding agent per session, with a configurable default in Settings
|
|
160
163
|
- **Repo sessions** — click any idle repo to instantly open Claude with `--continue` (no dialog), or start fresh from the new-session dialog
|
|
161
164
|
- **Branch-aware worktrees** — create worktrees from new or existing branches with a type-to-search branch picker
|
|
162
165
|
- **Worktree isolation** — each worktree session runs in its own git worktree under `.worktrees/`
|