sidekick-agent-hub 0.12.8 → 0.12.9
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 +10 -1
- package/dist/sidekick-cli.mjs +1298 -402
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -27,8 +27,11 @@ Requires **Node.js 20+**.
|
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
29
|
sidekick dashboard [options]
|
|
30
|
+
sidekick tasks|decisions|notes|stats|handoff|search|context [options]
|
|
30
31
|
```
|
|
31
32
|
|
|
33
|
+
The standalone commands open the dashboard directly to a specific panel or run a one-shot query. All accept `--project` and `--provider` flags.
|
|
34
|
+
|
|
32
35
|
| Flag | Description |
|
|
33
36
|
|------|-------------|
|
|
34
37
|
| `--project <path>` | Override project path (default: current working directory) |
|
|
@@ -50,6 +53,7 @@ Export session data as text, markdown, or JSON.
|
|
|
50
53
|
| `--width <cols>` | Terminal width for text output (default: auto-detect) |
|
|
51
54
|
| `--expand` | Show all events including noise |
|
|
52
55
|
| `--session <id>` | Target a specific session (default: most recent) |
|
|
56
|
+
| `--list` | List available sessions and exit |
|
|
53
57
|
|
|
54
58
|
Global flags `--project` and `--provider` also apply.
|
|
55
59
|
|
|
@@ -85,6 +89,7 @@ The dashboard is a two-pane terminal UI. The left side shows a navigable list, t
|
|
|
85
89
|
| 4 | **Notes** | Knowledge notes attached to files |
|
|
86
90
|
| 5 | **Decisions** | Architectural decisions from sessions |
|
|
87
91
|
| 6 | **Plans** | Discovered agent plans from `~/.claude/plans/` |
|
|
92
|
+
| 7 | **Search** | Cross-session full-text search |
|
|
88
93
|
|
|
89
94
|
## Layout Modes
|
|
90
95
|
|
|
@@ -102,7 +107,7 @@ Press `z` to cycle through layout modes:
|
|
|
102
107
|
|
|
103
108
|
| Key | Action |
|
|
104
109
|
|-----|--------|
|
|
105
|
-
| `1`–`
|
|
110
|
+
| `1`–`7` | Switch panel |
|
|
106
111
|
| `Tab` | Toggle focus between side list and detail pane |
|
|
107
112
|
| `j` / `↓` | Next item (side) or scroll down (detail) |
|
|
108
113
|
| `k` / `↑` | Previous item (side) or scroll up (detail) |
|
|
@@ -170,6 +175,10 @@ Auto-detects the most recently active session provider:
|
|
|
170
175
|
|
|
171
176
|
Override with `--provider claude-code`, `--provider opencode`, or `--provider codex`.
|
|
172
177
|
|
|
178
|
+
## See Also
|
|
179
|
+
|
|
180
|
+
**[Sidekick Docker](https://github.com/cesarandreslopez/sidekick-docker)** — the same TUI dashboard experience for Docker management. Monitor containers, Compose projects, images, and volumes from a keyboard-driven terminal. Install with `npm install -g sidekick-docker`.
|
|
181
|
+
|
|
173
182
|
## Documentation
|
|
174
183
|
|
|
175
184
|
Full documentation at [cesarandreslopez.github.io/sidekick-agent-hub](https://cesarandreslopez.github.io/sidekick-agent-hub/features/cli/).
|