@superbased/observer 1.19.0 → 1.20.0
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 +8 -4
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1165,11 +1165,11 @@ Every command supports `--help` for the full surface.
|
|
|
1165
1165
|
|------------------------------------|---------|
|
|
1166
1166
|
| `observer init` | Register hooks + MCP server + durable proxy routes with installed AI clients (each side defaults on; opt out with `--skip-hooks` / `--skip-mcp` / `--skip-proxy-route`). With **zero flags on a terminal** it runs an interactive checklist instead: detects your tools, previews each pending config write, and asks consent one write at a time (MCP never pre-selected). Any flag or redirected stdio keeps the batch behaviour. |
|
|
1167
1167
|
| `observer uninstall` | Reverse `observer init` |
|
|
1168
|
-
| `observer start` | Run watcher + dashboard + proxy in one process (recommended). Auto-opens the dashboard on interactive launches. Flags: `--dashboard-addr ADDR` (default `127.0.0.1:8081`), `--no-dashboard` to skip the HTTP UI, `--no-open` to skip the browser. |
|
|
1168
|
+
| `observer start` | Run watcher + dashboard + proxy in one process (recommended). Auto-opens the dashboard on interactive launches. Flags: `--dashboard-addr ADDR` (default `127.0.0.1:8081`; for a durable setting use `[dashboard].addr` in config or the `OBSERVER_DASHBOARD_ADDR` env var — precedence flag > env > config > default), `--no-dashboard` to skip the HTTP UI, `--no-open` to skip the browser. |
|
|
1169
1169
|
| `observer claude [-- args…]` | Launch Claude Code routed through the proxy for that session only (no config writes; fresh Pro/Max OAuth token re-exported so the SDK can't bypass). `--verify` runs pre-flight checks without launching. |
|
|
1170
1170
|
| `observer codex [-- args…]` | Launch Codex routed through the proxy for that session only (injects `openai_base_url` via argv; no config writes). |
|
|
1171
1171
|
| `observer watch` | Long-running JSONL watcher only |
|
|
1172
|
-
| `observer dashboard --addr ADDR` | HTTP dashboard only |
|
|
1172
|
+
| `observer dashboard --addr ADDR` | HTTP dashboard only. `--addr`/`--port` still win when passed; otherwise falls back to `OBSERVER_DASHBOARD_ADDR` > `[dashboard].addr` config > default. |
|
|
1173
1173
|
| `observer proxy start` | Reverse proxy only |
|
|
1174
1174
|
| `observer scan` | One-shot ingest of existing JSONL files (catch-up after install) |
|
|
1175
1175
|
| `observer status` | DB stats + recent activity |
|
|
@@ -1215,8 +1215,12 @@ anthropic_upstream = "https://api.anthropic.com"
|
|
|
1215
1215
|
openai_upstream = "https://api.openai.com"
|
|
1216
1216
|
|
|
1217
1217
|
[dashboard]
|
|
1218
|
-
|
|
1219
|
-
|
|
1218
|
+
# Durable dashboard listen address as host:port. Empty/omitted = the built-in
|
|
1219
|
+
# 127.0.0.1:8081 default. Precedence: `observer start --dashboard-addr` flag >
|
|
1220
|
+
# OBSERVER_DASHBOARD_ADDR env var > this value > default. Binds at daemon start
|
|
1221
|
+
# (restart to apply). A non-loopback host still fails closed unless [remote] is
|
|
1222
|
+
# armed.
|
|
1223
|
+
addr = "127.0.0.1:8081"
|
|
1220
1224
|
|
|
1221
1225
|
[compression.conversation]
|
|
1222
1226
|
enabled = false # opt-in; default off
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superbased/observer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"description": "Claude Code cost tracking, Cursor token usage, Codex spend — AI coding agent observability across 26 adapters, proxy-accurate token counts and cost.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"LICENSE"
|
|
42
42
|
],
|
|
43
43
|
"optionalDependencies": {
|
|
44
|
-
"@superbased/observer-linux-x64": "1.
|
|
45
|
-
"@superbased/observer-linux-arm64": "1.
|
|
46
|
-
"@superbased/observer-darwin-x64": "1.
|
|
47
|
-
"@superbased/observer-darwin-arm64": "1.
|
|
48
|
-
"@superbased/observer-win32-x64": "1.
|
|
44
|
+
"@superbased/observer-linux-x64": "1.20.0",
|
|
45
|
+
"@superbased/observer-linux-arm64": "1.20.0",
|
|
46
|
+
"@superbased/observer-darwin-x64": "1.20.0",
|
|
47
|
+
"@superbased/observer-darwin-arm64": "1.20.0",
|
|
48
|
+
"@superbased/observer-win32-x64": "1.20.0"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"test": "node bin/observer.js --version"
|