@tonyclaw/agent-inspector 4.0.19 → 4.0.21
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/.output/backend/nitro.json +1 -1
- package/.output/cli.js +125 -125
- package/.output/server/_libs/jszip.mjs +1 -1
- package/.output/server/_ssr/index.mjs +1 -1
- package/.output/server/_ssr/{publicBasePathContext--TAQS2_5.mjs → publicBasePathContext-SVd5LkCX.mjs} +1 -1
- package/.output/server/_ssr/router-HTKEFlBr.mjs +341 -0
- package/.output/server/_ssr/{start-PDVGOqUN.mjs → start-CbEonH-m.mjs} +1 -1
- package/.output/server/index.mjs +1 -1
- package/.output/ui/assets/{CompareDrawer-CgAZrkLu.js → CompareDrawer-CGtGLpRr.js} +1 -1
- package/.output/ui/assets/{InspectorPet-CgUuRJ4u.js → InspectorPet-C7EyBke0.js} +1 -1
- package/.output/ui/assets/{ProxyViewerContainer-Ckx7AP9X.js → ProxyViewerContainer-DyEPnEkM.js} +4 -4
- package/.output/ui/assets/{ReplayDialog-CYMPfOcu.js → ReplayDialog-D-HJ-GY-.js} +1 -1
- package/.output/ui/assets/{RequestAnatomy-DeLjD1GQ.js → RequestAnatomy-CS3IEG8L.js} +1 -1
- package/.output/ui/assets/{ResponseView-B96XHDRI.js → ResponseView-BU2uDaMH.js} +1 -1
- package/.output/ui/assets/{StreamingChunkSequence-JBYsukHs.js → StreamingChunkSequence-DT7vuTnV.js} +1 -1
- package/.output/ui/assets/{_sessionId-D0waIuKk.js → _sessionId-DVNVVqtQ.js} +1 -1
- package/.output/ui/assets/{_sessionId-4_zZhIhM.js → _sessionId-LpWM6fUR.js} +1 -1
- package/.output/ui/assets/{index-Dv4JfGHe.js → index-BX9hEtiY.js} +1 -1
- package/.output/ui/assets/{index-BZNqCgAV.js → index-CHGXicPQ.js} +1 -1
- package/.output/ui/assets/{index-BpMOsOCV.js → index-D0laIdpr.js} +7 -7
- package/.output/ui/assets/{index-04ATd7kD.js → index-qkfRlMvL.js} +1 -1
- package/.output/ui/assets/{json-viewer-DukL2MAW.js → json-viewer-Be1ybyLo.js} +1 -1
- package/.output/ui/assets/{jszip.min-BfpufOvz.js → jszip.min-CNa5iyer.js} +1 -1
- package/.output/ui/index.html +1 -1
- package/.output/workers/logFinalizer.worker.js +12 -12
- package/.output/workers/sessionWorkerEntry.js +12 -12
- package/README.md +16 -0
- package/package.json +4 -4
- package/.output/server/_ssr/router-DoUVo011.mjs +0 -341
package/README.md
CHANGED
|
@@ -225,6 +225,22 @@ agent traffic, but clients must still use the corresponding runtime field. A sep
|
|
|
225
225
|
has its own origin and mount path. `GET <control-base-url>/api/runtime` returns a versioned,
|
|
226
226
|
token-free, `no-store` discovery document with deployment mode and capabilities.
|
|
227
227
|
|
|
228
|
+
External coding agents should read `availableBaseUrls` from that document instead of assuming
|
|
229
|
+
whether the deployment is mounted at `/inspector` or `/`. The configured Base Path is listed first,
|
|
230
|
+
followed by the compatible root entry, with duplicates removed. For example:
|
|
231
|
+
|
|
232
|
+
```json
|
|
233
|
+
{
|
|
234
|
+
"availableBaseUrls": [
|
|
235
|
+
"http://localhost:9527/inspector",
|
|
236
|
+
"http://localhost:9527"
|
|
237
|
+
]
|
|
238
|
+
}
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
Clients can append `/proxy` for Anthropic, `/proxy/v1` for OpenAI-compatible protocols, or
|
|
242
|
+
`/api/runtime` to verify a candidate before adopting it.
|
|
243
|
+
|
|
228
244
|
The static UI loads `runtime-config.js` before the application bundle. For a separately hosted UI,
|
|
229
245
|
replace `.output/ui/runtime-config.js` with an operator-owned value such as:
|
|
230
246
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tonyclaw/agent-inspector",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.21",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Agent observability and knowledge capture layer for AI coding tools.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -149,9 +149,9 @@
|
|
|
149
149
|
"zod": "^4.4.3"
|
|
150
150
|
},
|
|
151
151
|
"optionalDependencies": {
|
|
152
|
-
"@tonyclaw/agent-inspector-backend-darwin-arm64": "4.0.
|
|
153
|
-
"@tonyclaw/agent-inspector-backend-linux-x64-gnu": "4.0.
|
|
154
|
-
"@tonyclaw/agent-inspector-backend-win32-x64-msvc": "4.0.
|
|
152
|
+
"@tonyclaw/agent-inspector-backend-darwin-arm64": "4.0.21",
|
|
153
|
+
"@tonyclaw/agent-inspector-backend-linux-x64-gnu": "4.0.21",
|
|
154
|
+
"@tonyclaw/agent-inspector-backend-win32-x64-msvc": "4.0.21",
|
|
155
155
|
"better-sqlite3": "^12.11.1",
|
|
156
156
|
"rcedit": "4.0.1"
|
|
157
157
|
},
|