sidekick-agent-hub 0.12.6 → 0.12.7
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 +21 -0
- package/dist/sidekick-cli.mjs +1782 -620
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,6 +53,26 @@ Export session data as text, markdown, or JSON.
|
|
|
53
53
|
|
|
54
54
|
Global flags `--project` and `--provider` also apply.
|
|
55
55
|
|
|
56
|
+
## HTML Report
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
sidekick report [options]
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Generate a self-contained HTML session report and open it in the default browser. Includes full transcript, token/cost stats, model breakdown, and tool-use summary.
|
|
63
|
+
|
|
64
|
+
| Flag | Description |
|
|
65
|
+
|------|-------------|
|
|
66
|
+
| `--session <id>` | Target a specific session (default: most recent) |
|
|
67
|
+
| `--output <path>` | Write to a specific file (default: temp file) |
|
|
68
|
+
| `--theme <theme>` | Color theme: `dark` (default) or `light` |
|
|
69
|
+
| `--no-open` | Write the file without opening the browser |
|
|
70
|
+
| `--no-thinking` | Omit thinking blocks from the transcript |
|
|
71
|
+
|
|
72
|
+
Global flags `--project` and `--provider` also apply.
|
|
73
|
+
|
|
74
|
+
You can also press `r` in the TUI dashboard to generate a report for the current session.
|
|
75
|
+
|
|
56
76
|
## Dashboard Panels
|
|
57
77
|
|
|
58
78
|
The dashboard is a two-pane terminal UI. The left side shows a navigable list, the right side shows details for the selected item.
|
|
@@ -127,6 +147,7 @@ Press `z` to cycle through layout modes:
|
|
|
127
147
|
| `/` | Open filter overlay |
|
|
128
148
|
| `x` | Open context menu for selected item |
|
|
129
149
|
| `?` | Show help |
|
|
150
|
+
| `r` | Generate HTML report for the current session |
|
|
130
151
|
| `V` | Show version / changelog |
|
|
131
152
|
| `q` / `Ctrl+C` | Quit |
|
|
132
153
|
|