@agent-inspect/viewer 3.5.0 → 3.5.2

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 +54 -0
  2. package/package.json +4 -3
package/README.md ADDED
@@ -0,0 +1,54 @@
1
+ # @agent-inspect/viewer
2
+
3
+ Localhost-only read-only trace viewer (not a hosted dashboard).
4
+
5
+ ## When to use
6
+
7
+ - Quick browser UI for a trace directory on your machine
8
+
9
+ ## When not to use
10
+
11
+ - Team-wide hosted dashboards
12
+ - Production monitoring
13
+
14
+ ## Install
15
+
16
+ ```bash
17
+ npm install @agent-inspect/viewer
18
+ ```
19
+
20
+ ## Example
21
+
22
+ ```bash
23
+ npx agent-inspect view <run-id> --serve
24
+ # or use viewer package API to start local server
25
+ ```
26
+
27
+ ## Privacy
28
+
29
+ - Binds to localhost; reads local files only
30
+ - No upload
31
+
32
+ ## API
33
+
34
+ Viewer server factory (see package exports).
35
+
36
+ ## CLI
37
+
38
+ `npx agent-inspect view --serve`
39
+
40
+ ## Docs
41
+
42
+ - [SCREENSHOTS](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SCREENSHOTS.md)
43
+
44
+ ## Troubleshooting
45
+
46
+ - **Port in use:** Pass alternate port if supported by CLI flags
47
+
48
+ ## Version
49
+
50
+ `3.5.x`
51
+
52
+ ## License
53
+
54
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-inspect/viewer",
3
- "version": "3.5.0",
3
+ "version": "3.5.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Optional localhost read-only trace viewer for AgentInspect",
@@ -12,7 +12,7 @@
12
12
  "bugs": {
13
13
  "url": "https://github.com/rajudandigam/agent-inspect/issues"
14
14
  },
15
- "homepage": "https://github.com/rajudandigam/agent-inspect#readme",
15
+ "homepage": "https://github.com/rajudandigam/agent-inspect/tree/main/packages/viewer",
16
16
  "sideEffects": false,
17
17
  "main": "./dist/index.cjs",
18
18
  "module": "./dist/index.mjs",
@@ -30,10 +30,11 @@
30
30
  }
31
31
  },
32
32
  "files": [
33
+ "README.md",
33
34
  "dist"
34
35
  ],
35
36
  "dependencies": {
36
- "agent-inspect": "3.5.0"
37
+ "agent-inspect": "3.5.2"
37
38
  },
38
39
  "peerDependencies": {},
39
40
  "publishConfig": {