@tonyclaw/agent-inspector 2.0.38 → 2.0.39
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/cli.js +528 -24
- package/.output/nitro.json +1 -1
- package/.output/public/assets/{CompareDrawer-hc5OoAls.js → CompareDrawer-Jfe6M6DQ.js} +1 -1
- package/.output/public/assets/{ProxyViewerContainer-BMKBs8Qz.js → ProxyViewerContainer-CQKV0Bqq.js} +8 -8
- package/.output/public/assets/{ReplayDialog-CN-KM2nu.js → ReplayDialog-B58TbTtY.js} +1 -1
- package/.output/public/assets/{RequestAnatomy-B1kTlAUk.js → RequestAnatomy-d4P6JNiP.js} +1 -1
- package/.output/public/assets/{ResponseView-BchUjKjt.js → ResponseView-Bum1a3tG.js} +1 -1
- package/.output/public/assets/{StreamingChunkSequence-BQOxI9Hi.js → StreamingChunkSequence-CjBDp5E9.js} +1 -1
- package/.output/public/assets/_sessionId-BupV2gtf.js +1 -0
- package/.output/public/assets/index-DHSww5em.js +1 -0
- package/.output/public/assets/{main-Blykwzsn.js → main-DK9PoBjx.js} +2 -2
- package/.output/server/{_sessionId-BUNZz2zZ.mjs → _sessionId-DjarbXpT.mjs} +2 -2
- package/.output/server/_ssr/{CompareDrawer-VaDYPM5G.mjs → CompareDrawer-C5Z6AlUk.mjs} +2 -2
- package/.output/server/_ssr/{ProxyViewerContainer-CpdWs7Pk.mjs → ProxyViewerContainer-4pXsBywn.mjs} +34 -6
- package/.output/server/_ssr/{ReplayDialog-DbfIjJhb.mjs → ReplayDialog-w1vc1p5e.mjs} +3 -3
- package/.output/server/_ssr/{RequestAnatomy-CrD8h6As.mjs → RequestAnatomy-2HaBhsNV.mjs} +2 -2
- package/.output/server/_ssr/{ResponseView-BalvDwtU.mjs → ResponseView-SO_Y_W85.mjs} +2 -2
- package/.output/server/_ssr/{StreamingChunkSequence-RxatDbPV.mjs → StreamingChunkSequence-CXEa2DkO.mjs} +2 -2
- package/.output/server/_ssr/{index-11qAtV9d.mjs → index-DuCGt4a2.mjs} +2 -2
- package/.output/server/_ssr/index.mjs +2 -2
- package/.output/server/_ssr/{router-C4OdRnqX.mjs → router-D0BaSzkZ.mjs} +3 -3
- package/.output/server/{_tanstack-start-manifest_v-F6bwcl33.mjs → _tanstack-start-manifest_v-6N4SODyd.mjs} +1 -1
- package/.output/server/index.mjs +57 -57
- package/README.md +7 -0
- package/package.json +1 -1
- package/src/cli/onboard.ts +629 -21
- package/src/components/providers/SettingsDialog.tsx +30 -0
- package/.output/public/assets/_sessionId-CVw5e8TK.js +0 -1
- package/.output/public/assets/index-BdUTMQL6.js +0 -1
|
@@ -293,6 +293,18 @@ function OnboardingSettingsTab(): JSX.Element {
|
|
|
293
293
|
label: "Codex prompt",
|
|
294
294
|
value: "Use the agent-inspector-onboard skill",
|
|
295
295
|
},
|
|
296
|
+
{
|
|
297
|
+
id: "opencode-config",
|
|
298
|
+
label: "OpenCode config",
|
|
299
|
+
value: "agent-inspector onboard --opencode-only",
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
id: "opencode-status",
|
|
303
|
+
label: "OpenCode status",
|
|
304
|
+
value: "agent-inspector onboard --status --opencode-only",
|
|
305
|
+
},
|
|
306
|
+
{ id: "opencode-verify", label: "OpenCode verify", value: "opencode mcp list" },
|
|
307
|
+
{ id: "opencode-proxy", label: "OpenCode proxy", value: `LLM_BASE_URL=${origin}/proxy` },
|
|
296
308
|
{ id: "mcp", label: "MCP URL", value: `${origin}/api/mcp` },
|
|
297
309
|
{ id: "proxy", label: "Proxy URL", value: `${origin}/proxy` },
|
|
298
310
|
{ id: "anthropic", label: "Anthropic base", value: `ANTHROPIC_BASE_URL=${origin}/proxy` },
|
|
@@ -345,6 +357,24 @@ function OnboardingSettingsTab(): JSX.Element {
|
|
|
345
357
|
instead. Configure only one entry for the same Inspector.
|
|
346
358
|
</span>
|
|
347
359
|
</div>
|
|
360
|
+
<div className="flex items-start gap-2">
|
|
361
|
+
<Check className="mt-0.5 size-3.5 text-emerald-500" />
|
|
362
|
+
<span>
|
|
363
|
+
OpenCode onboarding safely merges{" "}
|
|
364
|
+
<code className="rounded bg-muted px-1 py-0.5 font-mono text-[11px] text-foreground">
|
|
365
|
+
mcp.agent-inspector
|
|
366
|
+
</code>{" "}
|
|
367
|
+
into{" "}
|
|
368
|
+
<code className="rounded bg-muted px-1 py-0.5 font-mono text-[11px] text-foreground">
|
|
369
|
+
opencode.json
|
|
370
|
+
</code>
|
|
371
|
+
, then verify with{" "}
|
|
372
|
+
<code className="rounded bg-muted px-1 py-0.5 font-mono text-[11px] text-foreground">
|
|
373
|
+
opencode mcp list
|
|
374
|
+
</code>
|
|
375
|
+
.
|
|
376
|
+
</span>
|
|
377
|
+
</div>
|
|
348
378
|
<div className="flex items-start gap-2">
|
|
349
379
|
<Check className="mt-0.5 size-3.5 text-emerald-500" />
|
|
350
380
|
<span>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{R as s,j as e}from"./main-Blykwzsn.js";import{P as i}from"./ProxyViewerContainer-BMKBs8Qz.js";function t(){const{sessionId:o}=s.useParams();return e.jsx(i,{initialSessionId:o},o)}export{t as component};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{P as o}from"./ProxyViewerContainer-BMKBs8Qz.js";import"./main-Blykwzsn.js";const r=o;export{r as component};
|