sidekick-agent-hub 0.16.1 → 0.17.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 +5 -4
- package/dist/sidekick-cli.mjs +1321 -323
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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
|
|