@superbased/observer 1.4.15 → 1.4.16
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 +1 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -620,6 +620,7 @@ Every command supports `--help` for the full surface.
|
|
|
620
620
|
| `observer export` | Export DB to xlsx / json |
|
|
621
621
|
| `observer prune` | Manual retention pass (delete old data) |
|
|
622
622
|
| `observer backfill --is-sidechain` | Re-walk JSONL to populate is_sidechain on pre-migration rows |
|
|
623
|
+
| `observer backfill --cache-tier` | Re-walk JSONL to populate cache_creation_1h_tokens (added by migration 008) on pre-migration rows. Run once after upgrading to v1.4.16+ to correct historical 1h-tier cache writes that were silently billed at the cheaper 5m rate. Idempotent. |
|
|
623
624
|
| `observer metrics` | Prometheus-format metrics endpoint |
|
|
624
625
|
| `observer serve` | MCP server (stdio JSON-RPC) — usually invoked by `observer init` registration |
|
|
625
626
|
| `observer tail` | Live event stream |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superbased/observer",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.16",
|
|
4
4
|
"description": "SuperBased Observer — capture, normalize, compress, and analyze AI coding tool activity across Claude Code, Codex, Cursor, Cline/Roo, and Copilot.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"LICENSE"
|
|
37
37
|
],
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@superbased/observer-linux-x64": "1.4.
|
|
40
|
-
"@superbased/observer-linux-arm64": "1.4.
|
|
41
|
-
"@superbased/observer-darwin-x64": "1.4.
|
|
42
|
-
"@superbased/observer-darwin-arm64": "1.4.
|
|
43
|
-
"@superbased/observer-win32-x64": "1.4.
|
|
39
|
+
"@superbased/observer-linux-x64": "1.4.16",
|
|
40
|
+
"@superbased/observer-linux-arm64": "1.4.16",
|
|
41
|
+
"@superbased/observer-darwin-x64": "1.4.16",
|
|
42
|
+
"@superbased/observer-darwin-arm64": "1.4.16",
|
|
43
|
+
"@superbased/observer-win32-x64": "1.4.16"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"test": "node bin/observer.js --version"
|