vibe-replay 0.2.1 → 0.2.3
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 +17 -3
- package/assets/viewer.html +39 -39
- package/dist/index.js +3179 -1113
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/vibe-replay)
|
|
4
4
|
[](https://github.com/tuo-lei/vibe-replay/blob/main/LICENSE)
|
|
5
5
|
|
|
6
|
-
Turn AI coding sessions into animated, interactive web replays.
|
|
6
|
+
Turn AI coding sessions from Claude Code, Cursor, Codex, and Pi into animated, interactive web replays.
|
|
7
7
|
|
|
8
8
|
One command. One HTML file. Share anywhere.
|
|
9
9
|
|
|
@@ -62,7 +62,8 @@ https://your-host/viewer.html?url=https://example.com/replay.json
|
|
|
62
62
|
|----------|--------|
|
|
63
63
|
| Claude Code | Supported |
|
|
64
64
|
| Cursor | Supported |
|
|
65
|
-
| Codex |
|
|
65
|
+
| Codex | Supported |
|
|
66
|
+
| Pi | Supported |
|
|
66
67
|
| Gemini CLI | Planned |
|
|
67
68
|
|
|
68
69
|
## Options
|
|
@@ -72,12 +73,25 @@ Usage: vibe-replay [options]
|
|
|
72
73
|
|
|
73
74
|
Options:
|
|
74
75
|
-s, --session <path> Path to a specific JSONL session file
|
|
75
|
-
-p, --provider <name> Provider name (default: claude-code)
|
|
76
|
+
-p, --provider <name> Provider name (default: claude-code; supports pi)
|
|
76
77
|
--dev Write demo.json for HMR development
|
|
77
78
|
-V, --version Output the version number
|
|
78
79
|
-h, --help Display help
|
|
79
80
|
```
|
|
80
81
|
|
|
82
|
+
## Search Local Sessions
|
|
83
|
+
|
|
84
|
+
For agent-friendly lookup and retros:
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
vibe-replay sessions --query "codex parser" --limit 10 --json
|
|
88
|
+
vibe-replay sessions --project "vibe-replay" --scan --json
|
|
89
|
+
vibe-replay sessions --query "PR review CI" --any --brief --dedupe --json
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Use `--scan` to include efficiency metrics such as prompt count, tool calls, edits, duration, compactions, and API errors.
|
|
93
|
+
Use `--any` for explicit broad recall when you only remember loose keywords. Add `--brief` for scan-backed evidence (`matchQuality`, matched/unmatched terms, match reasons, brief, signals, and next action). Add `--dedupe` to collapse near-duplicate long-prompt sessions.
|
|
94
|
+
|
|
81
95
|
## Run from Source
|
|
82
96
|
|
|
83
97
|
```bash
|