@superbased/observer 1.4.35 → 1.4.36

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.
Files changed (2) hide show
  1. package/README.md +6 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -126,7 +126,7 @@ env var that matches your client(s); both can coexist on one machine.
126
126
  |---------------------------------|-------------------------------------------------------|--------------|
127
127
  | **Claude Code** | `ANTHROPIC_BASE_URL=http://127.0.0.1:8820` | proxy + JSONL |
128
128
  | **Cursor** (Anthropic mode) | `ANTHROPIC_BASE_URL=http://127.0.0.1:8820` | proxy + JSONL |
129
- | **Codex** | `OPENAI_BASE_URL=http://127.0.0.1:8820/v1` (note `/v1`) | proxy + JSONL |
129
+ | **Codex** | `OPENAI_BASE_URL=http://127.0.0.1:8820/v1` (note `/v1`) | proxy + JSONL with API-key auth; ChatGPT-plan login currently behaves as JSONL only |
130
130
  | **Cursor** (OpenAI mode) | `OPENAI_BASE_URL=http://127.0.0.1:8820/v1` | proxy + JSONL |
131
131
  | **Cline / Roo Code** | `ANTHROPIC_BASE_URL=...` or `OPENAI_BASE_URL=...` per provider | proxy + JSONL |
132
132
  | **GitHub Copilot** | (no proxy yet) | JSONL only |
@@ -147,6 +147,11 @@ OpenCode / OpenClaw / Antigravity / Gemini CLI emit `approximate`
147
147
  (provider-reported usage that hasn't been reconciled against an
148
148
  upstream invoice).
149
149
 
150
+ For **Codex specifically**, Observer currently has two practical support modes:
151
+
152
+ - `Proxy + JSONL`: Codex is routed through `OPENAI_BASE_URL=http://127.0.0.1:8820/v1` and Observer can link proxy turns to the session, so live compression metrics are available.
153
+ - `JSONL only`: Observer can still recover sessions, actions, and approximate token counts from `~/.codex/sessions`, but live proxy compression is currently not available when Codex is logged in with a ChatGPT plan on the local machine.
154
+
150
155
  ### Persistent setups
151
156
 
152
157
  **Claude Code** (`~/.claude/settings.json`):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superbased/observer",
3
- "version": "1.4.35",
3
+ "version": "1.4.36",
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.35",
40
- "@superbased/observer-linux-arm64": "1.4.35",
41
- "@superbased/observer-darwin-x64": "1.4.35",
42
- "@superbased/observer-darwin-arm64": "1.4.35",
43
- "@superbased/observer-win32-x64": "1.4.35"
39
+ "@superbased/observer-linux-x64": "1.4.36",
40
+ "@superbased/observer-linux-arm64": "1.4.36",
41
+ "@superbased/observer-darwin-x64": "1.4.36",
42
+ "@superbased/observer-darwin-arm64": "1.4.36",
43
+ "@superbased/observer-win32-x64": "1.4.36"
44
44
  },
45
45
  "scripts": {
46
46
  "test": "node bin/observer.js --version"