sidekick-agent-hub 0.21.6 → 0.22.0
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 +7 -1
- package/dist/sidekick-cli.mjs +1691 -1212
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -217,12 +217,15 @@ On first CLI startup, Sidekick auto-registers the active system Claude Code and
|
|
|
217
217
|
| `--label <name>` | Label for the account (required for Codex and `--login`; optional for Claude `--add`) |
|
|
218
218
|
| `--switch` | Switch to the next saved account |
|
|
219
219
|
| `--switch-to <id>` | Switch to a specific account by email, label, or ID |
|
|
220
|
-
| `--remove <id>` | Remove a saved account by email, label, or ID
|
|
220
|
+
| `--remove <id>` | Remove a saved account by email, label, or ID (prompts for y/N confirmation first) |
|
|
221
|
+
| `-y`, `--yes` / `--force` | Skip the `--remove` confirmation prompt (required for `--json` or non-interactive runs) |
|
|
221
222
|
| `--launcher <name>` | Create an opt-in per-account terminal launcher for the active account |
|
|
222
223
|
| `--auto-switch <pct\|off>` | Persist the auto-switch quota threshold (1–100), or `off` to disable. Continuous auto-switching runs in a long-running host such as VS Code |
|
|
223
224
|
|
|
224
225
|
With no flags, lists all saved accounts and marks the active one. `--provider all` lists Claude and Codex accounts together. Use `--json` for machine-readable output (provider-keyed when `--provider all`).
|
|
225
226
|
|
|
227
|
+
`--remove` prints the resolved account and asks for an interactive y/N answer (default No). Pass `-y`/`--yes` (or `--force`) to skip the prompt; `--json` and non-TTY contexts require the flag and exit `1` without it — **unattended automation that removes accounts must add `--yes`**.
|
|
228
|
+
|
|
226
229
|
## Dashboard Panels
|
|
227
230
|
|
|
228
231
|
The dashboard is a two-pane terminal UI. The left side shows a navigable list, the right side shows details for the selected item.
|
|
@@ -298,6 +301,7 @@ Press `z` to cycle through layout modes:
|
|
|
298
301
|
| `z` | Cycle layout mode |
|
|
299
302
|
| `/` | Open filter overlay (supports substring, fuzzy, regex, and date modes — Tab cycles modes) |
|
|
300
303
|
| `x` | Open context menu for selected item |
|
|
304
|
+
| `M` | Toggle mouse capture (turn off to restore terminal text selection/copy) |
|
|
301
305
|
| `?` | Show help |
|
|
302
306
|
| `r` | Generate HTML report for the current session |
|
|
303
307
|
| `V` | Show version / changelog |
|
|
@@ -312,6 +316,8 @@ The dashboard supports mouse input in terminals with SGR 1006 extended mouse enc
|
|
|
312
316
|
- **Scroll wheel** in either pane to navigate
|
|
313
317
|
- **Click** anywhere to dismiss overlays
|
|
314
318
|
|
|
319
|
+
While mouse capture is on, the terminal's own click-drag text selection and copy are suppressed. Press `M` to toggle capture off (the status bar shows `MOUSE OFF`), or launch with `--no-mouse` to start with it disabled. The interactive toggle persists to `cli-config.json`; the flag applies to that run only.
|
|
320
|
+
|
|
315
321
|
## Multi-Provider Support
|
|
316
322
|
|
|
317
323
|
Auto-detects the most recently active session provider:
|