sidekick-agent-hub 0.16.0 → 0.17.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 +6 -5
- package/dist/sidekick-cli.mjs +1239 -270
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ You can also press `r` in the TUI dashboard to generate a report for the current
|
|
|
93
93
|
sidekick status
|
|
94
94
|
```
|
|
95
95
|
|
|
96
|
-
Check API health for both Claude (status.claude.com) and OpenAI (status.openai.com). Shows indicators with color coding (green/yellow/red), affected components, and active incident details. Use `--json` for machine-readable output.
|
|
96
|
+
Check API health for both Claude (status.claude.com) and OpenAI (status.openai.com). Shows indicators with color coding (green/yellow/red), affected components, and active incident details. Use `--json` for machine-readable output. In the dashboard, provider-status surfaces are scoped to the monitored provider: Claude for Claude Code sessions, OpenAI for Codex sessions, and hidden for OpenCode.
|
|
97
97
|
|
|
98
98
|
## Quota & Rate Limits
|
|
99
99
|
|
|
@@ -126,15 +126,16 @@ When multi-account is enabled, `sidekick quota` shows the active account email a
|
|
|
126
126
|
sidekick account [options]
|
|
127
127
|
```
|
|
128
128
|
|
|
129
|
-
Manage
|
|
129
|
+
Manage accounts across providers — save, list, switch, and remove without manual login/logout cycles. Supports Claude Code and Codex profiles. Account data is stored in `~/.config/sidekick/accounts/` with strict file permissions and atomic writes with rollback on failure.
|
|
130
130
|
|
|
131
131
|
| Flag | Description |
|
|
132
132
|
|------|-------------|
|
|
133
|
+
| `--provider <id>` | Provider: `claude-code` (default) or `codex` |
|
|
133
134
|
| `--add` | Save the currently signed-in account |
|
|
134
|
-
| `--label <name>` | Label for the account (use with `--add
|
|
135
|
+
| `--label <name>` | Label for the account (use with `--add`; required for Codex) |
|
|
135
136
|
| `--switch` | Switch to the next saved account |
|
|
136
|
-
| `--switch-to <
|
|
137
|
-
| `--remove <
|
|
137
|
+
| `--switch-to <id>` | Switch to a specific account by email, label, or ID |
|
|
138
|
+
| `--remove <id>` | Remove a saved account by email, label, or ID |
|
|
138
139
|
|
|
139
140
|
With no flags, lists all saved accounts and marks the active one. Use `--json` for machine-readable output.
|
|
140
141
|
|