@agent-inspect/viewer 6.7.1 → 6.7.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 CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  Localhost-only read-only trace viewer (not a hosted dashboard).
4
4
 
5
+
6
+ **Support level:** Beta — see [SUPPORT-LEVELS.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SUPPORT-LEVELS.md).
7
+
5
8
  ## When to use
6
9
 
7
10
  - Quick browser UI for a trace directory on your machine
@@ -27,7 +30,7 @@ npx agent-inspect view <run-id> --serve
27
30
  ## Privacy
28
31
 
29
32
  - Binds to localhost; reads local files only
30
- - No upload
33
+ - No default upload to AgentInspect
31
34
 
32
35
  ## API
33
36
 
@@ -45,9 +48,10 @@ Viewer server factory (see package exports).
45
48
 
46
49
  - **Port in use:** Pass alternate port if supported by CLI flags
47
50
 
51
+
48
52
  ## Version
49
53
 
50
- `3.5.x`
54
+ Part of the fixed AgentInspect release line. See the npm badge / package manifest for the current version.
51
55
 
52
56
  ## License
53
57
 
package/dist/index.cjs CHANGED
@@ -4780,6 +4780,10 @@ function manualTraceEventsToComparableRun(events) {
4780
4780
  meta = { ...meta ?? {}, agent_inspect_diff_parent_missing: true };
4781
4781
  }
4782
4782
  const outputPreview = extractOutputPreview(meta);
4783
+ if (meta !== void 0 && ("outputPreview" in meta || "resultPreview" in meta)) {
4784
+ delete meta.outputPreview;
4785
+ delete meta.resultPreview;
4786
+ }
4783
4787
  const sc = {
4784
4788
  id: acc.id,
4785
4789
  name: acc.name,