@agent-inspect/studio 6.7.1 → 6.7.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 +39 -9
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,16 +1,20 @@
1
1
  # @agent-inspect/studio
2
2
 
3
- Self-hosted, read-only Studio analyzer for multi-project AgentInspect workspaces. Customer-owned — no maintainer cloud.
3
+ Customer-owned, read-only Studio analyzer for registered AgentInspect workspaces. **No maintainer-hosted cloud.**
4
+
5
+ **Support level:** Beta — see [SUPPORT-LEVELS.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SUPPORT-LEVELS.md).
4
6
 
5
7
  ## When to use
6
8
 
7
- - Team-internal browser UI over multiple AgentInspect workspaces
8
- - Localhost or explicitly configured self-hosted binding
9
+ - Team-internal browser UI over one or more local workspaces
10
+ - Localhost review of projects, runs, search, and imports
11
+ - Explicit, opt-in ingest of files / GitHub artifacts / HTTP (all **disabled by default**)
9
12
 
10
13
  ## When not to use
11
14
 
12
15
  - Maintainer-hosted dashboards or SaaS
13
- - Trace mutation or ingest (use CLI writers; ingest is v6.1+)
16
+ - Production HA / Postgres / enterprise SSO (not supported)
17
+ - Trace mutation (Studio is read-only over registered workspaces)
14
18
 
15
19
  ## Install
16
20
 
@@ -18,17 +22,30 @@ Self-hosted, read-only Studio analyzer for multi-project AgentInspect workspaces
18
22
  npm install agent-inspect @agent-inspect/studio
19
23
  ```
20
24
 
21
- ## Example
25
+ Optional index: `@agent-inspect/index-sqlite` (Beta).
26
+
27
+ ## Two-minute start
22
28
 
23
29
  ```bash
24
30
  npx agent-inspect studio
31
+ # default: http://127.0.0.1:7340
25
32
  npx agent-inspect studio --port 7340 --host 127.0.0.1
26
33
  ```
27
34
 
28
- ## Privacy
35
+ Register workspaces via the Studio registry / CLI docs. SQLite is the current supported store.
36
+
37
+ ## Privacy and network
38
+
39
+ - Binds to **localhost** by default
40
+ - **No default upload** or hidden telemetry
41
+ - File-drop ingest: local only
42
+ - GitHub artifact import: **explicit**; uses your credentials → GitHub
43
+ - HTTP ingest: **disabled by default**; requires token + binding when enabled
44
+ - See [NETWORK-BEHAVIOR.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/NETWORK-BEHAVIOR.md) · [SELF-HOSTING.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SELF-HOSTING.md)
45
+
46
+ ## Current pages (honest)
29
47
 
30
- - Binds to localhost by default; read-only GET routes
31
- - No default upload or telemetry
48
+ Useful HTML for projects, runs, and search. Sessions / suites / safety views may still be thinner than the underlying APIs (JSON-oriented). Treat Studio as Beta.
32
49
 
33
50
  ## API
34
51
 
@@ -38,9 +55,22 @@ npx agent-inspect studio --port 7340 --host 127.0.0.1
38
55
 
39
56
  `npx agent-inspect studio` (requires this package installed)
40
57
 
58
+ ## Limitations
59
+
60
+ - No Postgres mode
61
+ - Not a production APM
62
+ - External design-partner evidence still pending for broad adoption claims
63
+ - Docker Compose examples are customer-owned templates — verify before production use
64
+
41
65
  ## Docs
42
66
 
43
- - [SELF-HOSTED-STUDIO-V6.0.md](../../docs/proposals/SELF-HOSTED-STUDIO-V6.0.md)
67
+ - [SELF-HOSTING.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SELF-HOSTING.md)
68
+ - [WORKSPACE.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/WORKSPACE.md)
69
+ - [PRE-V7-PILOT-KIT.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/PRE-V7-PILOT-KIT.md)
70
+
71
+ ## Version
72
+
73
+ Part of the fixed AgentInspect release line. See the npm badge / package manifest for the current version.
44
74
 
45
75
  ## License
46
76
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-inspect/studio",
3
- "version": "6.7.1",
3
+ "version": "6.7.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Optional self-hosted read-only Studio analyzer for multi-project AgentInspect workspaces",
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "better-sqlite3": "^11.8.0",
41
- "agent-inspect": "6.7.1"
41
+ "agent-inspect": "6.7.2"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/better-sqlite3": "^7.6.11"