sidekick-agent-hub 0.20.0 → 0.21.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 CHANGED
@@ -6,6 +6,16 @@ Full-screen terminal dashboard for monitoring AI agent sessions — standalone,
6
6
 
7
7
  Sidekick CLI reads from `~/.config/sidekick/` — the same data files the [VS Code extension](https://marketplace.visualstudio.com/items?itemName=CesarAndresLopez.sidekick-for-max) writes. Browse sessions, tasks, decisions, knowledge notes, mind maps, and more in an interactive terminal UI.
8
8
 
9
+ ## What's New
10
+
11
+ - **`sidekick extract`** — pull URLs, file paths, commands, and plans out of recent Claude Code and Codex chats, with `--json` and an interactive picker.
12
+ - **`sidekick quota history`** — a 13-week, per-workspace, GitHub-style heatmap of session-limit utilization.
13
+ - **`sidekick status` & `sidekick peak`** — one-shot Claude/OpenAI API health checks and a Claude peak-hours indicator.
14
+ - **`sidekick account`** — manage multiple Claude Code and Codex accounts, with first-run auto-registration of your active credentials.
15
+ - **Recent models & richer reports** — Claude Opus 4.8 and Fable 5 pricing/context, plus `report`/`dump` transcripts that interleave reasoning, tool calls, and narration.
16
+
17
+ See the [full changelog](https://github.com/cesarandreslopez/sidekick-agent-hub/blob/main/CHANGELOG.md) for everything.
18
+
9
19
  ## Installation
10
20
 
11
21
  > **Note:** The npm package is `sidekick-agent-hub`, but the binary it installs is called `sidekick`.
@@ -162,6 +172,8 @@ Use `--json` for machine-readable output. Use `--provider codex` to explicitly c
162
172
 
163
173
  When multi-account is enabled, `sidekick quota` shows the active account email above the quota bars.
164
174
 
175
+ Use `sidekick quota --all` to show Claude and Codex quota together in a single run. Each provider degrades independently — if one provider's quota can't be fetched, its error is shown inline and the other still renders (the command never aborts on a single provider's failure). `--all --json` emits a `{ claude, codex }` payload for dashboards and automation.
176
+
165
177
  ### Quota History
166
178
 
167
179
  ```bash
@@ -194,14 +206,17 @@ On first CLI startup, Sidekick auto-registers the active system Claude Code and
194
206
 
195
207
  | Flag | Description |
196
208
  |------|-------------|
197
- | `--provider <id>` | Provider: `claude-code` (default) or `codex` |
209
+ | `--provider <id>` | Provider: `claude-code` (default), `codex`, or `all` |
198
210
  | `--add` | Save the currently signed-in account |
199
- | `--label <name>` | Label for the account (use with `--add`; required for Codex) |
211
+ | `--login` | Sign in and save a **new** account via a provider-isolated login flow, without disturbing the active account until finalization |
212
+ | `--label <name>` | Label for the account (required for Codex and `--login`; optional for Claude `--add`) |
200
213
  | `--switch` | Switch to the next saved account |
201
214
  | `--switch-to <id>` | Switch to a specific account by email, label, or ID |
202
215
  | `--remove <id>` | Remove a saved account by email, label, or ID |
216
+ | `--launcher <name>` | Create an opt-in per-account terminal launcher for the active account |
217
+ | `--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 |
203
218
 
204
- With no flags, lists all saved accounts and marks the active one. Use `--json` for machine-readable output.
219
+ 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`).
205
220
 
206
221
  ## Dashboard Panels
207
222