sidekick-agent-hub 0.12.4 → 0.12.6

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.
Files changed (3) hide show
  1. package/README.md +19 -1
  2. package/dist/sidekick-cli.mjs +45992 -43841
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -36,6 +36,23 @@ sidekick dashboard [options]
36
36
  | `--session <id>` | Follow a specific session by ID |
37
37
  | `--replay` | Replay existing events from the beginning before streaming live |
38
38
 
39
+ ## Session Dump
40
+
41
+ ```bash
42
+ sidekick dump [options]
43
+ ```
44
+
45
+ Export session data as text, markdown, or JSON.
46
+
47
+ | Flag | Description |
48
+ |------|-------------|
49
+ | `--format <fmt>` | Output format: `text` (default), `json`, or `markdown` |
50
+ | `--width <cols>` | Terminal width for text output (default: auto-detect) |
51
+ | `--expand` | Show all events including noise |
52
+ | `--session <id>` | Target a specific session (default: most recent) |
53
+
54
+ Global flags `--project` and `--provider` also apply.
55
+
39
56
  ## Dashboard Panels
40
57
 
41
58
  The dashboard is a two-pane terminal UI. The left side shows a navigable list, the right side shows details for the selected item.
@@ -47,6 +64,7 @@ The dashboard is a two-pane terminal UI. The left side shows a navigable list, t
47
64
  | 3 | **Kanban** | Task board with status columns |
48
65
  | 4 | **Notes** | Knowledge notes attached to files |
49
66
  | 5 | **Decisions** | Architectural decisions from sessions |
67
+ | 6 | **Plans** | Discovered agent plans from `~/.claude/plans/` |
50
68
 
51
69
  ## Layout Modes
52
70
 
@@ -64,7 +82,7 @@ Press `z` to cycle through layout modes:
64
82
 
65
83
  | Key | Action |
66
84
  |-----|--------|
67
- | `1`–`5` | Switch panel |
85
+ | `1`–`6` | Switch panel |
68
86
  | `Tab` | Toggle focus between side list and detail pane |
69
87
  | `j` / `↓` | Next item (side) or scroll down (detail) |
70
88
  | `k` / `↑` | Previous item (side) or scroll up (detail) |