codexmeter 1.0.2 → 1.0.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 +2 -1
- package/dist/assets/index-CBnwoOLi.js +117 -0
- package/dist/assets/index-DhDq9dI8.css +1 -0
- package/dist/index.html +2 -2
- package/package.json +1 -1
- package/server/aggregator.js +9 -5
- package/server/export-video.js +501 -44
- package/server/index.js +17 -2
- package/server/live-state.js +9 -6
- package/src/utils/animationsDefault.js +42 -6
- package/dist/assets/index-C0qLYGUY.css +0 -1
- package/dist/assets/index-M87czq50.js +0 -113
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ npx codexmeter@latest --repo my-project --agent-family review
|
|
|
36
36
|
- **Models** — Token and cost per model, thinking-level breakdown
|
|
37
37
|
- **Daily Usage** — Tokens, wall-clock time, and cost per day, stacked by model
|
|
38
38
|
- **Sessions** — Searchable table with repo, model, role, duration, tokens
|
|
39
|
-
- **Export** — PNG export
|
|
39
|
+
- **Export** — PNG chart export and Overview ingest video clips
|
|
40
40
|
|
|
41
41
|
Data is read from `state_5.sqlite`, `logs_1.sqlite`, and rollout JSONL under `.codex`. No separate cache DB; ingestion runs on each launch.
|
|
42
42
|
|
|
@@ -44,6 +44,7 @@ Data is read from `state_5.sqlite`, `logs_1.sqlite`, and rollout JSONL under `.c
|
|
|
44
44
|
|
|
45
45
|
- Node.js 18+
|
|
46
46
|
- A `.codex` directory (from Codex CLI usage)
|
|
47
|
+
- Chrome, Chromium, or Edge for video export, or let CodexMeter download a single-use portable browser from the UI
|
|
47
48
|
|
|
48
49
|
## Development
|
|
49
50
|
|