sidekick-agent-hub 0.21.0 → 0.21.2
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 +4 -3
- package/dist/sidekick-cli.mjs +3923 -2936
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@ Sidekick CLI reads from `~/.config/sidekick/` — the same data files the [VS Co
|
|
|
8
8
|
|
|
9
9
|
## What's New
|
|
10
10
|
|
|
11
|
+
- **`sidekick quota --provider zai`** — authoritative z.ai Coding Plan quota (5-Hour / Weekly) from z.ai's quota API, using OpenCode's stored z.ai token when available.
|
|
11
12
|
- **`sidekick extract`** — pull URLs, file paths, commands, and plans out of recent Claude Code and Codex chats, with `--json` and an interactive picker.
|
|
12
13
|
- **`sidekick quota history`** — a 13-week, per-workspace, GitHub-style heatmap of session-limit utilization.
|
|
13
14
|
- **`sidekick status` & `sidekick peak`** — one-shot Claude/OpenAI API health checks and a Claude peak-hours indicator.
|
|
@@ -157,7 +158,7 @@ Provider-aware quota and rate-limit display. The command auto-detects the active
|
|
|
157
158
|
|
|
158
159
|
- **Claude Code**: Shows Claude Max subscription quota — 5-hour and 7-day windows with color-coded progress bars, projections, and reset countdowns. Includes a peak-hours summary line.
|
|
159
160
|
- **Codex**: Shows rate limits from Codex `token_count.rate_limits` events — primary and secondary windows with progress bars and reset countdowns. The default path is local-only: current workspace rollout, recent account-level rollouts, then the active account's cached snapshot. Add `--refresh` to explicitly refresh from Codex's usage API before falling back to local data.
|
|
160
|
-
- **OpenCode
|
|
161
|
+
- **OpenCode / z.ai**: OpenCode has no native rate-limit data, but when z.ai Coding Plan credentials are available, `sidekick quota --provider opencode` can auto-route to authoritative z.ai quota (5-Hour / Weekly). Use `--provider zai` to request it explicitly. z.ai quota is read from z.ai's quota API using OpenCode's stored token, with fallback support for `ANTHROPIC_BASE_URL` and `ANTHROPIC_AUTH_TOKEN`.
|
|
161
162
|
|
|
162
163
|
```
|
|
163
164
|
Subscription Quota
|
|
@@ -172,7 +173,7 @@ Use `--json` for machine-readable output. Use `--provider codex` to explicitly c
|
|
|
172
173
|
|
|
173
174
|
When multi-account is enabled, `sidekick quota` shows the active account email above the quota bars.
|
|
174
175
|
|
|
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
|
|
176
|
+
Use `sidekick quota --all` to show Claude and Codex quota together in a single run, plus z.ai when API quota is available or z.ai traffic is active. Each provider degrades independently — if one provider's quota can't be fetched, its error is shown inline and the others still render (the command never aborts on a single provider's failure). `--all --json` emits a provider-keyed payload for dashboards and automation.
|
|
176
177
|
|
|
177
178
|
### Quota History
|
|
178
179
|
|
|
@@ -190,7 +191,7 @@ Mon ··▒▒▓█▒░· ·░░·· ·▒▓
|
|
|
190
191
|
Peak 92% · Avg 38% · Samples 612
|
|
191
192
|
```
|
|
192
193
|
|
|
193
|
-
Flags: `--weeks <n>` (1-26, default 13), `--provider claude|codex` (default
|
|
194
|
+
Flags: `--weeks <n>` (1-26, default 13), `--provider claude|codex|zai` (default all available, stacked), `--workspace <path>` (default `cwd`). `--json` emits a `{ workspaceId, weeks, providers, generatedAt }` payload — the same shape consumed by the VS Code dashboard's Quota History panel.
|
|
194
195
|
|
|
195
196
|
History is stored at `~/.config/sidekick/quota-history/<workspaceId>/<provider>.jsonl` (mode `0600`, 60-second debounce, 91-day retention). The workspace id is `sha256(realpath)[0..16]`, so the same folder yields the same store whether sampled from the CLI or VS Code.
|
|
196
197
|
|