sidekick-agent-hub 0.12.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 +54 -0
- package/dist/sidekick-cli.mjs +51232 -0
- package/package.json +59 -0
package/README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Sidekick Agent Hub CLI
|
|
2
|
+
|
|
3
|
+
Full-screen TUI dashboard for monitoring AI agent sessions from the terminal.
|
|
4
|
+
|
|
5
|
+
The CLI reads from `~/.config/sidekick/` — the same data files the [Sidekick Agent Hub VS Code extension](https://marketplace.visualstudio.com/items?itemName=CesarAndresLopez.sidekick-for-max) writes. Browse sessions, tasks, decisions, knowledge notes, and more in an interactive Ink-based terminal UI.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g sidekick-agent-hub
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
sidekick dashboard [--project <path>] [--provider <id>]
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Options
|
|
20
|
+
|
|
21
|
+
| Option | Description |
|
|
22
|
+
|--------|-------------|
|
|
23
|
+
| `--project <path>` | Override project path (default: current working directory) |
|
|
24
|
+
| `--provider <id>` | Session provider: `claude-code`, `opencode`, `codex`, or `auto` (default) |
|
|
25
|
+
|
|
26
|
+
## Dashboard Panels
|
|
27
|
+
|
|
28
|
+
| Panel | Description |
|
|
29
|
+
|-------|-------------|
|
|
30
|
+
| Sessions | Browse and select from recent sessions |
|
|
31
|
+
| Tasks | View persisted tasks filtered by status |
|
|
32
|
+
| Kanban | Task board with status columns |
|
|
33
|
+
| Mind Map | Terminal-rendered session structure graph |
|
|
34
|
+
| Notes | Knowledge notes attached to files |
|
|
35
|
+
| Decisions | Architectural decisions from sessions |
|
|
36
|
+
| Search | Full-text search across session files |
|
|
37
|
+
| Files | Files touched during sessions |
|
|
38
|
+
| Git Diff | View diffs from session file changes |
|
|
39
|
+
|
|
40
|
+
## Multi-Provider Support
|
|
41
|
+
|
|
42
|
+
Auto-detects the most recently active session provider:
|
|
43
|
+
|
|
44
|
+
- **Claude Code** — `~/.claude/projects/`
|
|
45
|
+
- **OpenCode** — `~/.local/share/opencode/`
|
|
46
|
+
- **Codex** — `~/.codex/`
|
|
47
|
+
|
|
48
|
+
## Documentation
|
|
49
|
+
|
|
50
|
+
Full documentation at [cesarandreslopez.github.io/sidekick-agent-hub](https://cesarandreslopez.github.io/sidekick-agent-hub/features/cli/).
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
MIT
|