vibe-replay 0.2.1 → 0.2.2
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 +14 -1
- package/assets/viewer.html +39 -39
- package/dist/index.js +1273 -138
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -62,7 +62,7 @@ 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
66
|
| Gemini CLI | Planned |
|
|
67
67
|
|
|
68
68
|
## Options
|
|
@@ -78,6 +78,19 @@ Options:
|
|
|
78
78
|
-h, --help Display help
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
+
## Search Local Sessions
|
|
82
|
+
|
|
83
|
+
For agent-friendly lookup and retros:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
vibe-replay sessions --query "codex parser" --limit 10 --json
|
|
87
|
+
vibe-replay sessions --project "vibe-replay" --scan --json
|
|
88
|
+
vibe-replay sessions --query "PR review CI" --any --brief --dedupe --json
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
Use `--scan` to include efficiency metrics such as prompt count, tool calls, edits, duration, compactions, and API errors.
|
|
92
|
+
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.
|
|
93
|
+
|
|
81
94
|
## Run from Source
|
|
82
95
|
|
|
83
96
|
```bash
|