@tonyclaw/agent-inspector 3.0.44 → 3.0.46
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/{nitro.json → backend/nitro.json} +3 -3
- package/.output/backend-public/assets/index-D4LX-sw-.js +11 -0
- package/.output/cli.js +22707 -17099
- package/.output/server/_libs/extend.mjs +4 -8
- package/.output/server/_libs/jszip.mjs +9 -35
- package/.output/server/_libs/modelcontextprotocol__core.mjs +25 -25
- package/.output/server/_libs/modelcontextprotocol__server.mjs +2 -2
- package/.output/server/_libs/react-dom.mjs +2 -3
- package/.output/server/_libs/react.mjs +1 -27
- package/.output/server/_libs/tanstack__react-router.mjs +1 -329
- package/.output/server/_libs/tanstack__router-core.mjs +42 -100
- package/.output/server/_libs/use-sync-external-store.mjs +1 -64
- package/.output/server/_libs/ws.mjs +1 -1
- package/.output/server/_libs/zod.mjs +6 -6
- package/.output/server/_ssr/index.mjs +5 -4
- package/.output/server/_ssr/publicBasePathContext-IH2ilOfu.mjs +176 -0
- package/.output/server/_ssr/{router-DWcUFPR3.mjs → router-D18yUq36.mjs} +7877 -5597
- package/.output/server/_ssr/start-COQu_AgD.mjs +57 -0
- package/.output/server/_tanstack-start-manifest_v-DnbdNeun.mjs +4 -0
- package/.output/server/index.mjs +5 -145
- package/.output/{public/assets/CompareDrawer-DQHjxFO6.js → ui/assets/CompareDrawer-DAUuIJ6G.js} +1 -1
- package/.output/{public/assets/InspectorPet-D1A4505B.js → ui/assets/InspectorPet-BRBVjOWI.js} +1 -1
- package/.output/ui/assets/ProxyViewerContainer-D7Sq0ctc.js +59 -0
- package/.output/{public/assets/ReplayDialog-C5vmbecv.js → ui/assets/ReplayDialog-nDLsjOhs.js} +1 -1
- package/.output/{public/assets/RequestAnatomy-CPGNB8lk.js → ui/assets/RequestAnatomy-zd4BDgL0.js} +1 -1
- package/.output/ui/assets/ResponseView-AdIXGcSn.js +2 -0
- package/.output/ui/assets/StreamingChunkSequence-CesTz8He.js +1 -0
- package/.output/{public/assets/_sessionId-CDhRgzf6.js → ui/assets/_sessionId-BAfzrhSU.js} +1 -1
- package/.output/{public/assets/_sessionId-mw3aA8Bp.js → ui/assets/_sessionId-QnBomgPD.js} +1 -1
- package/.output/ui/assets/favicon-DYEkHSNl.svg +21 -0
- package/.output/{public/assets/index-B2eoeT-Z.js → ui/assets/index-BcsdxBAd.js} +1 -1
- package/.output/ui/assets/index-BvXp42al.css +1 -0
- package/.output/{public/assets/index-CX7_rf7o.js → ui/assets/index-D0rtCN9V.js} +1 -1
- package/.output/ui/assets/index-DHpwr08Z.js +73 -0
- package/.output/{public/assets/index-BfRhTvOd.js → ui/assets/index-dNuk2dsU.js} +1 -1
- package/.output/ui/assets/json-viewer-BvFHglMb.js +1 -0
- package/.output/{public/assets/jszip.min-C9rCFoU3.js → ui/assets/jszip.min-B5Z7gNZB.js} +1 -1
- package/.output/ui/index.html +229 -0
- package/.output/ui/runtime-config.js +2 -0
- package/.output/workers/logFinalizer.worker.js +983 -414
- package/.output/workers/sessionWorkerEntry.js +983 -414
- package/README.md +363 -35
- package/docs/instance-control.openapi.yaml +361 -0
- package/package.json +28 -5
- package/scripts/generate-theme-scales.mjs +3 -3
- package/src/{router.tsx → backend/router.tsx} +3 -15
- package/src/backend/routes/$.ts +26 -0
- package/src/backend/routes/__root.ts +4 -0
- package/src/backend/routes/api/-instances.ts +109 -0
- package/src/{routes → backend/routes}/api/alerts.summary.ts +3 -3
- package/src/{routes → backend/routes}/api/alerts.ts +4 -4
- package/src/{routes → backend/routes}/api/config.paths.ts +1 -1
- package/src/{routes → backend/routes}/api/config.ts +11 -2
- package/src/{routes → backend/routes}/api/ecosystem.packages.$packageId.help.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.packages.$packageId.install.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.packages.$packageId.runner-presets.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.packages.$packageId.upgrade.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.packages.ts +5 -1
- package/src/{routes → backend/routes}/api/ecosystem.recipes.$recipeId.run.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.tasks.$taskId.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.tasks.ts +1 -1
- package/src/{routes → backend/routes}/api/groups.$groupId.evidence.ts +2 -2
- package/src/{routes → backend/routes}/api/groups.$groupId.sessions.ts +2 -2
- package/src/{routes → backend/routes}/api/groups.$groupId.ts +2 -2
- package/src/{routes → backend/routes}/api/groups.ts +2 -2
- package/src/{routes → backend/routes}/api/health.ts +3 -3
- package/src/backend/routes/api/instances.$name.connection.ts +12 -0
- package/src/backend/routes/api/instances.$name.restart.ts +23 -0
- package/src/backend/routes/api/instances.$name.start.ts +18 -0
- package/src/backend/routes/api/instances.$name.stop.ts +23 -0
- package/src/backend/routes/api/instances.$name.ts +12 -0
- package/src/backend/routes/api/instances.ts +16 -0
- package/src/{routes → backend/routes}/api/knowledge.candidates.$candidateId.promote.ts +2 -2
- package/src/{routes → backend/routes}/api/knowledge.candidates.$candidateId.ts +2 -2
- package/src/{routes → backend/routes}/api/knowledge.candidates.ts +1 -1
- package/src/{routes → backend/routes}/api/knowledge.project-context.ts +2 -2
- package/src/{routes → backend/routes}/api/knowledge.search.ts +2 -2
- package/src/{routes → backend/routes}/api/knowledge.sessions.$sessionId.candidates.ts +3 -3
- package/src/{routes → backend/routes}/api/logs.$id.body.ts +6 -6
- package/src/{routes → backend/routes}/api/logs.$id.chunks.ts +5 -4
- package/src/{routes → backend/routes}/api/logs.$id.replay.ts +12 -11
- package/src/{routes → backend/routes}/api/logs.$id.ts +4 -3
- package/src/{routes → backend/routes}/api/logs.import.ts +3 -3
- package/src/{routes → backend/routes}/api/logs.stream.ts +11 -7
- package/src/{routes → backend/routes}/api/logs.ts +17 -9
- package/src/{routes → backend/routes}/api/mcp.ts +1 -1
- package/src/{routes → backend/routes}/api/models.ts +1 -1
- package/src/{routes → backend/routes}/api/pi-agent.ts +2 -2
- package/src/{routes → backend/routes}/api/providers.$providerId.model-metadata.ts +5 -5
- package/src/{routes → backend/routes}/api/providers.$providerId.test.log.ts +7 -7
- package/src/{routes → backend/routes}/api/providers.$providerId.ts +4 -4
- package/src/{routes → backend/routes}/api/providers.export.ts +1 -1
- package/src/{routes → backend/routes}/api/providers.import.ts +3 -3
- package/src/{routes → backend/routes}/api/providers.scan.ts +2 -2
- package/src/{routes → backend/routes}/api/providers.ts +9 -4
- package/src/{routes → backend/routes}/api/runs.$runId.evidence.ts +2 -2
- package/src/{routes → backend/routes}/api/runs.$runId.ts +2 -2
- package/src/{routes → backend/routes}/api/runs.ts +4 -4
- package/src/backend/routes/api/runtime.ts +46 -0
- package/src/{routes → backend/routes}/api/sessions.ts +3 -3
- package/src/{routes → backend/routes}/proxy/$.ts +1 -1
- package/src/{routes → backend/routes}/readyz.ts +1 -1
- package/src/backend/start.ts +10 -0
- package/src/cli/alias.ts +431 -0
- package/src/cli/doctor.ts +32 -9
- package/src/cli/instance.ts +1050 -0
- package/src/cli/instanceArgs.ts +285 -0
- package/src/cli/instanceControl.ts +181 -0
- package/src/cli/instanceModel.ts +267 -0
- package/src/cli/instanceRegistry.ts +731 -0
- package/src/cli/networkHints.ts +27 -14
- package/src/cli/onboard.ts +190 -35
- package/src/cli/onboardTarget.ts +228 -0
- package/src/cli/templates/codex-skill-onboard.ts +109 -31
- package/src/cli/templates/skill-onboard.ts +140 -70
- package/src/cli.ts +338 -77
- package/src/components/ProxyViewer.tsx +20 -10
- package/src/components/ProxyViewerContainer.tsx +12 -11
- package/src/components/pi-agent/PiAgentPanel.tsx +2 -2
- package/src/components/providers/ProviderCard.tsx +1 -1
- package/src/components/providers/ProviderTestResultsView.tsx +1 -1
- package/src/components/providers/SettingsDialog.tsx +160 -140
- package/src/components/proxy-viewer/ApplicationBar.tsx +2 -1
- package/src/components/proxy-viewer/LogEntry.tsx +1 -1
- package/src/components/proxy-viewer/log-formats/index.ts +1 -1
- package/src/contracts/index.ts +5 -0
- package/src/contracts/log.ts +33 -3
- package/src/knowledge/types.ts +3 -2
- package/src/lib/alertContract.ts +2 -2
- package/src/lib/apiClient.ts +30 -7
- package/src/lib/apiFormat.ts +29 -0
- package/src/lib/basePath.ts +31 -7
- package/src/lib/browserRuntimeContract.ts +124 -0
- package/src/lib/browserRuntimeResolver.ts +244 -0
- package/src/{proxy → lib}/claudeCodeStrip.ts +6 -7
- package/src/lib/codingAgentEndpoints.ts +54 -0
- package/src/lib/instanceContract.ts +236 -0
- package/src/lib/managedInstance.ts +104 -0
- package/src/lib/piAgentContract.ts +3 -2
- package/src/lib/publicBasePathContext.ts +137 -0
- package/src/lib/resourceLimits.ts +2 -0
- package/src/lib/runContract.ts +3 -3
- package/src/lib/sessionInfoContract.ts +3 -2
- package/src/mcp/instanceHandlers.ts +150 -0
- package/src/mcp/loopback.ts +16 -5
- package/src/mcp/mode.ts +25 -0
- package/src/mcp/server.ts +274 -39
- package/src/mcp/toolHandlers.ts +2 -2
- package/src/proxy/config.ts +25 -30
- package/src/proxy/dataDir.ts +43 -7
- package/src/proxy/ecosystemTasks.ts +161 -70
- package/src/proxy/formats/registry.ts +6 -21
- package/src/proxy/handler.ts +129 -29
- package/src/proxy/identityProxy.ts +1049 -50
- package/src/proxy/jsonlRecovery.ts +554 -0
- package/src/proxy/logFinalizer.ts +25 -10
- package/src/proxy/logImporter.ts +2 -1
- package/src/proxy/logIndex.ts +191 -95
- package/src/proxy/logger.ts +77 -14
- package/src/proxy/platformCommands.ts +41 -0
- package/src/proxy/privateDataPath.ts +310 -88
- package/src/proxy/rawStreamCapture.ts +194 -13
- package/src/proxy/runtimeAdmission.ts +5 -2
- package/src/proxy/runtimeHealth.ts +14 -1
- package/src/proxy/runtimeShutdown.ts +84 -2
- package/src/proxy/schemas.ts +7 -1
- package/src/proxy/sessionArchive.ts +78 -14
- package/src/proxy/sessionInfo.ts +5 -4
- package/src/proxy/sqliteLogIndex.ts +65 -2
- package/src/proxy/store.ts +141 -34
- package/src/proxy/uiAssetServer.ts +106 -0
- package/src/proxy/upstream.ts +29 -2
- package/src/ui/bootstrap.ts +167 -0
- package/src/ui/index.html +38 -0
- package/src/ui/logsStreamClient.ts +20 -0
- package/src/ui/main.tsx +13 -0
- package/src/ui/public/runtime-config.js +2 -0
- package/src/ui/router.tsx +13 -0
- package/src/ui/routes/__root.tsx +69 -0
- package/src/{routes → ui/routes}/index.tsx +2 -3
- package/src/{routes → ui/routes}/session/$sessionId.tsx +5 -11
- package/src/ui/runtimeDiscovery.ts +50 -0
- package/styles/globals.css +1 -0
- package/.output/public/assets/ProxyViewerContainer-BhpIgfBi.js +0 -126
- package/.output/public/assets/ResponseView-DUfrajCm.js +0 -2
- package/.output/public/assets/StreamingChunkSequence-nbeCQqOz.js +0 -1
- package/.output/public/assets/index-BWjeqxbk.css +0 -1
- package/.output/public/assets/index-C6qZwYlR.js +0 -70
- package/.output/public/assets/json-viewer-BLmF1sOZ.js +0 -1
- package/.output/server/_libs/@radix-ui/react-accessible-icon+[...].mjs +0 -1
- package/.output/server/_libs/@radix-ui/react-dismissable-layer+[...].mjs +0 -344
- package/.output/server/_libs/@radix-ui/react-navigation-menu+[...].mjs +0 -2
- package/.output/server/_libs/@radix-ui/react-one-time-password-field+[...].mjs +0 -2
- package/.output/server/_libs/@radix-ui/react-password-toggle-field+[...].mjs +0 -2
- package/.output/server/_libs/@radix-ui/react-use-callback-ref+[...].mjs +0 -11
- package/.output/server/_libs/@radix-ui/react-use-controllable-state+[...].mjs +0 -69
- package/.output/server/_libs/@radix-ui/react-use-effect-event+[...].mjs +0 -1
- package/.output/server/_libs/@radix-ui/react-use-is-hydrated+[...].mjs +0 -28
- package/.output/server/_libs/@radix-ui/react-use-layout-effect+[...].mjs +0 -6
- package/.output/server/_libs/@radix-ui/react-visually-hidden+[...].mjs +0 -34
- package/.output/server/_libs/aria-hidden.mjs +0 -122
- package/.output/server/_libs/bail.mjs +0 -8
- package/.output/server/_libs/character-entities.mjs +0 -2130
- package/.output/server/_libs/class-variance-authority.mjs +0 -44
- package/.output/server/_libs/clsx.mjs +0 -16
- package/.output/server/_libs/comma-separated-tokens.mjs +0 -10
- package/.output/server/_libs/decode-named-character-reference+[...].mjs +0 -8
- package/.output/server/_libs/dequal.mjs +0 -27
- package/.output/server/_libs/detect-node-es.mjs +0 -1
- package/.output/server/_libs/devlop.mjs +0 -8
- package/.output/server/_libs/diff.mjs +0 -320
- package/.output/server/_libs/estree-util-is-identifier-name.mjs +0 -11
- package/.output/server/_libs/floating-ui__core.mjs +0 -725
- package/.output/server/_libs/floating-ui__dom.mjs +0 -622
- package/.output/server/_libs/floating-ui__react-dom.mjs +0 -292
- package/.output/server/_libs/floating-ui__utils.mjs +0 -320
- package/.output/server/_libs/get-nonce.mjs +0 -9
- package/.output/server/_libs/hast-util-to-jsx-runtime.mjs +0 -388
- package/.output/server/_libs/hast-util-whitespace.mjs +0 -10
- package/.output/server/_libs/html-url-attributes.mjs +0 -26
- package/.output/server/_libs/inline-style-parser.mjs +0 -142
- package/.output/server/_libs/is-plain-obj.mjs +0 -10
- package/.output/server/_libs/lucide-react.mjs +0 -1027
- package/.output/server/_libs/mdast-util-from-markdown.mjs +0 -717
- package/.output/server/_libs/mdast-util-to-hast.mjs +0 -710
- package/.output/server/_libs/mdast-util-to-string.mjs +0 -38
- package/.output/server/_libs/micromark-core-commonmark.mjs +0 -2259
- package/.output/server/_libs/micromark-factory-destination.mjs +0 -94
- package/.output/server/_libs/micromark-factory-label.mjs +0 -63
- package/.output/server/_libs/micromark-factory-space.mjs +0 -24
- package/.output/server/_libs/micromark-factory-title.mjs +0 -65
- package/.output/server/_libs/micromark-factory-whitespace.mjs +0 -22
- package/.output/server/_libs/micromark-util-character.mjs +0 -44
- package/.output/server/_libs/micromark-util-chunked.mjs +0 -36
- package/.output/server/_libs/micromark-util-classify-character+[...].mjs +0 -12
- package/.output/server/_libs/micromark-util-combine-extensions+[...].mjs +0 -41
- package/.output/server/_libs/micromark-util-decode-numeric-character-reference+[...].mjs +0 -19
- package/.output/server/_libs/micromark-util-decode-string.mjs +0 -21
- package/.output/server/_libs/micromark-util-encode.mjs +0 -1
- package/.output/server/_libs/micromark-util-html-tag-name.mjs +0 -69
- package/.output/server/_libs/micromark-util-normalize-identifier+[...].mjs +0 -6
- package/.output/server/_libs/micromark-util-resolve-all.mjs +0 -15
- package/.output/server/_libs/micromark-util-sanitize-uri.mjs +0 -41
- package/.output/server/_libs/micromark-util-subtokenize.mjs +0 -346
- package/.output/server/_libs/micromark.mjs +0 -906
- package/.output/server/_libs/property-information.mjs +0 -1209
- package/.output/server/_libs/radix-ui.mjs +0 -1
- package/.output/server/_libs/radix-ui__number.mjs +0 -6
- package/.output/server/_libs/radix-ui__primitive.mjs +0 -11
- package/.output/server/_libs/radix-ui__react-accordion.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-alert-dialog.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-arrow.mjs +0 -23
- package/.output/server/_libs/radix-ui__react-aspect-ratio.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-avatar.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-checkbox.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-collapsible.mjs +0 -144
- package/.output/server/_libs/radix-ui__react-collection.mjs +0 -69
- package/.output/server/_libs/radix-ui__react-compose-refs.mjs +0 -38
- package/.output/server/_libs/radix-ui__react-context-menu.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-context.mjs +0 -64
- package/.output/server/_libs/radix-ui__react-dialog.mjs +0 -280
- package/.output/server/_libs/radix-ui__react-direction.mjs +0 -9
- package/.output/server/_libs/radix-ui__react-dropdown-menu.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-focus-guards.mjs +0 -39
- package/.output/server/_libs/radix-ui__react-focus-scope.mjs +0 -210
- package/.output/server/_libs/radix-ui__react-form.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-hover-card.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-id.mjs +0 -14
- package/.output/server/_libs/radix-ui__react-label.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-menu.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-menubar.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-popover.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-popper.mjs +0 -340
- package/.output/server/_libs/radix-ui__react-portal.mjs +0 -16
- package/.output/server/_libs/radix-ui__react-presence.mjs +0 -173
- package/.output/server/_libs/radix-ui__react-primitive.mjs +0 -42
- package/.output/server/_libs/radix-ui__react-progress.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-radio-group.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-roving-focus.mjs +0 -235
- package/.output/server/_libs/radix-ui__react-scroll-area.mjs +0 -731
- package/.output/server/_libs/radix-ui__react-select.mjs +0 -1207
- package/.output/server/_libs/radix-ui__react-separator.mjs +0 -28
- package/.output/server/_libs/radix-ui__react-slider.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-slot.mjs +0 -132
- package/.output/server/_libs/radix-ui__react-switch.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-tabs.mjs +0 -194
- package/.output/server/_libs/radix-ui__react-toast.mjs +0 -2
- package/.output/server/_libs/radix-ui__react-toggle-group.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-toggle.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-toolbar.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-tooltip.mjs +0 -498
- package/.output/server/_libs/radix-ui__react-use-previous.mjs +0 -14
- package/.output/server/_libs/radix-ui__react-use-size.mjs +0 -39
- package/.output/server/_libs/react-markdown.mjs +0 -235
- package/.output/server/_libs/react-remove-scroll-bar.mjs +0 -82
- package/.output/server/_libs/react-remove-scroll.mjs +0 -328
- package/.output/server/_libs/react-style-singleton.mjs +0 -69
- package/.output/server/_libs/remark-parse.mjs +0 -19
- package/.output/server/_libs/remark-rehype.mjs +0 -21
- package/.output/server/_libs/space-separated-tokens.mjs +0 -6
- package/.output/server/_libs/style-to-js.mjs +0 -72
- package/.output/server/_libs/style-to-object.mjs +0 -38
- package/.output/server/_libs/swr.mjs +0 -947
- package/.output/server/_libs/tailwind-merge.mjs +0 -3255
- package/.output/server/_libs/tanstack__react-virtual.mjs +0 -130
- package/.output/server/_libs/tanstack__virtual-core.mjs +0 -1319
- package/.output/server/_libs/three.mjs +0 -26016
- package/.output/server/_libs/trim-lines.mjs +0 -41
- package/.output/server/_libs/trough.mjs +0 -85
- package/.output/server/_libs/tslib.mjs +0 -1
- package/.output/server/_libs/ungap__structured-clone.mjs +0 -212
- package/.output/server/_libs/unified.mjs +0 -661
- package/.output/server/_libs/unist-util-is.mjs +0 -100
- package/.output/server/_libs/unist-util-position.mjs +0 -27
- package/.output/server/_libs/unist-util-stringify-position.mjs +0 -27
- package/.output/server/_libs/unist-util-visit-parents.mjs +0 -82
- package/.output/server/_libs/unist-util-visit.mjs +0 -24
- package/.output/server/_libs/use-callback-ref.mjs +0 -66
- package/.output/server/_libs/use-sidecar.mjs +0 -106
- package/.output/server/_libs/vfile-message.mjs +0 -138
- package/.output/server/_libs/vfile.mjs +0 -467
- package/.output/server/_sessionId-E_Dmopc-.mjs +0 -144
- package/.output/server/_sessionId-U54BAqdp.mjs +0 -82
- package/.output/server/_ssr/CompareDrawer-CksatPed.mjs +0 -1058
- package/.output/server/_ssr/InspectorPet-DNc4GQ7z.mjs +0 -936
- package/.output/server/_ssr/ProxyViewerContainer-B02Ey0p_.mjs +0 -17607
- package/.output/server/_ssr/ReplayDialog-DdMvHJF1.mjs +0 -723
- package/.output/server/_ssr/RequestAnatomy--vh2Z8__.mjs +0 -835
- package/.output/server/_ssr/ResponseView-Dhxc-cKC.mjs +0 -755
- package/.output/server/_ssr/StreamingChunkSequence-BG0EQmaD.mjs +0 -272
- package/.output/server/_ssr/index-D0At9nfd.mjs +0 -82
- package/.output/server/_ssr/index-lcfulIXa.mjs +0 -133
- package/.output/server/_ssr/json-viewer-My1J1_5R.mjs +0 -481
- package/.output/server/_ssr/start-HYkvq4Ni.mjs +0 -4
- package/.output/server/_tanstack-start-manifest_v-B2chR8ef.mjs +0 -4
- package/.output/server/node_modules/tslib/modules/index.js +0 -70
- package/.output/server/node_modules/tslib/modules/package.json +0 -3
- package/.output/server/node_modules/tslib/package.json +0 -47
- package/.output/server/node_modules/tslib/tslib.js +0 -484
- package/.output/server/package.json +0 -9
- package/src/routes/__root.tsx +0 -170
- /package/.output/{public → ui}/assets/agent-inspector-58K1_MsC.ico +0 -0
- /package/.output/{public → ui}/assets/alibaba-TTwafVwX.svg +0 -0
- /package/.output/{public → ui}/assets/minimax-BPMzvuL-.jpeg +0 -0
- /package/.output/{public → ui}/assets/qwen-mMn3f5ul.webp +0 -0
- /package/.output/{public → ui}/assets/zhipuai-BPNAnxo-.svg +0 -0
- /package/src/{routes → backend/routes}/livez.ts +0 -0
|
@@ -1,467 +0,0 @@
|
|
|
1
|
-
import path from "node:path";
|
|
2
|
-
import { fileURLToPath } from "node:url";
|
|
3
|
-
import { V as VFileMessage } from "./vfile-message.mjs";
|
|
4
|
-
import process from "node:process";
|
|
5
|
-
function isUrl(fileUrlOrPath) {
|
|
6
|
-
return Boolean(
|
|
7
|
-
fileUrlOrPath !== null && typeof fileUrlOrPath === "object" && "href" in fileUrlOrPath && fileUrlOrPath.href && "protocol" in fileUrlOrPath && fileUrlOrPath.protocol && // @ts-expect-error: indexing is fine.
|
|
8
|
-
fileUrlOrPath.auth === void 0
|
|
9
|
-
);
|
|
10
|
-
}
|
|
11
|
-
const order = (
|
|
12
|
-
/** @type {const} */
|
|
13
|
-
[
|
|
14
|
-
"history",
|
|
15
|
-
"path",
|
|
16
|
-
"basename",
|
|
17
|
-
"stem",
|
|
18
|
-
"extname",
|
|
19
|
-
"dirname"
|
|
20
|
-
]
|
|
21
|
-
);
|
|
22
|
-
class VFile {
|
|
23
|
-
/**
|
|
24
|
-
* Create a new virtual file.
|
|
25
|
-
*
|
|
26
|
-
* `options` is treated as:
|
|
27
|
-
*
|
|
28
|
-
* * `string` or `Uint8Array` — `{value: options}`
|
|
29
|
-
* * `URL` — `{path: options}`
|
|
30
|
-
* * `VFile` — shallow copies its data over to the new file
|
|
31
|
-
* * `object` — all fields are shallow copied over to the new file
|
|
32
|
-
*
|
|
33
|
-
* Path related fields are set in the following order (least specific to
|
|
34
|
-
* most specific): `history`, `path`, `basename`, `stem`, `extname`,
|
|
35
|
-
* `dirname`.
|
|
36
|
-
*
|
|
37
|
-
* You cannot set `dirname` or `extname` without setting either `history`,
|
|
38
|
-
* `path`, `basename`, or `stem` too.
|
|
39
|
-
*
|
|
40
|
-
* @param {Compatible | null | undefined} [value]
|
|
41
|
-
* File value.
|
|
42
|
-
* @returns
|
|
43
|
-
* New instance.
|
|
44
|
-
*/
|
|
45
|
-
constructor(value) {
|
|
46
|
-
let options;
|
|
47
|
-
if (!value) {
|
|
48
|
-
options = {};
|
|
49
|
-
} else if (isUrl(value)) {
|
|
50
|
-
options = { path: value };
|
|
51
|
-
} else if (typeof value === "string" || isUint8Array(value)) {
|
|
52
|
-
options = { value };
|
|
53
|
-
} else {
|
|
54
|
-
options = value;
|
|
55
|
-
}
|
|
56
|
-
this.cwd = "cwd" in options ? "" : process.cwd();
|
|
57
|
-
this.data = {};
|
|
58
|
-
this.history = [];
|
|
59
|
-
this.messages = [];
|
|
60
|
-
this.value;
|
|
61
|
-
this.map;
|
|
62
|
-
this.result;
|
|
63
|
-
this.stored;
|
|
64
|
-
let index = -1;
|
|
65
|
-
while (++index < order.length) {
|
|
66
|
-
const field2 = order[index];
|
|
67
|
-
if (field2 in options && options[field2] !== void 0 && options[field2] !== null) {
|
|
68
|
-
this[field2] = field2 === "history" ? [...options[field2]] : options[field2];
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
let field;
|
|
72
|
-
for (field in options) {
|
|
73
|
-
if (!order.includes(field)) {
|
|
74
|
-
this[field] = options[field];
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
* Get the basename (including extname) (example: `'index.min.js'`).
|
|
80
|
-
*
|
|
81
|
-
* @returns {string | undefined}
|
|
82
|
-
* Basename.
|
|
83
|
-
*/
|
|
84
|
-
get basename() {
|
|
85
|
-
return typeof this.path === "string" ? path.basename(this.path) : void 0;
|
|
86
|
-
}
|
|
87
|
-
/**
|
|
88
|
-
* Set basename (including extname) (`'index.min.js'`).
|
|
89
|
-
*
|
|
90
|
-
* Cannot contain path separators (`'/'` on unix, macOS, and browsers, `'\'`
|
|
91
|
-
* on windows).
|
|
92
|
-
* Cannot be nullified (use `file.path = file.dirname` instead).
|
|
93
|
-
*
|
|
94
|
-
* @param {string} basename
|
|
95
|
-
* Basename.
|
|
96
|
-
* @returns {undefined}
|
|
97
|
-
* Nothing.
|
|
98
|
-
*/
|
|
99
|
-
set basename(basename) {
|
|
100
|
-
assertNonEmpty(basename, "basename");
|
|
101
|
-
assertPart(basename, "basename");
|
|
102
|
-
this.path = path.join(this.dirname || "", basename);
|
|
103
|
-
}
|
|
104
|
-
/**
|
|
105
|
-
* Get the parent path (example: `'~'`).
|
|
106
|
-
*
|
|
107
|
-
* @returns {string | undefined}
|
|
108
|
-
* Dirname.
|
|
109
|
-
*/
|
|
110
|
-
get dirname() {
|
|
111
|
-
return typeof this.path === "string" ? path.dirname(this.path) : void 0;
|
|
112
|
-
}
|
|
113
|
-
/**
|
|
114
|
-
* Set the parent path (example: `'~'`).
|
|
115
|
-
*
|
|
116
|
-
* Cannot be set if there’s no `path` yet.
|
|
117
|
-
*
|
|
118
|
-
* @param {string | undefined} dirname
|
|
119
|
-
* Dirname.
|
|
120
|
-
* @returns {undefined}
|
|
121
|
-
* Nothing.
|
|
122
|
-
*/
|
|
123
|
-
set dirname(dirname) {
|
|
124
|
-
assertPath(this.basename, "dirname");
|
|
125
|
-
this.path = path.join(dirname || "", this.basename);
|
|
126
|
-
}
|
|
127
|
-
/**
|
|
128
|
-
* Get the extname (including dot) (example: `'.js'`).
|
|
129
|
-
*
|
|
130
|
-
* @returns {string | undefined}
|
|
131
|
-
* Extname.
|
|
132
|
-
*/
|
|
133
|
-
get extname() {
|
|
134
|
-
return typeof this.path === "string" ? path.extname(this.path) : void 0;
|
|
135
|
-
}
|
|
136
|
-
/**
|
|
137
|
-
* Set the extname (including dot) (example: `'.js'`).
|
|
138
|
-
*
|
|
139
|
-
* Cannot contain path separators (`'/'` on unix, macOS, and browsers, `'\'`
|
|
140
|
-
* on windows).
|
|
141
|
-
* Cannot be set if there’s no `path` yet.
|
|
142
|
-
*
|
|
143
|
-
* @param {string | undefined} extname
|
|
144
|
-
* Extname.
|
|
145
|
-
* @returns {undefined}
|
|
146
|
-
* Nothing.
|
|
147
|
-
*/
|
|
148
|
-
set extname(extname) {
|
|
149
|
-
assertPart(extname, "extname");
|
|
150
|
-
assertPath(this.dirname, "extname");
|
|
151
|
-
if (extname) {
|
|
152
|
-
if (extname.codePointAt(0) !== 46) {
|
|
153
|
-
throw new Error("`extname` must start with `.`");
|
|
154
|
-
}
|
|
155
|
-
if (extname.includes(".", 1)) {
|
|
156
|
-
throw new Error("`extname` cannot contain multiple dots");
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
this.path = path.join(this.dirname, this.stem + (extname || ""));
|
|
160
|
-
}
|
|
161
|
-
/**
|
|
162
|
-
* Get the full path (example: `'~/index.min.js'`).
|
|
163
|
-
*
|
|
164
|
-
* @returns {string}
|
|
165
|
-
* Path.
|
|
166
|
-
*/
|
|
167
|
-
get path() {
|
|
168
|
-
return this.history[this.history.length - 1];
|
|
169
|
-
}
|
|
170
|
-
/**
|
|
171
|
-
* Set the full path (example: `'~/index.min.js'`).
|
|
172
|
-
*
|
|
173
|
-
* Cannot be nullified.
|
|
174
|
-
* You can set a file URL (a `URL` object with a `file:` protocol) which will
|
|
175
|
-
* be turned into a path with `url.fileURLToPath`.
|
|
176
|
-
*
|
|
177
|
-
* @param {URL | string} path
|
|
178
|
-
* Path.
|
|
179
|
-
* @returns {undefined}
|
|
180
|
-
* Nothing.
|
|
181
|
-
*/
|
|
182
|
-
set path(path2) {
|
|
183
|
-
if (isUrl(path2)) {
|
|
184
|
-
path2 = fileURLToPath(path2);
|
|
185
|
-
}
|
|
186
|
-
assertNonEmpty(path2, "path");
|
|
187
|
-
if (this.path !== path2) {
|
|
188
|
-
this.history.push(path2);
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
/**
|
|
192
|
-
* Get the stem (basename w/o extname) (example: `'index.min'`).
|
|
193
|
-
*
|
|
194
|
-
* @returns {string | undefined}
|
|
195
|
-
* Stem.
|
|
196
|
-
*/
|
|
197
|
-
get stem() {
|
|
198
|
-
return typeof this.path === "string" ? path.basename(this.path, this.extname) : void 0;
|
|
199
|
-
}
|
|
200
|
-
/**
|
|
201
|
-
* Set the stem (basename w/o extname) (example: `'index.min'`).
|
|
202
|
-
*
|
|
203
|
-
* Cannot contain path separators (`'/'` on unix, macOS, and browsers, `'\'`
|
|
204
|
-
* on windows).
|
|
205
|
-
* Cannot be nullified (use `file.path = file.dirname` instead).
|
|
206
|
-
*
|
|
207
|
-
* @param {string} stem
|
|
208
|
-
* Stem.
|
|
209
|
-
* @returns {undefined}
|
|
210
|
-
* Nothing.
|
|
211
|
-
*/
|
|
212
|
-
set stem(stem) {
|
|
213
|
-
assertNonEmpty(stem, "stem");
|
|
214
|
-
assertPart(stem, "stem");
|
|
215
|
-
this.path = path.join(this.dirname || "", stem + (this.extname || ""));
|
|
216
|
-
}
|
|
217
|
-
// Normal prototypal methods.
|
|
218
|
-
/**
|
|
219
|
-
* Create a fatal message for `reason` associated with the file.
|
|
220
|
-
*
|
|
221
|
-
* The `fatal` field of the message is set to `true` (error; file not usable)
|
|
222
|
-
* and the `file` field is set to the current file path.
|
|
223
|
-
* The message is added to the `messages` field on `file`.
|
|
224
|
-
*
|
|
225
|
-
* > 🪦 **Note**: also has obsolete signatures.
|
|
226
|
-
*
|
|
227
|
-
* @overload
|
|
228
|
-
* @param {string} reason
|
|
229
|
-
* @param {MessageOptions | null | undefined} [options]
|
|
230
|
-
* @returns {never}
|
|
231
|
-
*
|
|
232
|
-
* @overload
|
|
233
|
-
* @param {string} reason
|
|
234
|
-
* @param {Node | NodeLike | null | undefined} parent
|
|
235
|
-
* @param {string | null | undefined} [origin]
|
|
236
|
-
* @returns {never}
|
|
237
|
-
*
|
|
238
|
-
* @overload
|
|
239
|
-
* @param {string} reason
|
|
240
|
-
* @param {Point | Position | null | undefined} place
|
|
241
|
-
* @param {string | null | undefined} [origin]
|
|
242
|
-
* @returns {never}
|
|
243
|
-
*
|
|
244
|
-
* @overload
|
|
245
|
-
* @param {string} reason
|
|
246
|
-
* @param {string | null | undefined} [origin]
|
|
247
|
-
* @returns {never}
|
|
248
|
-
*
|
|
249
|
-
* @overload
|
|
250
|
-
* @param {Error | VFileMessage} cause
|
|
251
|
-
* @param {Node | NodeLike | null | undefined} parent
|
|
252
|
-
* @param {string | null | undefined} [origin]
|
|
253
|
-
* @returns {never}
|
|
254
|
-
*
|
|
255
|
-
* @overload
|
|
256
|
-
* @param {Error | VFileMessage} cause
|
|
257
|
-
* @param {Point | Position | null | undefined} place
|
|
258
|
-
* @param {string | null | undefined} [origin]
|
|
259
|
-
* @returns {never}
|
|
260
|
-
*
|
|
261
|
-
* @overload
|
|
262
|
-
* @param {Error | VFileMessage} cause
|
|
263
|
-
* @param {string | null | undefined} [origin]
|
|
264
|
-
* @returns {never}
|
|
265
|
-
*
|
|
266
|
-
* @param {Error | VFileMessage | string} causeOrReason
|
|
267
|
-
* Reason for message, should use markdown.
|
|
268
|
-
* @param {Node | NodeLike | MessageOptions | Point | Position | string | null | undefined} [optionsOrParentOrPlace]
|
|
269
|
-
* Configuration (optional).
|
|
270
|
-
* @param {string | null | undefined} [origin]
|
|
271
|
-
* Place in code where the message originates (example:
|
|
272
|
-
* `'my-package:my-rule'` or `'my-rule'`).
|
|
273
|
-
* @returns {never}
|
|
274
|
-
* Never.
|
|
275
|
-
* @throws {VFileMessage}
|
|
276
|
-
* Message.
|
|
277
|
-
*/
|
|
278
|
-
fail(causeOrReason, optionsOrParentOrPlace, origin) {
|
|
279
|
-
const message = this.message(causeOrReason, optionsOrParentOrPlace, origin);
|
|
280
|
-
message.fatal = true;
|
|
281
|
-
throw message;
|
|
282
|
-
}
|
|
283
|
-
/**
|
|
284
|
-
* Create an info message for `reason` associated with the file.
|
|
285
|
-
*
|
|
286
|
-
* The `fatal` field of the message is set to `undefined` (info; change
|
|
287
|
-
* likely not needed) and the `file` field is set to the current file path.
|
|
288
|
-
* The message is added to the `messages` field on `file`.
|
|
289
|
-
*
|
|
290
|
-
* > 🪦 **Note**: also has obsolete signatures.
|
|
291
|
-
*
|
|
292
|
-
* @overload
|
|
293
|
-
* @param {string} reason
|
|
294
|
-
* @param {MessageOptions | null | undefined} [options]
|
|
295
|
-
* @returns {VFileMessage}
|
|
296
|
-
*
|
|
297
|
-
* @overload
|
|
298
|
-
* @param {string} reason
|
|
299
|
-
* @param {Node | NodeLike | null | undefined} parent
|
|
300
|
-
* @param {string | null | undefined} [origin]
|
|
301
|
-
* @returns {VFileMessage}
|
|
302
|
-
*
|
|
303
|
-
* @overload
|
|
304
|
-
* @param {string} reason
|
|
305
|
-
* @param {Point | Position | null | undefined} place
|
|
306
|
-
* @param {string | null | undefined} [origin]
|
|
307
|
-
* @returns {VFileMessage}
|
|
308
|
-
*
|
|
309
|
-
* @overload
|
|
310
|
-
* @param {string} reason
|
|
311
|
-
* @param {string | null | undefined} [origin]
|
|
312
|
-
* @returns {VFileMessage}
|
|
313
|
-
*
|
|
314
|
-
* @overload
|
|
315
|
-
* @param {Error | VFileMessage} cause
|
|
316
|
-
* @param {Node | NodeLike | null | undefined} parent
|
|
317
|
-
* @param {string | null | undefined} [origin]
|
|
318
|
-
* @returns {VFileMessage}
|
|
319
|
-
*
|
|
320
|
-
* @overload
|
|
321
|
-
* @param {Error | VFileMessage} cause
|
|
322
|
-
* @param {Point | Position | null | undefined} place
|
|
323
|
-
* @param {string | null | undefined} [origin]
|
|
324
|
-
* @returns {VFileMessage}
|
|
325
|
-
*
|
|
326
|
-
* @overload
|
|
327
|
-
* @param {Error | VFileMessage} cause
|
|
328
|
-
* @param {string | null | undefined} [origin]
|
|
329
|
-
* @returns {VFileMessage}
|
|
330
|
-
*
|
|
331
|
-
* @param {Error | VFileMessage | string} causeOrReason
|
|
332
|
-
* Reason for message, should use markdown.
|
|
333
|
-
* @param {Node | NodeLike | MessageOptions | Point | Position | string | null | undefined} [optionsOrParentOrPlace]
|
|
334
|
-
* Configuration (optional).
|
|
335
|
-
* @param {string | null | undefined} [origin]
|
|
336
|
-
* Place in code where the message originates (example:
|
|
337
|
-
* `'my-package:my-rule'` or `'my-rule'`).
|
|
338
|
-
* @returns {VFileMessage}
|
|
339
|
-
* Message.
|
|
340
|
-
*/
|
|
341
|
-
info(causeOrReason, optionsOrParentOrPlace, origin) {
|
|
342
|
-
const message = this.message(causeOrReason, optionsOrParentOrPlace, origin);
|
|
343
|
-
message.fatal = void 0;
|
|
344
|
-
return message;
|
|
345
|
-
}
|
|
346
|
-
/**
|
|
347
|
-
* Create a message for `reason` associated with the file.
|
|
348
|
-
*
|
|
349
|
-
* The `fatal` field of the message is set to `false` (warning; change may be
|
|
350
|
-
* needed) and the `file` field is set to the current file path.
|
|
351
|
-
* The message is added to the `messages` field on `file`.
|
|
352
|
-
*
|
|
353
|
-
* > 🪦 **Note**: also has obsolete signatures.
|
|
354
|
-
*
|
|
355
|
-
* @overload
|
|
356
|
-
* @param {string} reason
|
|
357
|
-
* @param {MessageOptions | null | undefined} [options]
|
|
358
|
-
* @returns {VFileMessage}
|
|
359
|
-
*
|
|
360
|
-
* @overload
|
|
361
|
-
* @param {string} reason
|
|
362
|
-
* @param {Node | NodeLike | null | undefined} parent
|
|
363
|
-
* @param {string | null | undefined} [origin]
|
|
364
|
-
* @returns {VFileMessage}
|
|
365
|
-
*
|
|
366
|
-
* @overload
|
|
367
|
-
* @param {string} reason
|
|
368
|
-
* @param {Point | Position | null | undefined} place
|
|
369
|
-
* @param {string | null | undefined} [origin]
|
|
370
|
-
* @returns {VFileMessage}
|
|
371
|
-
*
|
|
372
|
-
* @overload
|
|
373
|
-
* @param {string} reason
|
|
374
|
-
* @param {string | null | undefined} [origin]
|
|
375
|
-
* @returns {VFileMessage}
|
|
376
|
-
*
|
|
377
|
-
* @overload
|
|
378
|
-
* @param {Error | VFileMessage} cause
|
|
379
|
-
* @param {Node | NodeLike | null | undefined} parent
|
|
380
|
-
* @param {string | null | undefined} [origin]
|
|
381
|
-
* @returns {VFileMessage}
|
|
382
|
-
*
|
|
383
|
-
* @overload
|
|
384
|
-
* @param {Error | VFileMessage} cause
|
|
385
|
-
* @param {Point | Position | null | undefined} place
|
|
386
|
-
* @param {string | null | undefined} [origin]
|
|
387
|
-
* @returns {VFileMessage}
|
|
388
|
-
*
|
|
389
|
-
* @overload
|
|
390
|
-
* @param {Error | VFileMessage} cause
|
|
391
|
-
* @param {string | null | undefined} [origin]
|
|
392
|
-
* @returns {VFileMessage}
|
|
393
|
-
*
|
|
394
|
-
* @param {Error | VFileMessage | string} causeOrReason
|
|
395
|
-
* Reason for message, should use markdown.
|
|
396
|
-
* @param {Node | NodeLike | MessageOptions | Point | Position | string | null | undefined} [optionsOrParentOrPlace]
|
|
397
|
-
* Configuration (optional).
|
|
398
|
-
* @param {string | null | undefined} [origin]
|
|
399
|
-
* Place in code where the message originates (example:
|
|
400
|
-
* `'my-package:my-rule'` or `'my-rule'`).
|
|
401
|
-
* @returns {VFileMessage}
|
|
402
|
-
* Message.
|
|
403
|
-
*/
|
|
404
|
-
message(causeOrReason, optionsOrParentOrPlace, origin) {
|
|
405
|
-
const message = new VFileMessage(
|
|
406
|
-
// @ts-expect-error: the overloads are fine.
|
|
407
|
-
causeOrReason,
|
|
408
|
-
optionsOrParentOrPlace,
|
|
409
|
-
origin
|
|
410
|
-
);
|
|
411
|
-
if (this.path) {
|
|
412
|
-
message.name = this.path + ":" + message.name;
|
|
413
|
-
message.file = this.path;
|
|
414
|
-
}
|
|
415
|
-
message.fatal = false;
|
|
416
|
-
this.messages.push(message);
|
|
417
|
-
return message;
|
|
418
|
-
}
|
|
419
|
-
/**
|
|
420
|
-
* Serialize the file.
|
|
421
|
-
*
|
|
422
|
-
* > **Note**: which encodings are supported depends on the engine.
|
|
423
|
-
* > For info on Node.js, see:
|
|
424
|
-
* > <https://nodejs.org/api/util.html#whatwg-supported-encodings>.
|
|
425
|
-
*
|
|
426
|
-
* @param {string | null | undefined} [encoding='utf8']
|
|
427
|
-
* Character encoding to understand `value` as when it’s a `Uint8Array`
|
|
428
|
-
* (default: `'utf-8'`).
|
|
429
|
-
* @returns {string}
|
|
430
|
-
* Serialized file.
|
|
431
|
-
*/
|
|
432
|
-
toString(encoding) {
|
|
433
|
-
if (this.value === void 0) {
|
|
434
|
-
return "";
|
|
435
|
-
}
|
|
436
|
-
if (typeof this.value === "string") {
|
|
437
|
-
return this.value;
|
|
438
|
-
}
|
|
439
|
-
const decoder = new TextDecoder(encoding || void 0);
|
|
440
|
-
return decoder.decode(this.value);
|
|
441
|
-
}
|
|
442
|
-
}
|
|
443
|
-
function assertPart(part, name) {
|
|
444
|
-
if (part && part.includes(path.sep)) {
|
|
445
|
-
throw new Error(
|
|
446
|
-
"`" + name + "` cannot be a path: did not expect `" + path.sep + "`"
|
|
447
|
-
);
|
|
448
|
-
}
|
|
449
|
-
}
|
|
450
|
-
function assertNonEmpty(part, name) {
|
|
451
|
-
if (!part) {
|
|
452
|
-
throw new Error("`" + name + "` cannot be empty");
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
function assertPath(path2, name) {
|
|
456
|
-
if (!path2) {
|
|
457
|
-
throw new Error("Setting `" + name + "` requires `path` to be set too");
|
|
458
|
-
}
|
|
459
|
-
}
|
|
460
|
-
function isUint8Array(value) {
|
|
461
|
-
return Boolean(
|
|
462
|
-
value && typeof value === "object" && "byteLength" in value && "byteOffset" in value
|
|
463
|
-
);
|
|
464
|
-
}
|
|
465
|
-
export {
|
|
466
|
-
VFile as V
|
|
467
|
-
};
|
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
import { j as jsxRuntimeExports, r as reactExports } from "./_libs/react.mjs";
|
|
2
|
-
import { P as ProxyViewerContainer } from "./_ssr/ProxyViewerContainer-B02Ey0p_.mjs";
|
|
3
|
-
import { R as Route$K } from "./_ssr/router-DWcUFPR3.mjs";
|
|
4
|
-
import "node:crypto";
|
|
5
|
-
import "node:path";
|
|
6
|
-
import "node:fs";
|
|
7
|
-
import "node:child_process";
|
|
8
|
-
import "node:buffer";
|
|
9
|
-
import "node:url";
|
|
10
|
-
import "crypto";
|
|
11
|
-
import "node:util";
|
|
12
|
-
import "node:net";
|
|
13
|
-
import "./_libs/modelcontextprotocol__server.mjs";
|
|
14
|
-
import "./_libs/jszip.mjs";
|
|
15
|
-
import "node:os";
|
|
16
|
-
import "./_libs/swr.mjs";
|
|
17
|
-
import "./_libs/use-sync-external-store.mjs";
|
|
18
|
-
import "./_libs/dequal.mjs";
|
|
19
|
-
import "./_libs/tanstack__react-virtual.mjs";
|
|
20
|
-
import "./_libs/react-dom.mjs";
|
|
21
|
-
import "util";
|
|
22
|
-
import "async_hooks";
|
|
23
|
-
import "stream";
|
|
24
|
-
import "./_libs/tanstack__virtual-core.mjs";
|
|
25
|
-
import "./_libs/class-variance-authority.mjs";
|
|
26
|
-
import "./_libs/clsx.mjs";
|
|
27
|
-
import "./_libs/diff.mjs";
|
|
28
|
-
import "./_libs/lucide-react.mjs";
|
|
29
|
-
import "./_libs/zod.mjs";
|
|
30
|
-
import "./_libs/radix-ui__react-dialog.mjs";
|
|
31
|
-
import "./_libs/radix-ui__primitive.mjs";
|
|
32
|
-
import "./_libs/radix-ui__react-compose-refs.mjs";
|
|
33
|
-
import "./_libs/radix-ui__react-context.mjs";
|
|
34
|
-
import "./_libs/radix-ui__react-id.mjs";
|
|
35
|
-
import "./_libs/@radix-ui/react-use-layout-effect+[...].mjs";
|
|
36
|
-
import "./_libs/@radix-ui/react-use-controllable-state+[...].mjs";
|
|
37
|
-
import "./_libs/@radix-ui/react-dismissable-layer+[...].mjs";
|
|
38
|
-
import "./_libs/radix-ui__react-primitive.mjs";
|
|
39
|
-
import "./_libs/radix-ui__react-slot.mjs";
|
|
40
|
-
import "./_libs/@radix-ui/react-use-callback-ref+[...].mjs";
|
|
41
|
-
import "./_libs/radix-ui__react-focus-scope.mjs";
|
|
42
|
-
import "./_libs/radix-ui__react-portal.mjs";
|
|
43
|
-
import "./_libs/radix-ui__react-presence.mjs";
|
|
44
|
-
import "./_libs/radix-ui__react-focus-guards.mjs";
|
|
45
|
-
import "./_libs/react-remove-scroll.mjs";
|
|
46
|
-
import "tslib";
|
|
47
|
-
import "./_libs/react-remove-scroll-bar.mjs";
|
|
48
|
-
import "./_libs/react-style-singleton.mjs";
|
|
49
|
-
import "./_libs/get-nonce.mjs";
|
|
50
|
-
import "./_libs/use-sidecar.mjs";
|
|
51
|
-
import "./_libs/use-callback-ref.mjs";
|
|
52
|
-
import "./_libs/aria-hidden.mjs";
|
|
53
|
-
import "./_libs/radix-ui__react-tabs.mjs";
|
|
54
|
-
import "./_libs/radix-ui__react-roving-focus.mjs";
|
|
55
|
-
import "./_libs/radix-ui__react-collection.mjs";
|
|
56
|
-
import "./_libs/radix-ui__react-direction.mjs";
|
|
57
|
-
import "./_libs/@radix-ui/react-use-is-hydrated+[...].mjs";
|
|
58
|
-
import "./_libs/radix-ui__react-select.mjs";
|
|
59
|
-
import "./_libs/radix-ui__number.mjs";
|
|
60
|
-
import "./_libs/radix-ui__react-popper.mjs";
|
|
61
|
-
import "./_libs/floating-ui__react-dom.mjs";
|
|
62
|
-
import "./_libs/floating-ui__dom.mjs";
|
|
63
|
-
import "./_libs/floating-ui__core.mjs";
|
|
64
|
-
import "./_libs/floating-ui__utils.mjs";
|
|
65
|
-
import "./_libs/radix-ui__react-arrow.mjs";
|
|
66
|
-
import "./_libs/radix-ui__react-use-size.mjs";
|
|
67
|
-
import "./_libs/radix-ui__react-use-previous.mjs";
|
|
68
|
-
import "./_libs/@radix-ui/react-visually-hidden+[...].mjs";
|
|
69
|
-
import "./_libs/radix-ui__react-tooltip.mjs";
|
|
70
|
-
import "./_libs/radix-ui__react-collapsible.mjs";
|
|
71
|
-
import "./_libs/radix-ui__react-scroll-area.mjs";
|
|
72
|
-
import "./_libs/tanstack__react-router.mjs";
|
|
73
|
-
import "./_libs/tanstack__router-core.mjs";
|
|
74
|
-
import "./_libs/cookie-es.mjs";
|
|
75
|
-
import "./_libs/seroval.mjs";
|
|
76
|
-
import "./_libs/seroval-plugins.mjs";
|
|
77
|
-
import "node:stream";
|
|
78
|
-
import "./_libs/tanstack__history.mjs";
|
|
79
|
-
import "node:stream/web";
|
|
80
|
-
import "./_libs/isbot.mjs";
|
|
81
|
-
import "./_libs/tailwind-merge.mjs";
|
|
82
|
-
import "node:fs/promises";
|
|
83
|
-
import "node:worker_threads";
|
|
84
|
-
import "node:readline";
|
|
85
|
-
import "./_libs/conf.mjs";
|
|
86
|
-
import "node:process";
|
|
87
|
-
import "node:assert";
|
|
88
|
-
import "./_libs/dot-prop.mjs";
|
|
89
|
-
import "./_libs/env-paths.mjs";
|
|
90
|
-
import "./_libs/atomically.mjs";
|
|
91
|
-
import "node:events";
|
|
92
|
-
import "./_libs/stubborn-fs.mjs";
|
|
93
|
-
import "./_libs/stubborn-utils.mjs";
|
|
94
|
-
import "./_libs/when-exit.mjs";
|
|
95
|
-
import "./_libs/ajv.mjs";
|
|
96
|
-
import "./_libs/fast-deep-equal.mjs";
|
|
97
|
-
import "./_libs/json-schema-traverse.mjs";
|
|
98
|
-
import "./_libs/fast-uri.mjs";
|
|
99
|
-
import "./_libs/ajv-formats.mjs";
|
|
100
|
-
import "./_libs/debounce-fn.mjs";
|
|
101
|
-
import "./_libs/mimic-function.mjs";
|
|
102
|
-
import "./_libs/semver.mjs";
|
|
103
|
-
import "./_libs/uint8array-extras.mjs";
|
|
104
|
-
import "node:dns/promises";
|
|
105
|
-
import "node:assert/strict";
|
|
106
|
-
import "./_libs/modelcontextprotocol__core.mjs";
|
|
107
|
-
import "./_libs/readable-stream.mjs";
|
|
108
|
-
import "events";
|
|
109
|
-
import "node:string_decoder";
|
|
110
|
-
import "./_libs/process-nextick-args.mjs";
|
|
111
|
-
import "./_libs/isarray.mjs";
|
|
112
|
-
import "./_libs/safe-buffer.mjs";
|
|
113
|
-
import "buffer";
|
|
114
|
-
import "./_libs/core-util-is.mjs";
|
|
115
|
-
import "./_libs/inherits.mjs";
|
|
116
|
-
import "./_libs/util-deprecate.mjs";
|
|
117
|
-
import "./_libs/lie.mjs";
|
|
118
|
-
import "./_libs/immediate.mjs";
|
|
119
|
-
import "./_libs/setimmediate.mjs";
|
|
120
|
-
import "./_libs/pako.mjs";
|
|
121
|
-
function SessionViewerRoute() {
|
|
122
|
-
const {
|
|
123
|
-
sessionId
|
|
124
|
-
} = Route$K.useParams();
|
|
125
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx(ClientOnlySessionViewer, { sessionId });
|
|
126
|
-
}
|
|
127
|
-
function ClientOnlySessionViewer({
|
|
128
|
-
sessionId
|
|
129
|
-
}) {
|
|
130
|
-
const [mounted, setMounted] = reactExports.useState(false);
|
|
131
|
-
reactExports.useEffect(() => {
|
|
132
|
-
setMounted(true);
|
|
133
|
-
}, []);
|
|
134
|
-
if (!mounted) {
|
|
135
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx("main", { className: "min-h-screen bg-background text-foreground", children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "mx-auto flex min-h-screen w-full max-w-2xl flex-col justify-center px-6 py-16 text-center", children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "border border-border bg-card shadow-sm rounded-[8px] px-4 py-8", children: [
|
|
136
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("p", { className: "text-sm font-medium text-muted-foreground", children: "Loading session data..." }),
|
|
137
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("p", { className: "mt-3 inline-block max-w-full rounded bg-muted px-3 py-1 font-mono text-xs break-all text-muted-foreground", children: sessionId })
|
|
138
|
-
] }) }) });
|
|
139
|
-
}
|
|
140
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx(ProxyViewerContainer, { initialSessionId: sessionId }, sessionId);
|
|
141
|
-
}
|
|
142
|
-
export {
|
|
143
|
-
SessionViewerRoute as component
|
|
144
|
-
};
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import { j as jsxRuntimeExports } from "./_libs/react.mjs";
|
|
2
|
-
import { S as SafeRouteError } from "./_ssr/router-DWcUFPR3.mjs";
|
|
3
|
-
import "node:crypto";
|
|
4
|
-
import "node:path";
|
|
5
|
-
import "node:fs";
|
|
6
|
-
import "node:child_process";
|
|
7
|
-
import "node:buffer";
|
|
8
|
-
import "node:url";
|
|
9
|
-
import "crypto";
|
|
10
|
-
import "node:util";
|
|
11
|
-
import "node:net";
|
|
12
|
-
import "./_libs/modelcontextprotocol__server.mjs";
|
|
13
|
-
import "./_libs/jszip.mjs";
|
|
14
|
-
import "node:os";
|
|
15
|
-
import "./_libs/tanstack__react-router.mjs";
|
|
16
|
-
import "./_libs/tanstack__router-core.mjs";
|
|
17
|
-
import "./_libs/cookie-es.mjs";
|
|
18
|
-
import "./_libs/seroval.mjs";
|
|
19
|
-
import "./_libs/seroval-plugins.mjs";
|
|
20
|
-
import "node:stream";
|
|
21
|
-
import "./_libs/tanstack__history.mjs";
|
|
22
|
-
import "node:stream/web";
|
|
23
|
-
import "./_libs/react-dom.mjs";
|
|
24
|
-
import "util";
|
|
25
|
-
import "async_hooks";
|
|
26
|
-
import "stream";
|
|
27
|
-
import "./_libs/isbot.mjs";
|
|
28
|
-
import "./_libs/swr.mjs";
|
|
29
|
-
import "./_libs/use-sync-external-store.mjs";
|
|
30
|
-
import "./_libs/dequal.mjs";
|
|
31
|
-
import "./_libs/class-variance-authority.mjs";
|
|
32
|
-
import "./_libs/clsx.mjs";
|
|
33
|
-
import "./_libs/tailwind-merge.mjs";
|
|
34
|
-
import "node:fs/promises";
|
|
35
|
-
import "node:worker_threads";
|
|
36
|
-
import "node:readline";
|
|
37
|
-
import "./_libs/conf.mjs";
|
|
38
|
-
import "node:process";
|
|
39
|
-
import "node:assert";
|
|
40
|
-
import "./_libs/dot-prop.mjs";
|
|
41
|
-
import "./_libs/env-paths.mjs";
|
|
42
|
-
import "./_libs/atomically.mjs";
|
|
43
|
-
import "node:events";
|
|
44
|
-
import "./_libs/stubborn-fs.mjs";
|
|
45
|
-
import "./_libs/stubborn-utils.mjs";
|
|
46
|
-
import "./_libs/when-exit.mjs";
|
|
47
|
-
import "./_libs/ajv.mjs";
|
|
48
|
-
import "./_libs/fast-deep-equal.mjs";
|
|
49
|
-
import "./_libs/json-schema-traverse.mjs";
|
|
50
|
-
import "./_libs/fast-uri.mjs";
|
|
51
|
-
import "./_libs/ajv-formats.mjs";
|
|
52
|
-
import "./_libs/debounce-fn.mjs";
|
|
53
|
-
import "./_libs/mimic-function.mjs";
|
|
54
|
-
import "./_libs/semver.mjs";
|
|
55
|
-
import "./_libs/uint8array-extras.mjs";
|
|
56
|
-
import "node:dns/promises";
|
|
57
|
-
import "node:assert/strict";
|
|
58
|
-
import "./_libs/zod.mjs";
|
|
59
|
-
import "./_libs/modelcontextprotocol__core.mjs";
|
|
60
|
-
import "./_libs/readable-stream.mjs";
|
|
61
|
-
import "events";
|
|
62
|
-
import "node:string_decoder";
|
|
63
|
-
import "./_libs/process-nextick-args.mjs";
|
|
64
|
-
import "./_libs/isarray.mjs";
|
|
65
|
-
import "./_libs/safe-buffer.mjs";
|
|
66
|
-
import "buffer";
|
|
67
|
-
import "./_libs/core-util-is.mjs";
|
|
68
|
-
import "./_libs/inherits.mjs";
|
|
69
|
-
import "./_libs/util-deprecate.mjs";
|
|
70
|
-
import "./_libs/lie.mjs";
|
|
71
|
-
import "./_libs/immediate.mjs";
|
|
72
|
-
import "./_libs/setimmediate.mjs";
|
|
73
|
-
import "./_libs/pako.mjs";
|
|
74
|
-
function SessionRouteError({
|
|
75
|
-
error,
|
|
76
|
-
reset
|
|
77
|
-
}) {
|
|
78
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx(SafeRouteError, { error, reset, scope: "session-route" });
|
|
79
|
-
}
|
|
80
|
-
export {
|
|
81
|
-
SessionRouteError as errorComponent
|
|
82
|
-
};
|