sidekick-agent-hub 0.13.8 → 0.14.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 +22 -2
- package/dist/sidekick-cli.mjs +758 -214
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ If `sqlite3` is missing or not executable in the current shell environment, Side
|
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
sidekick dashboard [options]
|
|
40
|
-
sidekick tasks|decisions|notes|stats|quota|status|handoff|search|context [options]
|
|
40
|
+
sidekick tasks|decisions|notes|stats|quota|status|account|handoff|search|context [options]
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
The standalone commands open the dashboard directly to a specific panel or run a one-shot query. All accept `--project` and `--provider` flags.
|
|
@@ -112,7 +112,27 @@ Subscription Quota
|
|
|
112
112
|
|
|
113
113
|
When quota data is unavailable, `sidekick quota` shows structured auth, rate-limit, network, server, or unexpected-failure messaging instead of a generic raw error. The dashboard Sessions panel also keeps a compact inline quota state for Claude Code instead of hiding quota entirely.
|
|
114
114
|
|
|
115
|
-
Use `--json` for machine-readable output. Requires Claude Code credentials (`~/.claude/.credentials.json`). JSON output includes `failureKind`, `httpStatus`, and `retryAfterMs` on unavailable responses.
|
|
115
|
+
Use `--json` for machine-readable output. Requires active Claude Code credentials (read from the system Keychain on macOS, or `~/.claude/.credentials.json` on Linux/Windows). JSON output includes `failureKind`, `httpStatus`, and `retryAfterMs` on unavailable responses.
|
|
116
|
+
|
|
117
|
+
When multi-account is enabled, `sidekick quota` shows the active account email above the quota bars.
|
|
118
|
+
|
|
119
|
+
## Account Management
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
sidekick account [options]
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Manage multiple Claude Code accounts — save, list, switch, and remove without manual `claude login` / logout cycles. Account data is stored in `~/.config/sidekick/accounts/` with strict file permissions and atomic writes with rollback on failure.
|
|
126
|
+
|
|
127
|
+
| Flag | Description |
|
|
128
|
+
|------|-------------|
|
|
129
|
+
| `--add` | Save the currently signed-in account |
|
|
130
|
+
| `--label <name>` | Label for the account (use with `--add`) |
|
|
131
|
+
| `--switch` | Switch to the next saved account |
|
|
132
|
+
| `--switch-to <email>` | Switch to a specific account by email |
|
|
133
|
+
| `--remove <email>` | Remove a saved account |
|
|
134
|
+
|
|
135
|
+
With no flags, lists all saved accounts and marks the active one. Use `--json` for machine-readable output.
|
|
116
136
|
|
|
117
137
|
## Dashboard Panels
|
|
118
138
|
|