@superbased/observer 1.4.24 → 1.4.26
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 +13 -4
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -291,9 +291,14 @@ Click a row to open the session-detail modal:
|
|
|
291
291
|
expands inline to show the contained tool calls. Toggle radio at
|
|
292
292
|
the top: **Tool messages only** (default — assistant turns with
|
|
293
293
|
≥1 tool call + user prompts) vs **All messages** (also pure-text
|
|
294
|
-
assistant replies).
|
|
295
|
-
|
|
296
|
-
message
|
|
294
|
+
assistant replies). Truncated IDs (session_id, message_id)
|
|
295
|
+
show a dotted underline on hover and copy the full value to
|
|
296
|
+
clipboard on click; truncated text fields (target, error message)
|
|
297
|
+
click to expand in-place. Server-side paginated at 50/100/200
|
|
298
|
+
messages per page (selectable in the panel footer) — keeps the
|
|
299
|
+
browser responsive on multi-thousand-message sessions. Requires
|
|
300
|
+
`observer backfill --message-id` on first upgrade for historical
|
|
301
|
+
sessions to surface their parent message ids.
|
|
297
302
|
|
|
298
303
|
### Actions tab
|
|
299
304
|
|
|
@@ -563,7 +568,11 @@ dashboard) has the full versions with cross-links.
|
|
|
563
568
|
`edit_file`, `run_command`, `search_text`, `search_files`,
|
|
564
569
|
`web_search`, `web_fetch`, `mcp_call`, `spawn_subagent`,
|
|
565
570
|
`todo_update`, `ask_user`, `task_complete`, `user_prompt`,
|
|
566
|
-
`
|
|
571
|
+
`api_error`, `turn_aborted` (interrupted before completion —
|
|
572
|
+
distinct from task_complete/success=false; v1.4.22+),
|
|
573
|
+
`context_compacted` (upstream-emitted compaction marker, not
|
|
574
|
+
searchable like file edits; v1.4.22+), `system_prompt`
|
|
575
|
+
(system/developer/user-envelope content; v1.4.23+), `unknown`.
|
|
567
576
|
- **API turn** — one HTTP request captured by the local proxy. Records
|
|
568
577
|
one row in `api_turns` per request, with the upstream usage envelope
|
|
569
578
|
intact.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superbased/observer",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.26",
|
|
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.26",
|
|
40
|
+
"@superbased/observer-linux-arm64": "1.4.26",
|
|
41
|
+
"@superbased/observer-darwin-x64": "1.4.26",
|
|
42
|
+
"@superbased/observer-darwin-arm64": "1.4.26",
|
|
43
|
+
"@superbased/observer-win32-x64": "1.4.26"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"test": "node bin/observer.js --version"
|