agentworkshop 0.2.1
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/.AgentWorkShop/prompts/host-tools.json +631 -0
- package/.AgentWorkShop/prompts/lead-supervise.md +42 -0
- package/.AgentWorkShop/prompts/mode-goal.md +26 -0
- package/.AgentWorkShop/prompts/mode-loop.md +10 -0
- package/.AgentWorkShop/prompts/mode-pipeline.md +16 -0
- package/.AgentWorkShop/prompts/peer-lead-roster.md +3 -0
- package/.AgentWorkShop/prompts/peer-message.md +14 -0
- package/.AgentWorkShop/prompts/peer-reply-optional.md +2 -0
- package/.AgentWorkShop/prompts/peer-reply-required.md +8 -0
- package/.AgentWorkShop/prompts/scenario-default.md +11 -0
- package/.AgentWorkShop/prompts/system-manual.md +18 -0
- package/.AgentWorkShop/prompts/team-roster.md +9 -0
- package/.AgentWorkShop/prompts/worker-workflow.md +19 -0
- package/.env.example +34 -0
- package/README-zh.md +424 -0
- package/README.md +424 -0
- package/app/.mimosa/hook-state/sess_05189059-e42d-4188-8911-4f7baabe009b.json +1 -0
- package/app/.mimosa/hook-state/sess_05189059-e42d-4188-8911-4f7baabe009b.mtg0vz68-49792-75b0709555.baseline/1459e6269990a5d229b9228c8b2f62ffaa7d350068380ae8b875fee0db45cca6.source +180 -0
- package/app/.mimosa/hook-state/sess_05189059-e42d-4188-8911-4f7baabe009b.mtg0vz68-49792-75b0709555.baseline/c2991e909c70c5c12b90a407c7adcf63384c51668a2b334e6e047fa675c268fe.source +305 -0
- package/app/.mimosa/hook-state/sess_05189059-e42d-4188-8911-4f7baabe009b.mtg0vz68-49792-75b0709555.baseline/e09129039d1e27e3fac24becc9bdafd2d1a7c8049bff24173df007be865f0165.source +264 -0
- package/app/.mimosa/hook-status/sess_05189059-e42d-4188-8911-4f7baabe009b-28ef7c75ea.json +14 -0
- package/app/app.vue +139 -0
- package/app/assets/css/main.css +1257 -0
- package/app/components/AppHeader.vue +675 -0
- package/app/components/AppSidebar.vue +286 -0
- package/app/components/AwChart.vue +44 -0
- package/app/components/AwLogo.vue +75 -0
- package/app/components/workshop/A2aRpcDebugger.vue +237 -0
- package/app/components/workshop/AgentInspectorDrawer.vue +424 -0
- package/app/components/workshop/AgentLanesView.vue +947 -0
- package/app/components/workshop/ArtifactCard.vue +120 -0
- package/app/components/workshop/AssetLibrary.vue +450 -0
- package/app/components/workshop/ChannelSessionList.vue +593 -0
- package/app/components/workshop/CommandPalette.vue +270 -0
- package/app/components/workshop/Composer.vue +731 -0
- package/app/components/workshop/DeviceTwinPanel.vue +607 -0
- package/app/components/workshop/EventBlock.vue +602 -0
- package/app/components/workshop/FileSelectorModal.vue +188 -0
- package/app/components/workshop/InspectorPanel.vue +265 -0
- package/app/components/workshop/LiveAgentBar.vue +362 -0
- package/app/components/workshop/MemoryPanel.vue +364 -0
- package/app/components/workshop/MentionHoverCard.vue +155 -0
- package/app/components/workshop/MultiChannelView.vue +189 -0
- package/app/components/workshop/PaneSplitter.vue +142 -0
- package/app/components/workshop/StatsPanel.vue +168 -0
- package/app/components/workshop/TaskBoardView.vue +636 -0
- package/app/components/workshop/TaskInspectorDrawer.vue +390 -0
- package/app/components/workshop/TranscriptTimeline.vue +545 -0
- package/app/components/workshop/blocks/ClusterArtifact.vue +77 -0
- package/app/components/workshop/blocks/ClusterError.vue +85 -0
- package/app/components/workshop/blocks/ClusterLife.vue +87 -0
- package/app/components/workshop/blocks/ClusterMember.vue +93 -0
- package/app/components/workshop/blocks/ClusterMemory.vue +84 -0
- package/app/components/workshop/blocks/ClusterOther.vue +67 -0
- package/app/components/workshop/blocks/ClusterRoute.vue +359 -0
- package/app/components/workshop/blocks/ClusterStatus.vue +147 -0
- package/app/components/workshop/blocks/ClusterStream.vue +325 -0
- package/app/components/workshop/blocks/ClusterTask.vue +151 -0
- package/app/components/workshop/blocks/ClusterTool.vue +158 -0
- package/app/components/workshop/lanes/LaneBlocks.vue +149 -0
- package/app/components/workshop/terminal/OmpTerminalPanel.vue +1010 -0
- package/app/components/workshop/town/ModelPreview3D.vue +276 -0
- package/app/components/workshop/town/TownScene.ts +1355 -0
- package/app/components/workshop/town/TownScene3D.ts +4533 -0
- package/app/components/workshop/town/TownView.vue +7071 -0
- package/app/composables/useCodeCopy.ts +30 -0
- package/app/composables/useHttp.ts +8 -0
- package/app/composables/useRouteMeta.ts +50 -0
- package/app/composables/useSiteConfig.ts +21 -0
- package/app/composables/workshop/apiClient.ts +95 -0
- package/app/composables/workshop/useCharacterAssets.ts +292 -0
- package/app/composables/workshop/useClusteredBlocks.ts +150 -0
- package/app/composables/workshop/useComposerBus.ts +16 -0
- package/app/composables/workshop/useDaqStream.ts +379 -0
- package/app/composables/workshop/useDcwStream.ts +300 -0
- package/app/composables/workshop/useDeviceTwins.ts +147 -0
- package/app/composables/workshop/useEventBlocks.ts +662 -0
- package/app/composables/workshop/useLocalTime.ts +33 -0
- package/app/composables/workshop/useOpsLog.ts +164 -0
- package/app/composables/workshop/useSceneLayouts.ts +166 -0
- package/app/composables/workshop/useTownBus.ts +47 -0
- package/app/composables/workshop/useVisibleInterval.ts +42 -0
- package/app/composables/workshop/useWorkshopApi.ts +224 -0
- package/app/composables/workshop/useWorkshopWs.ts +113 -0
- package/app/config/index.ts +66 -0
- package/app/config/schema.ts +68 -0
- package/app/error.vue +76 -0
- package/app/layouts/default.vue +100 -0
- package/app/layouts/town.vue +16 -0
- package/app/pages/daq/[id].vue +796 -0
- package/app/pages/daq/index.vue +2577 -0
- package/app/pages/dcw/[id].vue +2259 -0
- package/app/pages/dcw/index.vue +1079 -0
- package/app/pages/index.vue +830 -0
- package/app/pages/logs/index.vue +621 -0
- package/app/pages/monitor.vue +665 -0
- package/app/pages/settings.vue +757 -0
- package/app/pages/tokens.vue +610 -0
- package/app/pages/town.vue +145 -0
- package/app/pages/users.vue +257 -0
- package/app/pages/workshop/agents.vue +382 -0
- package/app/pages/workshop/channel-templates.vue +456 -0
- package/app/pages/workshop/index.vue +604 -0
- package/app/pages/workshop/teams.vue +448 -0
- package/app/pages/workshop/w/[wsId].vue +516 -0
- package/app/plugins/http.ts +71 -0
- package/app/plugins/locale-restore.client.ts +13 -0
- package/app/plugins/runtime-config.client.ts +65 -0
- package/app/plugins/session-restore.client.ts +24 -0
- package/app/plugins/theme.client.ts +15 -0
- package/app/stores/app.ts +32 -0
- package/app/stores/route-trail.ts +45 -0
- package/app/stores/runtime-config.ts +212 -0
- package/app/stores/workshop/connection.ts +184 -0
- package/app/stores/workshop/entities.ts +350 -0
- package/app/stores/workshop/events.ts +292 -0
- package/app/stores/workshop/user.ts +176 -0
- package/app/stores/workshop/workspaces.ts +133 -0
- package/bin/aw.mjs +13 -0
- package/cli/aw.mjs +184 -0
- package/cli/commands/build.mjs +33 -0
- package/cli/commands/config.mjs +157 -0
- package/cli/commands/dev.mjs +74 -0
- package/cli/commands/doctor.mjs +120 -0
- package/cli/commands/home.mjs +75 -0
- package/cli/commands/init.mjs +150 -0
- package/cli/commands/register.mjs +123 -0
- package/cli/commands/start.mjs +106 -0
- package/cli/commands/status.mjs +67 -0
- package/cli/commands/update.mjs +116 -0
- package/cli/commands/version.mjs +32 -0
- package/cli/core/args.mjs +95 -0
- package/cli/core/context.mjs +264 -0
- package/cli/core/errors.mjs +18 -0
- package/cli/core/help.mjs +68 -0
- package/cli/core/logger.mjs +40 -0
- package/cli/core/registry.mjs +111 -0
- package/config.yml +70 -0
- package/docker-compose.yml +34 -0
- package/docs/cli.md +220 -0
- package/i18n/dicts/_en.json +1097 -0
- package/i18n/dicts/_en2.json +300 -0
- package/i18n/dicts/_en3.json +102 -0
- package/i18n/dicts/_en4.json +115 -0
- package/i18n/dicts/_en5.json +33 -0
- package/i18n/dicts/a2aRpcDebugger.json +10 -0
- package/i18n/dicts/agentInspectorDrawer.json +25 -0
- package/i18n/dicts/agentLanesView.json +57 -0
- package/i18n/dicts/agents.json +27 -0
- package/i18n/dicts/appHeader.json +7 -0
- package/i18n/dicts/appSidebar.json +1 -0
- package/i18n/dicts/artifactCard.json +6 -0
- package/i18n/dicts/assetLibrary.json +18 -0
- package/i18n/dicts/awChart.json +1 -0
- package/i18n/dicts/awLogo.json +1 -0
- package/i18n/dicts/channelSessionList.json +45 -0
- package/i18n/dicts/clusterArtifact.json +4 -0
- package/i18n/dicts/clusterError.json +3 -0
- package/i18n/dicts/clusterLife.json +5 -0
- package/i18n/dicts/clusterMember.json +3 -0
- package/i18n/dicts/clusterMemory.json +3 -0
- package/i18n/dicts/clusterOther.json +3 -0
- package/i18n/dicts/clusterRoute.json +15 -0
- package/i18n/dicts/clusterStatus.json +3 -0
- package/i18n/dicts/clusterStream.json +3 -0
- package/i18n/dicts/clusterTask.json +10 -0
- package/i18n/dicts/clusterTool.json +3 -0
- package/i18n/dicts/commandPalette.json +16 -0
- package/i18n/dicts/composer.json +38 -0
- package/i18n/dicts/ctpl.json +32 -0
- package/i18n/dicts/daq.json +157 -0
- package/i18n/dicts/daqDetail.json +55 -0
- package/i18n/dicts/dcw.json +68 -0
- package/i18n/dicts/dcwDetail.json +199 -0
- package/i18n/dicts/deviceTwinPanel.json +12 -0
- package/i18n/dicts/eventBlock.json +8 -0
- package/i18n/dicts/fileSelectorModal.json +6 -0
- package/i18n/dicts/inspectorPanel.json +12 -0
- package/i18n/dicts/laneBlocks.json +6 -0
- package/i18n/dicts/liveAgentBar.json +8 -0
- package/i18n/dicts/logs.json +39 -0
- package/i18n/dicts/memoryPanel.json +20 -0
- package/i18n/dicts/mentionHoverCard.json +4 -0
- package/i18n/dicts/modelPreview3D.json +1 -0
- package/i18n/dicts/monitor.json +5 -0
- package/i18n/dicts/multiChannelView.json +13 -0
- package/i18n/dicts/ompTerminalPanel.json +7 -0
- package/i18n/dicts/paneSplitter.json +3 -0
- package/i18n/dicts/settings.json +1 -0
- package/i18n/dicts/statsPanel.json +6 -0
- package/i18n/dicts/taskBoardView.json +22 -0
- package/i18n/dicts/taskInspectorDrawer.json +19 -0
- package/i18n/dicts/teams.json +33 -0
- package/i18n/dicts/tokens.json +30 -0
- package/i18n/dicts/town.json +7 -0
- package/i18n/dicts/townView.json +209 -0
- package/i18n/dicts/transcriptTimeline.json +31 -0
- package/i18n/dicts/users.json +15 -0
- package/i18n/dicts/wsHome.json +33 -0
- package/i18n/dicts/wsView.json +15 -0
- package/i18n/locales/en.ts +1737 -0
- package/i18n/locales/zh-CN.ts +1736 -0
- package/nuxt.config.ts +209 -0
- package/package.json +123 -0
- package/public/assets/game/character/bot.png +0 -0
- package/public/assets/game/character/device-3d.glb +0 -0
- package/public/assets/game/character/hero-3d.glb +0 -0
- package/public/assets/game/character/hero-anime-1.glb +0 -0
- package/public/assets/game/character/hero-anime-2.glb +0 -0
- package/public/assets/game/character/hero-anime-3.glb +0 -0
- package/public/assets/game/character/hero-anime-4.glb +0 -0
- package/public/assets/game/character/knight.png +0 -0
- package/public/assets/game/character/mage.png +0 -0
- package/public/assets/game/coin.png +0 -0
- package/public/assets/game/devices/agv.glb +0 -0
- package/public/assets/game/devices/caster.glb +0 -0
- package/public/assets/game/devices/device-console.glb +0 -0
- package/public/assets/game/devices/device-robot-arm.glb +0 -0
- package/public/assets/game/devices/device-scanner.glb +0 -0
- package/public/assets/game/devices/extruder.glb +0 -0
- package/public/assets/game/devices/mdo.glb +0 -0
- package/public/assets/game/devices/power-cabinet.glb +0 -0
- package/public/assets/game/devices/pump.glb +0 -0
- package/public/assets/game/devices/tdo.glb +0 -0
- package/public/assets/game/devices/thickness-scanner.glb +0 -0
- package/public/assets/game/devices/winder.glb +0 -0
- package/public/assets/game/npc/boltnu-sheet.png +0 -0
- package/public/assets/game/npc/fluttaflap-sheet.png +0 -0
- package/public/assets/game/npc/rockitten-sheet.png +0 -0
- package/public/assets/game/npc/tux-sheet.png +0 -0
- package/public/assets/game/player/misa-back-walk.000.png +0 -0
- package/public/assets/game/player/misa-back-walk.001.png +0 -0
- package/public/assets/game/player/misa-back-walk.002.png +0 -0
- package/public/assets/game/player/misa-back-walk.003.png +0 -0
- package/public/assets/game/player/misa-back.png +0 -0
- package/public/assets/game/player/misa-front-walk.000.png +0 -0
- package/public/assets/game/player/misa-front-walk.001.png +0 -0
- package/public/assets/game/player/misa-front-walk.002.png +0 -0
- package/public/assets/game/player/misa-front-walk.003.png +0 -0
- package/public/assets/game/player/misa-front.png +0 -0
- package/public/assets/game/player/misa-left-walk.000.png +0 -0
- package/public/assets/game/player/misa-left-walk.001.png +0 -0
- package/public/assets/game/player/misa-left-walk.002.png +0 -0
- package/public/assets/game/player/misa-left-walk.003.png +0 -0
- package/public/assets/game/player/misa-left.png +0 -0
- package/public/assets/game/player/misa-right-walk.000.png +0 -0
- package/public/assets/game/player/misa-right-walk.001.png +0 -0
- package/public/assets/game/player/misa-right-walk.002.png +0 -0
- package/public/assets/game/player/misa-right-walk.003.png +0 -0
- package/public/assets/game/player/misa-right.png +0 -0
- package/public/assets/game/player-sheet.png +0 -0
- package/public/assets/game/tuxemon-town.json +1 -0
- package/public/assets/game/tuxmon-sample-32px-extruded.png +0 -0
- package/public/assets/game/wuwa/scene-map.png +0 -0
- package/public/assets/game/wuwa/world-far.png +0 -0
- package/public/assets/game/wuwa/world-middle.png +0 -0
- package/public/assets/game/wuwa/world-near.png +0 -0
- package/public/assets/game/wuwa/wu-aura.png +0 -0
- package/public/assets/game/wuwa/wu-lead.png +0 -0
- package/public/assets/game/wuwa/wu-ring.png +0 -0
- package/public/assets/game/wuwa/wu-slash.png +0 -0
- package/public/assets/game/wuwa/wu-worker-0.png +0 -0
- package/public/assets/game/wuwa/wu-worker-1.png +0 -0
- package/public/assets/game/wuwa/wu-worker-2.png +0 -0
- package/public/favicon.svg +14 -0
- package/public/scene/background/cyber-town-background.svg +110 -0
- package/scripts/_daq-realtime-probe.mjs +68 -0
- package/scripts/_daq-warn-probe.mjs +50 -0
- package/scripts/_dbg-agent-tools-audit.mjs +154 -0
- package/scripts/_dbg-agent-workflow-audit.mjs +177 -0
- package/scripts/_dbg-anim-verify.mjs +81 -0
- package/scripts/_dbg-audit-all-pages.mjs +43 -0
- package/scripts/_dbg-autoframe.mjs +103 -0
- package/scripts/_dbg-beacon-final.mjs +181 -0
- package/scripts/_dbg-bind-bidi-e2e.mjs +239 -0
- package/scripts/_dbg-callout-near.mjs +108 -0
- package/scripts/_dbg-chan-focus.mjs +49 -0
- package/scripts/_dbg-cleanup.mjs +31 -0
- package/scripts/_dbg-closedloop-ui-shot.mjs +61 -0
- package/scripts/_dbg-console-audit.mjs +61 -0
- package/scripts/_dbg-console-probe.mjs +23 -0
- package/scripts/_dbg-context-inject-audit.mjs +231 -0
- package/scripts/_dbg-crash-recovery.mjs +143 -0
- package/scripts/_dbg-crop-shot.mjs +16 -0
- package/scripts/_dbg-daq-acc-probe.mjs +24 -0
- package/scripts/_dbg-daq-attrib.mjs +34 -0
- package/scripts/_dbg-daq-bind-audit.mjs +119 -0
- package/scripts/_dbg-daq-cadence.mjs +104 -0
- package/scripts/_dbg-daq-debug.mjs +22 -0
- package/scripts/_dbg-daq-diag.mjs +33 -0
- package/scripts/_dbg-daq-e2e.mjs +171 -0
- package/scripts/_dbg-daq-film.mjs +136 -0
- package/scripts/_dbg-daq-filter-e2e.mjs +109 -0
- package/scripts/_dbg-daq-filter-e2e2.mjs +62 -0
- package/scripts/_dbg-daq-final-regression.mjs +78 -0
- package/scripts/_dbg-daq-full-check.mjs +179 -0
- package/scripts/_dbg-daq-line-note-verify.mjs +61 -0
- package/scripts/_dbg-daq-linebanner-audit.mjs +107 -0
- package/scripts/_dbg-daq-pages-shot.mjs +37 -0
- package/scripts/_dbg-daq-perf.mjs +61 -0
- package/scripts/_dbg-daq-probe.mjs +27 -0
- package/scripts/_dbg-daq-recipe-e2e.mjs +30 -0
- package/scripts/_dbg-daq-redesign-shot.mjs +88 -0
- package/scripts/_dbg-daq-rows-probe.mjs +26 -0
- package/scripts/_dbg-daq-rowstate-e2e.mjs +152 -0
- package/scripts/_dbg-daq-rowstate-shot.mjs +45 -0
- package/scripts/_dbg-daq-rowstate-shot2.mjs +38 -0
- package/scripts/_dbg-daq-tpl.mjs +144 -0
- package/scripts/_dbg-dash-console-check.mjs +49 -0
- package/scripts/_dbg-dash-deep-probe.mjs +61 -0
- package/scripts/_dbg-dash-hitpoint.mjs +44 -0
- package/scripts/_dbg-dash-live-shot.mjs +36 -0
- package/scripts/_dbg-dash-shot.mjs +21 -0
- package/scripts/_dbg-dashboard-shot.mjs +35 -0
- package/scripts/_dbg-dcw-audit.mjs +126 -0
- package/scripts/_dbg-dcw-card-e2e.mjs +108 -0
- package/scripts/_dbg-dcw-channel-ui.mjs +144 -0
- package/scripts/_dbg-dcw-examples.mjs +81 -0
- package/scripts/_dbg-dcw-light-shot.mjs +19 -0
- package/scripts/_dbg-dcw-line-audit.mjs +107 -0
- package/scripts/_dbg-dcw-pause-tpl-audit.mjs +161 -0
- package/scripts/_dbg-dcw-pause-ui.mjs +175 -0
- package/scripts/_dbg-dcw-scene.mjs +72 -0
- package/scripts/_dbg-dcw-shot2.mjs +14 -0
- package/scripts/_dbg-dcw-twin-e2e.mjs +192 -0
- package/scripts/_dbg-dt-interact.mjs +193 -0
- package/scripts/_dbg-error-probe.mjs +54 -0
- package/scripts/_dbg-filter-light-verify.mjs +54 -0
- package/scripts/_dbg-final-acceptance-2.mjs +72 -0
- package/scripts/_dbg-final-acceptance.mjs +192 -0
- package/scripts/_dbg-final-agent-e2e.mjs +151 -0
- package/scripts/_dbg-final-full-e2e.mjs +218 -0
- package/scripts/_dbg-final-line-e2e.mjs +173 -0
- package/scripts/_dbg-final-t6-hitl.mjs +38 -0
- package/scripts/_dbg-focus-range.mjs +115 -0
- package/scripts/_dbg-fresh-scene-e2e.mjs +125 -0
- package/scripts/_dbg-full-feature-e2e.mjs +219 -0
- package/scripts/_dbg-fullchain-e2e.mjs +178 -0
- package/scripts/_dbg-gate-debug.mjs +37 -0
- package/scripts/_dbg-gif-encode.mjs +111 -0
- package/scripts/_dbg-gizmo.mjs +95 -0
- package/scripts/_dbg-glass-probe.mjs +57 -0
- package/scripts/_dbg-glass-shot.mjs +50 -0
- package/scripts/_dbg-glass-sweep.mjs +25 -0
- package/scripts/_dbg-glb-probe.mjs +43 -0
- package/scripts/_dbg-hardening-probe.mjs +90 -0
- package/scripts/_dbg-hero-btn-probe.mjs +21 -0
- package/scripts/_dbg-hidden-check.mjs +21 -0
- package/scripts/_dbg-hitl-timeout-e2e.mjs +93 -0
- package/scripts/_dbg-hmi-audit.mjs +164 -0
- package/scripts/_dbg-home-repro.mjs +24 -0
- package/scripts/_dbg-home-stack.mjs +13 -0
- package/scripts/_dbg-huashu-survey.mjs +31 -0
- package/scripts/_dbg-huashu-survey2.mjs +35 -0
- package/scripts/_dbg-huashu-verify.mjs +25 -0
- package/scripts/_dbg-huashu-verify2.mjs +26 -0
- package/scripts/_dbg-hydration-detail.mjs +18 -0
- package/scripts/_dbg-i18n-debug.mjs +27 -0
- package/scripts/_dbg-i18n-debug2.mjs +26 -0
- package/scripts/_dbg-i18n-final.mjs +42 -0
- package/scripts/_dbg-i18n-scan.mjs +38 -0
- package/scripts/_dbg-infra-lifecycle.mjs +44 -0
- package/scripts/_dbg-line-aura-shots.mjs +54 -0
- package/scripts/_dbg-line-control-e2e.mjs +120 -0
- package/scripts/_dbg-line-gate-audit.mjs +108 -0
- package/scripts/_dbg-line-live-e2e.mjs +144 -0
- package/scripts/_dbg-line-scenario-e2e.mjs +256 -0
- package/scripts/_dbg-minimal-omp.mjs +77 -0
- package/scripts/_dbg-mode-nav.mjs +173 -0
- package/scripts/_dbg-mqtt-chain-e2e.mjs +90 -0
- package/scripts/_dbg-nav-rpg.mjs +84 -0
- package/scripts/_dbg-nav-shot.mjs +28 -0
- package/scripts/_dbg-nav.mjs +27 -0
- package/scripts/_dbg-opslog-e2e.mjs +121 -0
- package/scripts/_dbg-opslog-shots.mjs +62 -0
- package/scripts/_dbg-opt-team-e2e.mjs +133 -0
- package/scripts/_dbg-optimization-e2e.mjs +94 -0
- package/scripts/_dbg-orbit.mjs +58 -0
- package/scripts/_dbg-panesplitter-fix-check.mjs +62 -0
- package/scripts/_dbg-phase-e3-monitor.mjs +25 -0
- package/scripts/_dbg-pop-clamp-verify.mjs +77 -0
- package/scripts/_dbg-preset-e2e.mjs +116 -0
- package/scripts/_dbg-preview-console.mjs +28 -0
- package/scripts/_dbg-preview-minrepro.mjs +156 -0
- package/scripts/_dbg-preview-pixels.mjs +93 -0
- package/scripts/_dbg-quality-pages-e2e.mjs +84 -0
- package/scripts/_dbg-query-cancel.ts +12 -0
- package/scripts/_dbg-rail-tree-e2e.mjs +183 -0
- package/scripts/_dbg-real-driver-e2e.mjs +55 -0
- package/scripts/_dbg-redesign-shots.mjs +34 -0
- package/scripts/_dbg-restart-persist.mjs +41 -0
- package/scripts/_dbg-rollback-mgr-audit.mjs +169 -0
- package/scripts/_dbg-rpg.mjs +71 -0
- package/scripts/_dbg-sc001-dispatch.mjs +63 -0
- package/scripts/_dbg-scenario-final-shot.mjs +24 -0
- package/scripts/_dbg-scenario-phase-e2.mjs +75 -0
- package/scripts/_dbg-scenario-phase-e3.mjs +96 -0
- package/scripts/_dbg-scenario-phase1.mjs +90 -0
- package/scripts/_dbg-scenario-phase2.mjs +105 -0
- package/scripts/_dbg-scenario-phase3-monitor.mjs +48 -0
- package/scripts/_dbg-scenario-phase3.mjs +111 -0
- package/scripts/_dbg-scene-polish-shot.mjs +118 -0
- package/scripts/_dbg-selring-probe.mjs +47 -0
- package/scripts/_dbg-sideinfo.mjs +101 -0
- package/scripts/_dbg-splitter.mjs +88 -0
- package/scripts/_dbg-team-repro.mjs +76 -0
- package/scripts/_dbg-town-alarm-e2e.mjs +40 -0
- package/scripts/_dbg-town-beauty-shots.mjs +54 -0
- package/scripts/_dbg-town-daq-shot.mjs +26 -0
- package/scripts/_dbg-town-full-e2e.mjs +104 -0
- package/scripts/_dbg-town-gate.mjs +44 -0
- package/scripts/_dbg-town-ins-probe.mjs +37 -0
- package/scripts/_dbg-town-perf.mjs +50 -0
- package/scripts/_dbg-town-polish-shots.mjs +82 -0
- package/scripts/_dbg-town-realtime.mjs +42 -0
- package/scripts/_dbg-town-shot3.mjs +17 -0
- package/scripts/_dbg-town-truth.mjs +37 -0
- package/scripts/_dbg-town-truth2.mjs +27 -0
- package/scripts/_dbg-transform-audit.mjs +98 -0
- package/scripts/_dbg-trend-expand-test.mjs +38 -0
- package/scripts/_dbg-twindaq-focus.mjs +81 -0
- package/scripts/_dbg-ui-polish-shot.mjs +43 -0
- package/scripts/_dbg-ui-polish-verify1.mjs +92 -0
- package/scripts/_dbg-ui-polish-verify2.mjs +50 -0
- package/scripts/_dbg-ui-polish-verify3.mjs +51 -0
- package/scripts/_dbg-ui-polish-verify4.mjs +50 -0
- package/scripts/_dbg-ui-shot.mjs +26 -0
- package/scripts/_dbg-unify-shot.mjs +43 -0
- package/scripts/_dbg-uplink-probe.mjs +36 -0
- package/scripts/_dbg-wizard-preview-shot.mjs +58 -0
- package/scripts/_dbg-wizard-ui-e2e.mjs +93 -0
- package/scripts/_dbg-ws-probe.mjs +86 -0
- package/scripts/_dbg-ws-shot2.mjs +23 -0
- package/scripts/_dbg-wsdot-sanity.mjs +25 -0
- package/scripts/_dev-stack.mjs +46 -0
- package/scripts/_http-driver-probe.mjs +30 -0
- package/scripts/_lib-dcw-line.mjs +24 -0
- package/scripts/_mqtt-driver-probe.mjs +30 -0
- package/scripts/_newdriver-rest-probe.mjs +100 -0
- package/scripts/_node-state-probe.mjs +5 -0
- package/scripts/_opcua-driver-probe.mjs +31 -0
- package/scripts/_rtu-debug.mjs +41 -0
- package/scripts/_rtu-direct.mjs +6 -0
- package/scripts/_rtu-driver-probe.mjs +53 -0
- package/scripts/_rtu-mini-slave.mjs +63 -0
- package/scripts/_townview_style.css +1185 -0
- package/scripts/_townview_template.html +1215 -0
- package/scripts/_wizard-shots.mjs +90 -0
- package/scripts/acceptance-suite.py +207 -0
- package/scripts/api-live-e2e.mjs +467 -0
- package/scripts/build-anime-models.mjs +339 -0
- package/scripts/build-character-models.mjs +175 -0
- package/scripts/build-film-devices.mjs +227 -0
- package/scripts/build-model-3d.mjs +173 -0
- package/scripts/build-player-sheet.mjs +58 -0
- package/scripts/build-world-map.mjs +188 -0
- package/scripts/build-wuwa-assets.mjs +345 -0
- package/scripts/collab-live-test.py +177 -0
- package/scripts/debug-mcp-http.ts +64 -0
- package/scripts/demo-lead-worker.ts +256 -0
- package/scripts/demo-modes.ts +415 -0
- package/scripts/demo-omp-channel.ts +135 -0
- package/scripts/design-preflight.mjs +223 -0
- package/scripts/design-verify-templates.mjs +110 -0
- package/scripts/design-verify.mjs +170 -0
- package/scripts/dev-guard.mjs +74 -0
- package/scripts/dev-modbus-simulator.mjs +55 -0
- package/scripts/dev-opcua-simulator.mjs +57 -0
- package/scripts/dev-protocol-simulators.mjs +145 -0
- package/scripts/dev-window.cmd +6 -0
- package/scripts/device-line-restore.mjs +34 -0
- package/scripts/diag-lead-status.ts +101 -0
- package/scripts/e2e-a2a-steer-live.mjs +193 -0
- package/scripts/e2e-agent-channel-task.ts +151 -0
- package/scripts/e2e-agent-team.mjs +168 -0
- package/scripts/e2e-auth-matrix.mjs +119 -0
- package/scripts/e2e-channel-isolation.ts +325 -0
- package/scripts/e2e-dual-drive-comm.ts +259 -0
- package/scripts/e2e-lead-team-mgmt.ts +217 -0
- package/scripts/e2e-memory-persistence.ts +320 -0
- package/scripts/e2e-memory-system.ts +332 -0
- package/scripts/e2e-omp-modes.ts +274 -0
- package/scripts/e2e-omp-realtime.ts +258 -0
- package/scripts/e2e-omp-workspace.ts +180 -0
- package/scripts/e2e-parallel-execution.mjs +151 -0
- package/scripts/e2e-rest-memory.mjs +251 -0
- package/scripts/e2e-rest-robustness.mjs +177 -0
- package/scripts/e2e-resume-crash.mjs +254 -0
- package/scripts/e2e-tab-close.mjs +136 -0
- package/scripts/e2e-task-queue.ts +277 -0
- package/scripts/e2e-template-isolation.mjs +267 -0
- package/scripts/e2e-token-ui.mjs +149 -0
- package/scripts/final-soup-run.py +192 -0
- package/scripts/final-soup-watch.py +83 -0
- package/scripts/home-bootstrap.mjs +117 -0
- package/scripts/i18n-codemod.mjs +173 -0
- package/scripts/i18n-fix-en.py +28 -0
- package/scripts/i18n-fix-en2.py +31 -0
- package/scripts/i18n-merge.mjs +67 -0
- package/scripts/omp-real-test.py +328 -0
- package/scripts/smoke-optimization-verify.ts +72 -0
- package/scripts/start.mjs +60 -0
- package/scripts/test-a2a-relay.mjs +222 -0
- package/scripts/test-a2a-types.ts +296 -0
- package/scripts/test-agent-brain.ts +135 -0
- package/scripts/test-agent-multi-channel.ts +160 -0
- package/scripts/test-agent-runtime.ts +348 -0
- package/scripts/test-api-client.ts +108 -0
- package/scripts/test-api-suite.mjs +271 -0
- package/scripts/test-block-consumption.mjs +194 -0
- package/scripts/test-channel-routing.ts +301 -0
- package/scripts/test-cmd-render.mjs +218 -0
- package/scripts/test-collab-e2e.mjs +136 -0
- package/scripts/test-collab-omp.mjs +192 -0
- package/scripts/test-dedup-logic.ts +132 -0
- package/scripts/test-dual-drive.ts +227 -0
- package/scripts/test-e2e-collaboration.ts +262 -0
- package/scripts/test-e2e-monitor.ts +192 -0
- package/scripts/test-event-history.ts +112 -0
- package/scripts/test-event-persistence.mjs +169 -0
- package/scripts/test-exec-modes.ts +316 -0
- package/scripts/test-fifo-realtime.mjs +193 -0
- package/scripts/test-final-e2e.mjs +290 -0
- package/scripts/test-full-system.ts +439 -0
- package/scripts/test-game-session.ts +160 -0
- package/scripts/test-goal-summary.ts +202 -0
- package/scripts/test-harness-liveness.ts +109 -0
- package/scripts/test-harness-terminal.ts +164 -0
- package/scripts/test-header-trail.mjs +95 -0
- package/scripts/test-hitl.ts +360 -0
- package/scripts/test-koda-restyle.mjs +105 -0
- package/scripts/test-lane-history-live.mjs +103 -0
- package/scripts/test-lane-raw.ts +67 -0
- package/scripts/test-lanes-history-render.mjs +138 -0
- package/scripts/test-loop-omp.mjs +154 -0
- package/scripts/test-mcp-tools.ts +285 -0
- package/scripts/test-mdlite.ts +53 -0
- package/scripts/test-memory-dynamic.ts +99 -0
- package/scripts/test-memory-maintenance.ts +117 -0
- package/scripts/test-memory-vector.ts +154 -0
- package/scripts/test-memory.ts +431 -0
- package/scripts/test-mock-collab.mjs +226 -0
- package/scripts/test-modern-render.mjs +174 -0
- package/scripts/test-omp-terminal.mjs +187 -0
- package/scripts/test-orchestration.ts +425 -0
- package/scripts/test-persistence-lazy.ts +323 -0
- package/scripts/test-prompt-system.mjs +181 -0
- package/scripts/test-prompts-loader.ts +56 -0
- package/scripts/test-protocol.ts +156 -0
- package/scripts/test-real-scenario.mjs +290 -0
- package/scripts/test-route-reason.mjs +111 -0
- package/scripts/test-scheduler-loop.ts +469 -0
- package/scripts/test-stream-render.ts +37 -0
- package/scripts/test-task-drawer.mjs +204 -0
- package/scripts/test-task-engine.ts +433 -0
- package/scripts/test-task-invariants.mjs +169 -0
- package/scripts/test-terminal-e2e.mjs +264 -0
- package/scripts/test-town-3d.mjs +121 -0
- package/scripts/test-town-drag.mjs +218 -0
- package/scripts/test-town-layout.mjs +200 -0
- package/scripts/test-town-page.mjs +136 -0
- package/scripts/test-town-scene-math.ts +169 -0
- package/scripts/test-town-twin.mjs +121 -0
- package/scripts/test-town-upload.mjs +89 -0
- package/scripts/test-town-user-flow.mjs +619 -0
- package/scripts/test-town-world.mjs +76 -0
- package/scripts/test-town-wuwa.mjs +198 -0
- package/scripts/test-user-isolation.mjs +193 -0
- package/scripts/test-workshop-db.ts +280 -0
- package/scripts/test-workshop-entries.ts +370 -0
- package/scripts/test-workspace-api.ts +329 -0
- package/scripts/test-ws-aep.mjs +187 -0
- package/scripts/test-ws-protocol.ts +134 -0
- package/scripts/test-ws-stress.mjs +208 -0
- package/scripts/town-demo-seed.mjs +75 -0
- package/scripts/town-scene-clear.mjs +56 -0
- package/scripts/ui-screenshot.mjs +128 -0
- package/scripts/verify-a2a-live.mjs +124 -0
- package/scripts/verify-exec-modes-report.ts +248 -0
- package/scripts/verify-game.mjs +477 -0
- package/scripts/verify-lead-mail.ts +188 -0
- package/scripts/verify-page-smoke.mjs +87 -0
- package/scripts/verify-ws-events.mjs +123 -0
- package/scripts/ws-test.mjs +176 -0
- package/scripts/ws-test.py +4 -0
- package/server/api/health.get.ts +32 -0
- package/server/api/mcp/workshop.ts +78 -0
- package/server/api/metrics.ts +75 -0
- package/server/api/system/config.get.ts +12 -0
- package/server/api/system/monitor/terminal/ws.ts +177 -0
- package/server/api/system/monitor/terminate.post.ts +36 -0
- package/server/api/system/monitor.get.ts +13 -0
- package/server/api/system/settings/events.get.ts +28 -0
- package/server/api/system/settings/index.get.ts +14 -0
- package/server/api/system/settings/index.patch.ts +22 -0
- package/server/api/system/settings/reset.post.ts +12 -0
- package/server/api/users/[id].delete.ts +11 -0
- package/server/api/users/[id].get.ts +11 -0
- package/server/api/users/[id].put.ts +14 -0
- package/server/api/users/index.get.ts +13 -0
- package/server/api/users/index.post.ts +13 -0
- package/server/api/users/login.post.ts +11 -0
- package/server/api/users/logout.post.ts +9 -0
- package/server/api/users/me.get.ts +9 -0
- package/server/api/users/register.post.ts +11 -0
- package/server/api/users/tokens/[id]/token.get.ts +11 -0
- package/server/api/users/tokens/[id].delete.ts +11 -0
- package/server/api/users/tokens/[id].patch.ts +14 -0
- package/server/api/users/tokens/index.get.ts +9 -0
- package/server/api/users/tokens/index.post.ts +13 -0
- package/server/api/workshop/[...path].ts +13 -0
- package/server/api/workshop/a2a/[agentId]/card/index.get.ts +75 -0
- package/server/api/workshop/a2a/[agentId]/rpc/index.post.ts +429 -0
- package/server/api/workshop/a2a/send.post.ts +28 -0
- package/server/api/workshop/agent-tools/approvals/[id]/decide.post.ts +21 -0
- package/server/api/workshop/agent-tools/approvals/index.get.ts +18 -0
- package/server/api/workshop/agent-tools/bindings/[id].delete.ts +21 -0
- package/server/api/workshop/agent-tools/bindings/[id].patch.ts +14 -0
- package/server/api/workshop/agent-tools/bindings/index.get.ts +14 -0
- package/server/api/workshop/agent-tools/bindings/index.post.ts +20 -0
- package/server/api/workshop/agent-tools/invoke.post.ts +34 -0
- package/server/api/workshop/agents/[id].delete.ts +20 -0
- package/server/api/workshop/agents/[id].get.ts +19 -0
- package/server/api/workshop/agents/[id].patch.ts +30 -0
- package/server/api/workshop/agents/index.get.ts +13 -0
- package/server/api/workshop/agents/index.post.ts +29 -0
- package/server/api/workshop/agents/subscribe.post.ts +21 -0
- package/server/api/workshop/approvals/[id]/decide.post.ts +30 -0
- package/server/api/workshop/approvals/index.get.ts +22 -0
- package/server/api/workshop/assets/character/[id].delete.ts +33 -0
- package/server/api/workshop/assets/character/index.get.ts +17 -0
- package/server/api/workshop/assets/character/index.post.ts +87 -0
- package/server/api/workshop/assets/devices/[id].delete.ts +43 -0
- package/server/api/workshop/assets/devices/index.get.ts +103 -0
- package/server/api/workshop/assets/devices/index.post.ts +53 -0
- package/server/api/workshop/audit.get.ts +43 -0
- package/server/api/workshop/caller.ts +141 -0
- package/server/api/workshop/channel-templates/[id]/instantiate.post.ts +31 -0
- package/server/api/workshop/channel-templates/[id].delete.ts +20 -0
- package/server/api/workshop/channel-templates/[id].get.ts +19 -0
- package/server/api/workshop/channel-templates/[id].patch.ts +48 -0
- package/server/api/workshop/channel-templates/from-channel.post.ts +31 -0
- package/server/api/workshop/channel-templates/index.get.ts +13 -0
- package/server/api/workshop/channel-templates/index.post.ts +61 -0
- package/server/api/workshop/channels/[id]/activate.post.ts +19 -0
- package/server/api/workshop/channels/[id]/agents/[agentId]/memories/[memoryId].delete.ts +30 -0
- package/server/api/workshop/channels/[id]/agents/[agentId]/memories/index.get.ts +29 -0
- package/server/api/workshop/channels/[id]/agents/[agentId]/memories/index.post.ts +48 -0
- package/server/api/workshop/channels/[id]/agents/[agentId]/memories/search.post.ts +43 -0
- package/server/api/workshop/channels/[id]/agents/[agentId]/model.patch.ts +39 -0
- package/server/api/workshop/channels/[id]/agents/[agentId]/position.patch.ts +33 -0
- package/server/api/workshop/channels/[id]/agents/[agentId]/range.patch.ts +54 -0
- package/server/api/workshop/channels/[id]/agents/[agentId]/stop.post.ts +25 -0
- package/server/api/workshop/channels/[id]/agents/[agentId].delete.ts +23 -0
- package/server/api/workshop/channels/[id]/agents/[agentId].patch.ts +28 -0
- package/server/api/workshop/channels/[id]/agents/index.get.ts +27 -0
- package/server/api/workshop/channels/[id]/agents/index.post.ts +61 -0
- package/server/api/workshop/channels/[id]/events.get.ts +55 -0
- package/server/api/workshop/channels/[id]/index.get.ts +18 -0
- package/server/api/workshop/channels/[id]/index.patch.ts +30 -0
- package/server/api/workshop/channels/[id]/memories/[memoryId].delete.ts +29 -0
- package/server/api/workshop/channels/[id]/memories/index.get.ts +28 -0
- package/server/api/workshop/channels/[id]/memories/index.post.ts +42 -0
- package/server/api/workshop/channels/[id]/messages/index.get.ts +56 -0
- package/server/api/workshop/channels/[id]/messages/index.post.ts +75 -0
- package/server/api/workshop/channels/[id]/queue.get.ts +25 -0
- package/server/api/workshop/channels/[id]/tasks/index.get.ts +24 -0
- package/server/api/workshop/channels/[id]/tasks/index.post.ts +79 -0
- package/server/api/workshop/channels/[id]/terminals.get.ts +21 -0
- package/server/api/workshop/channels/[id].delete.ts +18 -0
- package/server/api/workshop/channels.get.ts +11 -0
- package/server/api/workshop/channels.post.ts +48 -0
- package/server/api/workshop/daq/[id]/bind.post.ts +19 -0
- package/server/api/workshop/daq/[id]/samples.get.ts +22 -0
- package/server/api/workshop/daq/[id]/test.post.ts +17 -0
- package/server/api/workshop/daq/[id].delete.ts +30 -0
- package/server/api/workshop/daq/[id].patch.ts +31 -0
- package/server/api/workshop/daq/alarms/[id]/ack.post.ts +15 -0
- package/server/api/workshop/daq/alarms.get.ts +16 -0
- package/server/api/workshop/daq/controller.post.ts +52 -0
- package/server/api/workshop/daq/index.get.ts +40 -0
- package/server/api/workshop/daq/index.post.ts +33 -0
- package/server/api/workshop/daq/infra/reconnect.post.ts +17 -0
- package/server/api/workshop/daq/infra.get.ts +11 -0
- package/server/api/workshop/daq/templates/[key].delete.ts +17 -0
- package/server/api/workshop/daq/templates/[key].patch.ts +18 -0
- package/server/api/workshop/daq/templates/index.post.ts +17 -0
- package/server/api/workshop/daq/test-driver.post.ts +23 -0
- package/server/api/workshop/dcw/[id]/bind.post.ts +17 -0
- package/server/api/workshop/dcw/[id]/param-ledger.get.ts +15 -0
- package/server/api/workshop/dcw/[id]/test.post.ts +15 -0
- package/server/api/workshop/dcw/[id]/write.post.ts +19 -0
- package/server/api/workshop/dcw/[id].delete.ts +30 -0
- package/server/api/workshop/dcw/[id].patch.ts +18 -0
- package/server/api/workshop/dcw/controller.post.ts +43 -0
- package/server/api/workshop/dcw/index.get.ts +25 -0
- package/server/api/workshop/dcw/index.post.ts +20 -0
- package/server/api/workshop/dcw/journal/index.get.ts +21 -0
- package/server/api/workshop/dcw/journal/node/[nodeId]/rollback.post.ts +22 -0
- package/server/api/workshop/dcw/line/query.get.ts +31 -0
- package/server/api/workshop/dcw/lines/[id]/start.post.ts +35 -0
- package/server/api/workshop/dcw/lines/[id]/stop.post.ts +34 -0
- package/server/api/workshop/dcw/lines/[id].delete.ts +35 -0
- package/server/api/workshop/dcw/lines/[id].patch.ts +15 -0
- package/server/api/workshop/dcw/lines/index.get.ts +14 -0
- package/server/api/workshop/dcw/lines/index.post.ts +31 -0
- package/server/api/workshop/dcw/optimizations/[id]/judge.post.ts +24 -0
- package/server/api/workshop/dcw/optimizations/[id]/rollback.post.ts +29 -0
- package/server/api/workshop/dcw/optimizations/[id]/series.get.ts +18 -0
- package/server/api/workshop/dcw/optimizations/[id].get.ts +17 -0
- package/server/api/workshop/dcw/optimizations/index.get.ts +23 -0
- package/server/api/workshop/dcw/products/[id].delete.ts +16 -0
- package/server/api/workshop/dcw/products/[id].patch.ts +17 -0
- package/server/api/workshop/dcw/products/index.post.ts +16 -0
- package/server/api/workshop/dcw/recipes/[id]/apply.post.ts +40 -0
- package/server/api/workshop/dcw/recipes/[id]/mark-good.post.ts +21 -0
- package/server/api/workshop/dcw/recipes/[id]/rollback-good.post.ts +19 -0
- package/server/api/workshop/dcw/recipes/[id].delete.ts +14 -0
- package/server/api/workshop/dcw/recipes/[id].patch.ts +16 -0
- package/server/api/workshop/dcw/recipes/index.get.ts +12 -0
- package/server/api/workshop/dcw/recipes/index.post.ts +15 -0
- package/server/api/workshop/dcw/runs/[id]/close.post.ts +15 -0
- package/server/api/workshop/dcw/runs/[id]/data.get.ts +15 -0
- package/server/api/workshop/dcw/runs/[id]/rollback.post.ts +20 -0
- package/server/api/workshop/dcw/runs/index.get.ts +11 -0
- package/server/api/workshop/dcw/templates/[key].delete.ts +14 -0
- package/server/api/workshop/dcw/templates/[key].patch.ts +16 -0
- package/server/api/workshop/dcw/templates/index.post.ts +15 -0
- package/server/api/workshop/dcw/test-driver.post.ts +16 -0
- package/server/api/workshop/device-twins/[id]/control.post.ts +21 -0
- package/server/api/workshop/device-twins/[id]/telemetry.post.ts +21 -0
- package/server/api/workshop/device-twins/[id].delete.ts +25 -0
- package/server/api/workshop/device-twins/[id].patch.ts +29 -0
- package/server/api/workshop/device-twins/index.get.ts +16 -0
- package/server/api/workshop/device-twins/index.post.ts +32 -0
- package/server/api/workshop/fs/dirs.get.ts +40 -0
- package/server/api/workshop/mailbox/all.get.ts +19 -0
- package/server/api/workshop/mailbox.get.ts +14 -0
- package/server/api/workshop/memories/maintenance.post.ts +15 -0
- package/server/api/workshop/ops-logs/index.get.ts +30 -0
- package/server/api/workshop/ops-logs/index.post.ts +39 -0
- package/server/api/workshop/runtime.get.ts +11 -0
- package/server/api/workshop/scene/layouts/[channelId].delete.ts +23 -0
- package/server/api/workshop/scene/layouts/[channelId].put.ts +31 -0
- package/server/api/workshop/scene/layouts.get.ts +13 -0
- package/server/api/workshop/tasks/[id]/cancel/index.post.ts +34 -0
- package/server/api/workshop/tasks/[id]/complete.post.ts +32 -0
- package/server/api/workshop/tasks/[id]/dispatch.post.ts +30 -0
- package/server/api/workshop/tasks/[id]/report.post.ts +38 -0
- package/server/api/workshop/tasks/[id]/retry.post.ts +33 -0
- package/server/api/workshop/tasks/[id].get.ts +32 -0
- package/server/api/workshop/tasks.get.ts +13 -0
- package/server/api/workshop/teams/[id]/deploy.post.ts +40 -0
- package/server/api/workshop/teams/[id]/members/[agentId].delete.ts +19 -0
- package/server/api/workshop/teams/[id]/members/index.get.ts +19 -0
- package/server/api/workshop/teams/[id]/members/index.post.ts +32 -0
- package/server/api/workshop/teams/[id].delete.ts +20 -0
- package/server/api/workshop/teams/[id].get.ts +19 -0
- package/server/api/workshop/teams/[id].patch.ts +32 -0
- package/server/api/workshop/teams/index.get.ts +13 -0
- package/server/api/workshop/teams/index.post.ts +27 -0
- package/server/api/workshop/users/me.get.ts +23 -0
- package/server/api/workshop/users/register.post.ts +33 -0
- package/server/api/workshop/workspaces/[id]/channel-templates/[tplId].post.ts +31 -0
- package/server/api/workshop/workspaces/[id]/channels/[channelId].delete.ts +15 -0
- package/server/api/workshop/workspaces/[id]/channels/[channelId].post.ts +15 -0
- package/server/api/workshop/workspaces/[id]/index.delete.ts +14 -0
- package/server/api/workshop/workspaces/index.get.ts +11 -0
- package/server/api/workshop/workspaces/index.post.ts +17 -0
- package/server/api/workshop/ws.ts +694 -0
- package/server/data/agent-node-bindings.json +554 -0
- package/server/data/daq-templates.json +16 -0
- package/server/data/daqs.json +2680 -0
- package/server/data/dcw-lines.json +919 -0
- package/server/data/dcw-products.json +835 -0
- package/server/data/dcw-recipes.json +1650 -0
- package/server/data/dcw-rollback.json +9339 -0
- package/server/data/dcw-runs.json +4633 -0
- package/server/data/dcw-templates.json +26 -0
- package/server/data/dcw-writes.json +9770 -0
- package/server/data/dcws.json +1736 -0
- package/server/data/device-twins.json +133 -0
- package/server/data/line-runs.json +152 -0
- package/server/data/scene-layouts.json +200 -0
- package/server/mcp/workshop-server.ts +510 -0
- package/server/middleware/request-log.ts +15 -0
- package/server/plugins/backup.ts +85 -0
- package/server/plugins/daq.ts +65 -0
- package/server/plugins/dev-stability-guard.ts +42 -0
- package/server/plugins/security.ts +29 -0
- package/server/plugins/system-config.ts +38 -0
- package/server/plugins/workshop.ts +145 -0
- package/server/repositories/user.repository.ts +391 -0
- package/server/schemas/user.schema.ts +67 -0
- package/server/services/system-config.ts +356 -0
- package/server/services/user.service.ts +186 -0
- package/server/services/workshop/agents/adapters/omp-rpc-client.ts +539 -0
- package/server/services/workshop/agents/adapters/to-a2a.ts +40 -0
- package/server/services/workshop/agents/agent-interface.ts +219 -0
- package/server/services/workshop/agents/claude-agent.ts +47 -0
- package/server/services/workshop/agents/factory.ts +24 -0
- package/server/services/workshop/agents/harness-process.ts +158 -0
- package/server/services/workshop/agents/harness-terminal.ts +545 -0
- package/server/services/workshop/agents/industrial-context.ts +222 -0
- package/server/services/workshop/agents/industrial-tools.ts +362 -0
- package/server/services/workshop/agents/mock-agent.ts +396 -0
- package/server/services/workshop/agents/node-bindings.repo.ts +165 -0
- package/server/services/workshop/agents/omp-agent.ts +1598 -0
- package/server/services/workshop/agents/tool-approvals.ts +174 -0
- package/server/services/workshop/assets/character-asset.repo.ts +120 -0
- package/server/services/workshop/assets/device-twin.repo.ts +236 -0
- package/server/services/workshop/daq/alarm-notify.ts +100 -0
- package/server/services/workshop/daq/bus/index.ts +46 -0
- package/server/services/workshop/daq/bus/inproc.adapter.ts +62 -0
- package/server/services/workshop/daq/bus/mqtt.adapter.ts +112 -0
- package/server/services/workshop/daq/bus/queue-port.ts +36 -0
- package/server/services/workshop/daq/daq-controller.ts +778 -0
- package/server/services/workshop/daq/daq-node.repo.ts +96 -0
- package/server/services/workshop/daq/daq-node.ts +247 -0
- package/server/services/workshop/daq/daq-runtime.ts +168 -0
- package/server/services/workshop/daq/daq-templates.ts +157 -0
- package/server/services/workshop/daq/drivers.ts +771 -0
- package/server/services/workshop/daq/host-bindings.ts +71 -0
- package/server/services/workshop/daq/host-ports.ts +64 -0
- package/server/services/workshop/daq/infra.ts +202 -0
- package/server/services/workshop/daq/storage/index.ts +96 -0
- package/server/services/workshop/daq/storage/sqlite.adapter.ts +205 -0
- package/server/services/workshop/daq/storage/timescale.adapter.ts +185 -0
- package/server/services/workshop/daq/storage/tsdb-port.ts +74 -0
- package/server/services/workshop/db/agent.repo.ts +105 -0
- package/server/services/workshop/db/channel-agent.repo.ts +119 -0
- package/server/services/workshop/db/channel-event.repo.ts +154 -0
- package/server/services/workshop/db/channel-template.repo.ts +113 -0
- package/server/services/workshop/db/channel.repo.ts +101 -0
- package/server/services/workshop/db/database.ts +934 -0
- package/server/services/workshop/db/memory.repo.ts +249 -0
- package/server/services/workshop/db/message.repo.ts +149 -0
- package/server/services/workshop/db/ops.repo.ts +323 -0
- package/server/services/workshop/db/schema.sql +143 -0
- package/server/services/workshop/db/subscription.repo.ts +62 -0
- package/server/services/workshop/db/task.repo.ts +175 -0
- package/server/services/workshop/db/team-member.repo.ts +70 -0
- package/server/services/workshop/db/team.repo.ts +109 -0
- package/server/services/workshop/db/user.repo.ts +100 -0
- package/server/services/workshop/dcw/dcw-controller.ts +841 -0
- package/server/services/workshop/dcw/dcw-line.repo.ts +86 -0
- package/server/services/workshop/dcw/dcw-node.repo.ts +89 -0
- package/server/services/workshop/dcw/dcw-node.ts +200 -0
- package/server/services/workshop/dcw/dcw-product.repo.ts +95 -0
- package/server/services/workshop/dcw/dcw-recipe.repo.ts +349 -0
- package/server/services/workshop/dcw/dcw-runtime.ts +82 -0
- package/server/services/workshop/dcw/dcw-templates.ts +138 -0
- package/server/services/workshop/dcw/drivers.ts +523 -0
- package/server/services/workshop/dcw/line-run.ts +101 -0
- package/server/services/workshop/dcw/recipe-rollback-manager.ts +702 -0
- package/server/services/workshop/dcw/recipe-rollback.repo.ts +197 -0
- package/server/services/workshop/logger.ts +58 -0
- package/server/services/workshop/ops/ops.ts +78 -0
- package/server/services/workshop/prompts/loader.ts +112 -0
- package/server/services/workshop/runtime/agent-runtime.ts +698 -0
- package/server/services/workshop/runtime/channel-runtime.ts +202 -0
- package/server/services/workshop/runtime/embedding-provider.ts +79 -0
- package/server/services/workshop/runtime/execution-mode.ts +215 -0
- package/server/services/workshop/runtime/mailbox.ts +148 -0
- package/server/services/workshop/runtime/manager.ts +2543 -0
- package/server/services/workshop/runtime/memory.ts +439 -0
- package/server/services/workshop/runtime/monitor.ts +194 -0
- package/server/services/workshop/runtime/scheduler-loop.ts +773 -0
- package/server/services/workshop/runtime/task-engine.ts +574 -0
- package/server/services/workshop/scene/scene-layout.repo.ts +112 -0
- package/server/services/workshop/scene-events.ts +63 -0
- package/server/services/workshop/types/a2a.ts +61 -0
- package/server/services/workshop/types/task.ts +85 -0
- package/server/types/user.ts +53 -0
- package/server/utils/approval-gate.ts +67 -0
- package/server/utils/auth.ts +13 -0
- package/server/utils/config.ts +40 -0
- package/server/utils/errors.ts +24 -0
- package/server/utils/response.ts +49 -0
- package/server/utils/validate.ts +19 -0
- package/shared/config/engine.d.mts +41 -0
- package/shared/config/engine.mjs +291 -0
- package/shared/config/home.d.mts +48 -0
- package/shared/config/home.mjs +146 -0
- package/shared/config/schema.json +30 -0
- package/shared/daq-protocol.ts +361 -0
- package/shared/dcw-protocol.ts +576 -0
- package/shared/terminal-protocol.ts +70 -0
- package/shared/town-anim.ts +56 -0
- package/shared/town-behavior.ts +136 -0
- package/shared/town-protocol.ts +110 -0
- package/shared/town-scene-math.ts +283 -0
- package/shared/workshop-protocol.ts +199 -0
- package/tsconfig.json +10 -0
- package/uno.config.ts +37 -0
|
@@ -0,0 +1,1010 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
/**
|
|
3
|
+
* OmpTerminalPanel —— omp harness 原生终端面板(依赖 DOM/xterm,浏览器端动态加载)。
|
|
4
|
+
*
|
|
5
|
+
* 数据面:WS /api/system/monitor/terminal/ws?pid&token(#shared/terminal-protocol)
|
|
6
|
+
* - 服务端 terminal-hub 镜像 omp `--mode rpc-ui` 子进程的全部 RPC 帧;
|
|
7
|
+
* - 本组件把结构化帧流渲染成 xterm TUI(user 回显 / assistant 流式 / thinking /
|
|
8
|
+
* 工具执行 / host tool / HITL 对话框),还原"原生终端输出"体验;
|
|
9
|
+
* - 控制面(真 Human-in-the-loop):行内输入 → input(steer·follow_up 注入 omp
|
|
10
|
+
* 会话);Ctrl+C / 中止按钮 → abort;HITL 面板 → ui_response(select·confirm·
|
|
11
|
+
* input·editor 对话框应答,直写 extension_ui_response)。
|
|
12
|
+
* - 断线自动重连(指数退避);重连全量重放按 seq 去重,时间线无缝续接。
|
|
13
|
+
*
|
|
14
|
+
* SSR 安全:xterm(CJS 包)在抽屉打开时动态 import(ensureTerm 内 await),
|
|
15
|
+
* 服务端渲染路径零执行;xterm 样式经 nuxt.config css 全局注入。
|
|
16
|
+
*/
|
|
17
|
+
import type { Terminal } from '@xterm/xterm'
|
|
18
|
+
import type { FitAddon } from '@xterm/addon-fit'
|
|
19
|
+
import { message } from 'ant-design-vue'
|
|
20
|
+
import { useUserStore } from '@/app/stores/workshop/user'
|
|
21
|
+
import type {
|
|
22
|
+
TerminalHitlDialog,
|
|
23
|
+
TerminalServerMessage,
|
|
24
|
+
TermFrame,
|
|
25
|
+
} from '#shared/terminal-protocol'
|
|
26
|
+
|
|
27
|
+
const props = defineProps<{
|
|
28
|
+
/** pid 直连寻址(monitor 进程表) */
|
|
29
|
+
pid?: number | null
|
|
30
|
+
/** agent 寻址(lanes):解析该成员当前存活的 omp 进程,重启后自动落到新会话 */
|
|
31
|
+
agentId?: string | null
|
|
32
|
+
channelId?: string | null
|
|
33
|
+
/** 抽屉标题附加信息(monitor 行/lane 头快照) */
|
|
34
|
+
subtitle?: string
|
|
35
|
+
}>()
|
|
36
|
+
const open = defineModel<boolean>('open', { default: false })
|
|
37
|
+
|
|
38
|
+
const { t } = useI18n()
|
|
39
|
+
const userStore = useUserStore()
|
|
40
|
+
|
|
41
|
+
// ===== 终端实例 =====
|
|
42
|
+
const hostEl = ref<HTMLElement | null>(null)
|
|
43
|
+
let term: Terminal | null = null
|
|
44
|
+
let fit: FitAddon | null = null
|
|
45
|
+
let resizeObs: ResizeObserver | null = null
|
|
46
|
+
|
|
47
|
+
// ===== 连接与状态 =====
|
|
48
|
+
type ConnState = 'idle' | 'connecting' | 'open' | 'retrying' | 'dead'
|
|
49
|
+
const connState = ref<ConnState>('idle')
|
|
50
|
+
const alive = ref(true)
|
|
51
|
+
const running = ref(false)
|
|
52
|
+
const streaming = ref(false)
|
|
53
|
+
const hitl = ref<TerminalHitlDialog | null>(null)
|
|
54
|
+
let ws: WebSocket | null = null
|
|
55
|
+
let retryTimer: ReturnType<typeof setTimeout> | null = null
|
|
56
|
+
let retryCount = 0
|
|
57
|
+
let closedByUser = false
|
|
58
|
+
/** 已渲染 seq(重连全量重放去重) */
|
|
59
|
+
let lastRenderedSeq = 0
|
|
60
|
+
|
|
61
|
+
// ===== 行内输入(原生终端体验:xterm 内直接打字) =====
|
|
62
|
+
let inputLine = ''
|
|
63
|
+
let inputHistory: string[] = []
|
|
64
|
+
let inputHistoryIdx = -1
|
|
65
|
+
/** 流式增量渲染中(避免输入行与输出交错重绘抖动的细粒度锁不需要:批后重绘) */
|
|
66
|
+
|
|
67
|
+
// ANSI 快捷片段
|
|
68
|
+
const C = {
|
|
69
|
+
reset: '\x1b[0m',
|
|
70
|
+
dim: '\x1b[2m',
|
|
71
|
+
bold: '\x1b[1m',
|
|
72
|
+
red: '\x1b[31m',
|
|
73
|
+
green: '\x1b[32m',
|
|
74
|
+
yellow: '\x1b[33m',
|
|
75
|
+
blue: '\x1b[34m',
|
|
76
|
+
magenta: '\x1b[35m',
|
|
77
|
+
cyan: '\x1b[36m',
|
|
78
|
+
dimItalicMagenta: '\x1b[2;3;35m',
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/** 流式行未收尾标志:光标停在流式行中间 —— 下一个块/回合收尾前先补换行 */
|
|
82
|
+
let streamLineOpen = false
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* 冲刷流式增量:直接续写在光标后。
|
|
86
|
+
* 不补换行、不清行、不碰底部输入行 —— 流式批次之间是同一段正文,
|
|
87
|
+
* 旧实现按"块语义"逐批强制换行 + 重绘 prompt,导致实时消费出现逐批断行
|
|
88
|
+
* (历史重放一次冲刷故正常)。
|
|
89
|
+
*/
|
|
90
|
+
function flushStream(): void {
|
|
91
|
+
if (streamBuf.length === 0) return
|
|
92
|
+
const text = streamBuf.join('')
|
|
93
|
+
streamBuf.length = 0
|
|
94
|
+
term?.write(text)
|
|
95
|
+
if (!/\r?\n$/.test(text)) streamLineOpen = true
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/** 收尾流式行:仅在光标停在流式行中时补一个换行 */
|
|
99
|
+
function closeStreamLine(): void {
|
|
100
|
+
if (!streamLineOpen) return
|
|
101
|
+
streamLineOpen = false
|
|
102
|
+
term?.write('\r\n')
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/** 写入完整块(独立行):冲刷流式增量并收尾流式行 → 清输入行 → 写块 → 重绘输入行 */
|
|
106
|
+
function writeBlock(text: string): void {
|
|
107
|
+
if (!term) return
|
|
108
|
+
flushStream()
|
|
109
|
+
closeStreamLine()
|
|
110
|
+
term.write('\r\x1b[K')
|
|
111
|
+
term.write(text.endsWith('\r\n') || text.endsWith('\n') ? text : `${text}\r\n`)
|
|
112
|
+
renderInputRow()
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/** 重绘底部输入行(prompt + 已键入内容);流式行未收尾时跳过(回合收尾后统一补绘) */
|
|
116
|
+
function renderInputRow(): void {
|
|
117
|
+
if (!term) return
|
|
118
|
+
if (streamLineOpen || streamBuf.length > 0) return
|
|
119
|
+
term.write(`\r\x1b[K${C.dim}❯${C.reset} ${C.cyan}${inputLine}${C.reset}`)
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* 清空视图(切换目标 / 重开抽屉):丢弃上一会话的全部渲染状态与 xterm 缓冲。
|
|
124
|
+
* 不清空会把前一个 Agent 的历史输出叠进本 Agent 的终端,重开抽屉还会整环
|
|
125
|
+
* 重放造成重复 —— 每个 Agent 的终端必须只渲染自己的信息。
|
|
126
|
+
*/
|
|
127
|
+
function resetView(): void {
|
|
128
|
+
streamBuf.length = 0
|
|
129
|
+
streamLineOpen = false
|
|
130
|
+
assistantStreamActive = false
|
|
131
|
+
textSent.clear()
|
|
132
|
+
lastHumanInput = ''
|
|
133
|
+
inputLine = ''
|
|
134
|
+
// 命令历史随视图一并清空:历史属于会话,跨 Agent/重开共享会串上下文
|
|
135
|
+
inputHistory = []
|
|
136
|
+
inputHistoryIdx = -1
|
|
137
|
+
term?.reset()
|
|
138
|
+
renderInputRow()
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
const ts = (): string => {
|
|
142
|
+
const d = new Date()
|
|
143
|
+
return `${String(d.getHours()).padStart(2, '0')}:${String(d.getMinutes()).padStart(2, '0')}:${String(d.getSeconds()).padStart(2, '0')}`
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/** 单行/短文本裁剪(空白折叠) */
|
|
147
|
+
function oneLine(text: string, max = 160): string {
|
|
148
|
+
const flat = text.replace(/\s+/g, ' ').trim()
|
|
149
|
+
return flat.length > max ? `${flat.slice(0, max)}…` : flat
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
// ===== 帧渲染器:结构化 RPC 帧 → ANSI TUI =====
|
|
153
|
+
|
|
154
|
+
/** 最近一次人类输入(follow_up 路径 omp 回显 user 消息 → 去重) */
|
|
155
|
+
let lastHumanInput = ''
|
|
156
|
+
/** 当前回合 assistant 流式是否已输出过换行收尾标记 */
|
|
157
|
+
let assistantStreamActive = false
|
|
158
|
+
/** 流式增量缓冲(text/thinking delta 按批 flush,防与输入行交错) */
|
|
159
|
+
const streamBuf: string[] = []
|
|
160
|
+
/**
|
|
161
|
+
* 正文差额账本:contentIndex → 已渲染长度。部分 provider 的 text 块不走
|
|
162
|
+
* text_delta(只有换行),全文在 text_end.content 落定 —— 差额补发防止终端缺正文。
|
|
163
|
+
*/
|
|
164
|
+
const textSent = new Map<number, number>()
|
|
165
|
+
|
|
166
|
+
function renderFrame(f: TermFrame): void {
|
|
167
|
+
if (f.seq <= lastRenderedSeq) return
|
|
168
|
+
lastRenderedSeq = f.seq
|
|
169
|
+
const frame = f.frame
|
|
170
|
+
const type = frame.type as string
|
|
171
|
+
|
|
172
|
+
switch (type) {
|
|
173
|
+
case '__terminal_notice': {
|
|
174
|
+
const level = String(frame.level ?? 'info')
|
|
175
|
+
const color = level === 'error' ? C.red : level === 'warning' ? C.yellow : C.dim
|
|
176
|
+
writeBlock(`${C.dim}[${ts()}]${C.reset} ${color}⚡ ${String(frame.message ?? '')}${C.reset}`)
|
|
177
|
+
return
|
|
178
|
+
}
|
|
179
|
+
case '__human_input': {
|
|
180
|
+
lastHumanInput = String(frame.text ?? '')
|
|
181
|
+
writeBlock(`${C.bold}${C.cyan}❯ ${lastHumanInput}${C.reset}`)
|
|
182
|
+
return
|
|
183
|
+
}
|
|
184
|
+
case 'ready':
|
|
185
|
+
writeBlock(`${C.green}● omp ready${C.reset} ${C.dim}protocol v${String(frame.protocolVersion ?? '?')} · mode rpc-ui${C.reset}`)
|
|
186
|
+
return
|
|
187
|
+
case 'agent_start':
|
|
188
|
+
assistantStreamActive = false
|
|
189
|
+
textSent.clear()
|
|
190
|
+
writeBlock(`${C.dim}── agent turn started ──${C.reset}`)
|
|
191
|
+
return
|
|
192
|
+
case 'agent_end':
|
|
193
|
+
writeBlock(`${C.dim}── agent turn ended(${String(frame.messageCount ?? '?')} messages)──${C.reset}`)
|
|
194
|
+
return
|
|
195
|
+
case 'message_start': {
|
|
196
|
+
const role = String(frame.role ?? '')
|
|
197
|
+
if (role === 'user') {
|
|
198
|
+
const text = String(frame.text ?? '')
|
|
199
|
+
// follow_up 的 user 回显与人类输入同文 → 已渲染,跳过;平台注入的任务 prompt 正常回显
|
|
200
|
+
if (text === lastHumanInput) return
|
|
201
|
+
writeBlock(`${C.bold}${C.cyan}❯ ${text.replace(/\n/g, '\r\n')}${C.reset}`)
|
|
202
|
+
}
|
|
203
|
+
return
|
|
204
|
+
}
|
|
205
|
+
case 'message_update': {
|
|
206
|
+
const ev = frame.assistantMessageEvent as { type?: string, delta?: string, content?: string, contentIndex?: number } | undefined
|
|
207
|
+
if (!ev) return
|
|
208
|
+
// 流式增量先入缓冲,按批(flushStream)统一走 writeBlock:
|
|
209
|
+
// 直接 term.write 会落在底部输入行上,与输入行互相覆盖
|
|
210
|
+
if (ev.type === 'text_delta' && ev.delta) {
|
|
211
|
+
assistantStreamActive = true
|
|
212
|
+
const ci = typeof ev.contentIndex === 'number' ? ev.contentIndex : 0
|
|
213
|
+
textSent.set(ci, (textSent.get(ci) ?? 0) + ev.delta.length)
|
|
214
|
+
streamBuf.push(ev.delta.replace(/\n/g, '\r\n'))
|
|
215
|
+
}
|
|
216
|
+
else if (ev.type === 'text_end' && typeof ev.content === 'string' && ev.content.length > 0) {
|
|
217
|
+
// 落定差额兜底:provider 未流式 text 块时全文在 text_end,补发未渲染部分
|
|
218
|
+
const ci = typeof ev.contentIndex === 'number' ? ev.contentIndex : 0
|
|
219
|
+
const sent = textSent.get(ci) ?? 0
|
|
220
|
+
if (ev.content.length > sent) {
|
|
221
|
+
assistantStreamActive = true
|
|
222
|
+
textSent.set(ci, ev.content.length)
|
|
223
|
+
streamBuf.push(ev.content.slice(sent).replace(/\n/g, '\r\n'))
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
else if (ev.type === 'thinking_delta' && ev.delta) {
|
|
227
|
+
assistantStreamActive = true
|
|
228
|
+
streamBuf.push(`${C.dimItalicMagenta}${ev.delta.replace(/\n/g, '\r\n')}${C.reset}`)
|
|
229
|
+
}
|
|
230
|
+
return
|
|
231
|
+
}
|
|
232
|
+
case 'message_end': {
|
|
233
|
+
const role = String(frame.role ?? '')
|
|
234
|
+
if (role === 'assistant' && assistantStreamActive) {
|
|
235
|
+
// 回合收尾:冲刷剩余增量 → 流式行补换行 → 恢复底部输入行
|
|
236
|
+
assistantStreamActive = false
|
|
237
|
+
flushStream()
|
|
238
|
+
closeStreamLine()
|
|
239
|
+
renderInputRow()
|
|
240
|
+
}
|
|
241
|
+
return
|
|
242
|
+
}
|
|
243
|
+
case 'tool_execution_start':
|
|
244
|
+
writeBlock(` ${C.yellow}⚙ ${String(frame.toolName ?? 'tool')}${C.reset}${C.dim}(${oneLine(String(frame.args ?? ''), 120)})${C.reset}`)
|
|
245
|
+
return
|
|
246
|
+
case 'tool_execution_update':
|
|
247
|
+
writeBlock(` ${C.dim}↳ … ${oneLine(String(frame.update ?? ''), 100)}${C.reset}`)
|
|
248
|
+
return
|
|
249
|
+
case 'tool_execution_end': {
|
|
250
|
+
const err = frame.isError === true
|
|
251
|
+
const mark = err ? `${C.red}✗${C.reset}` : `${C.green}✓${C.reset}`
|
|
252
|
+
const preview = oneLine(String(frame.result ?? ''), 180)
|
|
253
|
+
writeBlock(` ${mark} ${C.dim}${preview}${C.reset}`)
|
|
254
|
+
return
|
|
255
|
+
}
|
|
256
|
+
case 'host_tool_call':
|
|
257
|
+
writeBlock(` ${C.magenta}⇄ host:${String(frame.toolName ?? '?')}${C.reset}${C.dim}(${oneLine(String(frame.args ?? ''), 100)})${C.reset}`)
|
|
258
|
+
return
|
|
259
|
+
case 'extension_ui_request': {
|
|
260
|
+
const method = String(frame.method ?? '')
|
|
261
|
+
if (method === 'cancel') {
|
|
262
|
+
writeBlock(t('ompTerminalPanel.k14jk3nu001', { p0: C.dim, p1: String(frame.targetId ?? ''), p2: C.reset }))
|
|
263
|
+
// omp 主动撤销(回合中止等)→ 关闭交互面板
|
|
264
|
+
if (hitl.value && hitl.value.id === String(frame.targetId ?? '')) hitl.value = null
|
|
265
|
+
return
|
|
266
|
+
}
|
|
267
|
+
if (method === 'notify') {
|
|
268
|
+
writeBlock(` ${C.blue}ℹ ${String(frame.message ?? '')}${C.reset}`)
|
|
269
|
+
return
|
|
270
|
+
}
|
|
271
|
+
if (method === 'select' || method === 'confirm' || method === 'input' || method === 'editor') {
|
|
272
|
+
const title = String(frame.title ?? '')
|
|
273
|
+
writeBlock(`${C.bold}${C.magenta}⚠ HITL · ${method}: ${title}${C.reset}`)
|
|
274
|
+
if (Array.isArray(frame.options)) {
|
|
275
|
+
for (const opt of frame.options) {
|
|
276
|
+
writeBlock(` ${C.magenta}○${C.reset} ${String(opt)}`)
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
// 弹出交互面板(实时帧驱动;term.init 的 hitl 仅覆盖重连时已在等待的对话框)
|
|
280
|
+
hitl.value = {
|
|
281
|
+
id: String(frame.id ?? ''),
|
|
282
|
+
method,
|
|
283
|
+
title,
|
|
284
|
+
options: Array.isArray(frame.options) ? frame.options.map(String) : undefined,
|
|
285
|
+
message: typeof frame.message === 'string' ? frame.message : undefined,
|
|
286
|
+
placeholder: typeof frame.placeholder === 'string' ? frame.placeholder : undefined,
|
|
287
|
+
prefill: typeof frame.prefill === 'string' ? frame.prefill : undefined,
|
|
288
|
+
at: new Date().toISOString(),
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
// 其余 UI 方法(setStatus/setWidget/…)静默
|
|
292
|
+
return
|
|
293
|
+
}
|
|
294
|
+
case 'command_output':
|
|
295
|
+
writeBlock(`${C.dim}${String(frame.text ?? '').replace(/\n/g, '\r\n')}${C.reset}`)
|
|
296
|
+
return
|
|
297
|
+
case 'response': {
|
|
298
|
+
const command = String(frame.command ?? '')
|
|
299
|
+
// 只回显人工控制命令的受理结果,其余(get_state 等)为噪音
|
|
300
|
+
if (command === 'steer' || command === 'follow_up' || command === 'abort' || command === 'prompt') {
|
|
301
|
+
const ok = frame.success !== false
|
|
302
|
+
writeBlock(` ${C.dim}· ${command} ${ok ? 'accepted' : `failed: ${String(frame.error ?? '')}`}${C.reset}`)
|
|
303
|
+
}
|
|
304
|
+
return
|
|
305
|
+
}
|
|
306
|
+
default:
|
|
307
|
+
// available_commands_update / session_info_update / config_update / 未知帧:静默
|
|
308
|
+
return
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
// ===== WS 生命周期 =====
|
|
313
|
+
|
|
314
|
+
/** 连接目标(优先 pid 直连;否则 agentId 解析当前存活进程) */
|
|
315
|
+
const hasTarget = computed(() => (props.pid != null && props.pid > 0) || !!props.agentId)
|
|
316
|
+
/** 已连接会话的实际 pid(agent 寻址下由 term.init 回填;进程重启后变化) */
|
|
317
|
+
const livePid = ref<number | null>(null)
|
|
318
|
+
|
|
319
|
+
function wsUrl(): string {
|
|
320
|
+
const proto = window.location.protocol === 'https:' ? 'wss' : 'ws'
|
|
321
|
+
const token = encodeURIComponent(userStore.token ?? '')
|
|
322
|
+
const target = props.pid != null && props.pid > 0
|
|
323
|
+
? `pid=${props.pid}`
|
|
324
|
+
: `agentId=${encodeURIComponent(props.agentId ?? '')}${props.channelId ? `&channelId=${encodeURIComponent(props.channelId)}` : ''}`
|
|
325
|
+
return `${proto}://${window.location.host}/api/system/monitor/terminal/ws?${target}&token=${token}`
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/** 上一次错误去重(NO_SESSION 重试风暴防刷屏) */
|
|
329
|
+
let lastErrorMessage = ''
|
|
330
|
+
|
|
331
|
+
function handleServerMessage(msg: TerminalServerMessage): void {
|
|
332
|
+
switch (msg.type) {
|
|
333
|
+
case 'term.init': {
|
|
334
|
+
// 进程重启(agent 寻址重连)→ 新会话 seq 从 1 重来,去重游标必须重置
|
|
335
|
+
if (livePid.value !== msg.meta.pid) {
|
|
336
|
+
livePid.value = msg.meta.pid
|
|
337
|
+
lastRenderedSeq = 0
|
|
338
|
+
lastErrorMessage = ''
|
|
339
|
+
writeBlock(t('ompTerminalPanel.k68kkpc002', { p0: C.dim, p1: msg.meta.pid, p2: msg.lastSeq, p3: C.reset }))
|
|
340
|
+
}
|
|
341
|
+
alive.value = msg.alive
|
|
342
|
+
running.value = msg.running
|
|
343
|
+
streaming.value = msg.streaming
|
|
344
|
+
hitl.value = msg.hitl
|
|
345
|
+
return
|
|
346
|
+
}
|
|
347
|
+
case 'term.frames':
|
|
348
|
+
for (const f of msg.frames) renderFrame(f)
|
|
349
|
+
flushStream()
|
|
350
|
+
return
|
|
351
|
+
case 'term.state':
|
|
352
|
+
alive.value = msg.alive
|
|
353
|
+
running.value = msg.running
|
|
354
|
+
streaming.value = msg.streaming
|
|
355
|
+
return
|
|
356
|
+
case 'term.notice':
|
|
357
|
+
message.info(msg.message)
|
|
358
|
+
return
|
|
359
|
+
case 'term.error': {
|
|
360
|
+
// 重试期重复同错误只提示一次(进程未启动时每 2s 一条会刷屏)
|
|
361
|
+
const line = `[${msg.code}] ${msg.message}`
|
|
362
|
+
if (line === lastErrorMessage) return
|
|
363
|
+
lastErrorMessage = line
|
|
364
|
+
writeBlock(`${C.red}✗ ${line}${C.reset}`)
|
|
365
|
+
return
|
|
366
|
+
}
|
|
367
|
+
case 'pong':
|
|
368
|
+
return
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
function connect(): void {
|
|
373
|
+
if (!hasTarget.value || !userStore.token) return
|
|
374
|
+
if (ws && (ws.readyState === WebSocket.OPEN || ws.readyState === WebSocket.CONNECTING)) return
|
|
375
|
+
closedByUser = false
|
|
376
|
+
connState.value = retryCount === 0 ? 'connecting' : 'retrying'
|
|
377
|
+
const sock = new WebSocket(wsUrl())
|
|
378
|
+
ws = sock
|
|
379
|
+
sock.onopen = () => {
|
|
380
|
+
if (ws !== sock) return
|
|
381
|
+
retryCount = 0
|
|
382
|
+
connState.value = 'open'
|
|
383
|
+
}
|
|
384
|
+
sock.onmessage = (ev) => {
|
|
385
|
+
if (ws !== sock) return
|
|
386
|
+
try {
|
|
387
|
+
handleServerMessage(JSON.parse(ev.data as string) as TerminalServerMessage)
|
|
388
|
+
}
|
|
389
|
+
catch { /* 非 JSON 帧忽略 */ }
|
|
390
|
+
}
|
|
391
|
+
sock.onclose = () => {
|
|
392
|
+
if (ws !== sock) return
|
|
393
|
+
ws = null
|
|
394
|
+
hitl.value = null
|
|
395
|
+
if (closedByUser || !hasTarget.value) {
|
|
396
|
+
connState.value = 'dead'
|
|
397
|
+
return
|
|
398
|
+
}
|
|
399
|
+
// 断线重连:1s 起指数退避,上限 10s(agent 寻址下进程未启动/重启由
|
|
400
|
+
// NO_SESSION 关闭驱动重试,直到首个任务触发 spawn 后接入)
|
|
401
|
+
retryCount += 1
|
|
402
|
+
const delay = Math.min(1000 * 2 ** Math.min(retryCount - 1, 4), 10_000)
|
|
403
|
+
connState.value = 'retrying'
|
|
404
|
+
retryTimer = setTimeout(() => {
|
|
405
|
+
retryTimer = null
|
|
406
|
+
if (!closedByUser && hasTarget.value) connect()
|
|
407
|
+
}, delay)
|
|
408
|
+
}
|
|
409
|
+
sock.onerror = () => { /* onclose 兜底 */ }
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
function disconnect(): void {
|
|
413
|
+
closedByUser = true
|
|
414
|
+
if (retryTimer) {
|
|
415
|
+
clearTimeout(retryTimer)
|
|
416
|
+
retryTimer = null
|
|
417
|
+
}
|
|
418
|
+
ws?.close()
|
|
419
|
+
ws = null
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
// ===== 控制面动作 =====
|
|
423
|
+
|
|
424
|
+
function sendRaw(obj: unknown): void {
|
|
425
|
+
if (ws?.readyState === WebSocket.OPEN) {
|
|
426
|
+
ws.send(JSON.stringify(obj))
|
|
427
|
+
return
|
|
428
|
+
}
|
|
429
|
+
writeBlock(t('ompTerminalPanel.k59zj91003', { p0: C.red, p1: C.reset }))
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
function submitInput(text: string): void {
|
|
433
|
+
const trimmed = text.trim()
|
|
434
|
+
if (!trimmed) return
|
|
435
|
+
inputHistory.push(trimmed)
|
|
436
|
+
inputHistory = inputHistory.slice(-50)
|
|
437
|
+
inputHistoryIdx = -1
|
|
438
|
+
sendRaw({ type: 'input', text: trimmed })
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
function doAbort(): void {
|
|
442
|
+
sendRaw({ type: 'abort' })
|
|
443
|
+
writeBlock(`${C.yellow}^C${C.reset}`)
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
function hitlRespond(response: { id: string, value?: string, confirmed?: boolean, cancelled?: boolean }): void {
|
|
447
|
+
sendRaw({ type: 'ui_response', ...response })
|
|
448
|
+
const label = response.cancelled
|
|
449
|
+
? 'cancelled'
|
|
450
|
+
: response.confirmed !== undefined
|
|
451
|
+
? String(response.confirmed)
|
|
452
|
+
: `"${oneLine(response.value ?? '', 80)}"`
|
|
453
|
+
writeBlock(t('ompTerminalPanel.kvzhi95004', { p0: C.green, p1: label, p2: C.reset }))
|
|
454
|
+
hitl.value = null
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
const hitlText = ref('')
|
|
458
|
+
watch(hitl, (h) => {
|
|
459
|
+
hitlText.value = h?.prefill ?? h?.placeholder ?? ''
|
|
460
|
+
})
|
|
461
|
+
|
|
462
|
+
// ===== xterm 装配与输入处理 =====
|
|
463
|
+
|
|
464
|
+
let termKeydown: ((e: KeyboardEvent) => void) | null = null
|
|
465
|
+
|
|
466
|
+
async function ensureTerm(): Promise<void> {
|
|
467
|
+
if (term || !hostEl.value) return
|
|
468
|
+
// 模板 ref 的 unibabel 结构类型与 lib.dom 的 HTMLElement 结构不完全兼容,
|
|
469
|
+
// 跨库边界(xterm / ResizeObserver)显式收窄
|
|
470
|
+
const host: HTMLElement = hostEl.value as unknown as HTMLElement
|
|
471
|
+
// 浏览器端动态加载 xterm(SSR 零执行;CJS 包不能静态命名导入)
|
|
472
|
+
const [{ Terminal: XTerm }, { FitAddon: XFit }] = await Promise.all([
|
|
473
|
+
import('@xterm/xterm'),
|
|
474
|
+
import('@xterm/addon-fit'),
|
|
475
|
+
])
|
|
476
|
+
term = new XTerm({
|
|
477
|
+
convertEol: false,
|
|
478
|
+
cursorBlink: true,
|
|
479
|
+
cursorStyle: 'bar',
|
|
480
|
+
fontFamily: '"IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace',
|
|
481
|
+
fontSize: 12.5,
|
|
482
|
+
lineHeight: 1.25,
|
|
483
|
+
scrollback: 8000,
|
|
484
|
+
theme: {
|
|
485
|
+
background: '#10151c',
|
|
486
|
+
foreground: '#d6dee8',
|
|
487
|
+
cursor: '#7aa2f7',
|
|
488
|
+
selectionBackground: '#33467c',
|
|
489
|
+
black: '#10151c',
|
|
490
|
+
red: '#f7768e',
|
|
491
|
+
green: '#9ece6a',
|
|
492
|
+
yellow: '#e0af68',
|
|
493
|
+
blue: '#7aa2f7',
|
|
494
|
+
magenta: '#bb9af7',
|
|
495
|
+
cyan: '#7dcfff',
|
|
496
|
+
white: '#d6dee8',
|
|
497
|
+
},
|
|
498
|
+
})
|
|
499
|
+
fit = new XFit()
|
|
500
|
+
term.loadAddon(fit)
|
|
501
|
+
term.open(host)
|
|
502
|
+
renderInputRow()
|
|
503
|
+
|
|
504
|
+
// 输入通道 1:宿主容器 keydown(捕获阶段)——真实键盘与合成事件(CDP/自动化)
|
|
505
|
+
// 都可靠触发;拦截已处理的键,阻止 xterm 内部重复消费
|
|
506
|
+
const onKeyDown = (e: KeyboardEvent): void => {
|
|
507
|
+
if (e.ctrlKey || e.metaKey || e.altKey) {
|
|
508
|
+
if (e.key === 'c' || e.key === 'C') {
|
|
509
|
+
e.preventDefault()
|
|
510
|
+
e.stopPropagation()
|
|
511
|
+
doAbort()
|
|
512
|
+
}
|
|
513
|
+
return // 其余组合键(Ctrl+R/F5 等)交给浏览器
|
|
514
|
+
}
|
|
515
|
+
if (e.key === 'Enter') {
|
|
516
|
+
e.preventDefault()
|
|
517
|
+
e.stopPropagation()
|
|
518
|
+
// 清掉本地键入行,由服务端 __human_input 回显统一渲染(回放观众一致,无重复)
|
|
519
|
+
term?.write('\r\x1b[K')
|
|
520
|
+
const line = inputLine
|
|
521
|
+
inputLine = ''
|
|
522
|
+
submitInput(line)
|
|
523
|
+
renderInputRow()
|
|
524
|
+
return
|
|
525
|
+
}
|
|
526
|
+
if (e.key === 'Backspace') {
|
|
527
|
+
e.preventDefault()
|
|
528
|
+
e.stopPropagation()
|
|
529
|
+
inputLine = inputLine.slice(0, -1)
|
|
530
|
+
renderInputRow()
|
|
531
|
+
return
|
|
532
|
+
}
|
|
533
|
+
if (e.key === 'ArrowUp' || e.key === 'ArrowDown') {
|
|
534
|
+
if (inputHistory.length === 0) return
|
|
535
|
+
e.preventDefault()
|
|
536
|
+
e.stopPropagation()
|
|
537
|
+
if (e.key === 'ArrowUp') {
|
|
538
|
+
inputHistoryIdx = inputHistoryIdx < 0 ? inputHistory.length - 1 : Math.max(0, inputHistoryIdx - 1)
|
|
539
|
+
}
|
|
540
|
+
else {
|
|
541
|
+
inputHistoryIdx = inputHistoryIdx < 0 ? -1 : Math.min(inputHistory.length - 1, inputHistoryIdx + 1)
|
|
542
|
+
if (inputHistoryIdx === inputHistory.length - 1) inputHistoryIdx = -1
|
|
543
|
+
}
|
|
544
|
+
inputLine = inputHistoryIdx < 0 ? '' : (inputHistory[inputHistoryIdx] ?? '')
|
|
545
|
+
renderInputRow()
|
|
546
|
+
return
|
|
547
|
+
}
|
|
548
|
+
if (e.key.length === 1 && !e.ctrlKey && !e.metaKey && !e.altKey) {
|
|
549
|
+
e.preventDefault()
|
|
550
|
+
e.stopPropagation()
|
|
551
|
+
inputLine += e.key
|
|
552
|
+
renderInputRow()
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
host.addEventListener('keydown', onKeyDown, true)
|
|
556
|
+
termKeydown = onKeyDown
|
|
557
|
+
|
|
558
|
+
// 输入通道 2:xterm onData 仅消费多字符输入(粘贴;单字符已由 keydown 处理)
|
|
559
|
+
term.onData((data) => {
|
|
560
|
+
if (data.length <= 1) return
|
|
561
|
+
inputLine += data.replace(/[\r\n]+$/, '')
|
|
562
|
+
renderInputRow()
|
|
563
|
+
})
|
|
564
|
+
|
|
565
|
+
resizeObs = new ResizeObserver(() => {
|
|
566
|
+
try {
|
|
567
|
+
fit?.fit()
|
|
568
|
+
}
|
|
569
|
+
catch { /* 尺寸未就绪 */ }
|
|
570
|
+
})
|
|
571
|
+
resizeObs.observe(host)
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
function teardownTerm(): void {
|
|
575
|
+
if (termKeydown && hostEl.value) {
|
|
576
|
+
hostEl.value.removeEventListener('keydown', termKeydown, true)
|
|
577
|
+
termKeydown = null
|
|
578
|
+
}
|
|
579
|
+
resizeObs?.disconnect()
|
|
580
|
+
resizeObs = null
|
|
581
|
+
term?.dispose()
|
|
582
|
+
term = null
|
|
583
|
+
fit = null
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
// ===== 生命周期:抽屉开关驱动连接/实例 =====
|
|
587
|
+
watch(open, (v) => {
|
|
588
|
+
if (v) {
|
|
589
|
+
nextTick(async () => {
|
|
590
|
+
await ensureTerm()
|
|
591
|
+
resetView()
|
|
592
|
+
lastRenderedSeq = 0
|
|
593
|
+
retryCount = 0
|
|
594
|
+
lastErrorMessage = ''
|
|
595
|
+
writeBlock(`${C.dim}── AgentWorkShop harness terminal · ${props.pid ? `PID ${props.pid}` : `agent ${props.agentId?.slice(0, 8)}…`} ──${C.reset}`)
|
|
596
|
+
connect()
|
|
597
|
+
nextTick(() => {
|
|
598
|
+
try {
|
|
599
|
+
fit?.fit()
|
|
600
|
+
}
|
|
601
|
+
catch { /* ignore */ }
|
|
602
|
+
})
|
|
603
|
+
})
|
|
604
|
+
}
|
|
605
|
+
else {
|
|
606
|
+
disconnect()
|
|
607
|
+
hitl.value = null
|
|
608
|
+
}
|
|
609
|
+
})
|
|
610
|
+
|
|
611
|
+
/** 目标切换(pid 直连或 agent 寻址变化)→ 清空视图重连(不同 Agent 的输出不得混渲染) */
|
|
612
|
+
watch(() => [props.pid, props.agentId], () => {
|
|
613
|
+
if (!open.value) return
|
|
614
|
+
disconnect()
|
|
615
|
+
nextTick(() => {
|
|
616
|
+
resetView()
|
|
617
|
+
lastRenderedSeq = 0
|
|
618
|
+
retryCount = 0
|
|
619
|
+
lastErrorMessage = ''
|
|
620
|
+
livePid.value = null
|
|
621
|
+
writeBlock(`${C.dim}── 切换目标 · ${props.pid ? `PID ${props.pid}` : `agent ${props.agentId?.slice(0, 8)}…`} ──${C.reset}`)
|
|
622
|
+
connect()
|
|
623
|
+
})
|
|
624
|
+
})
|
|
625
|
+
|
|
626
|
+
onBeforeUnmount(() => {
|
|
627
|
+
disconnect()
|
|
628
|
+
teardownTerm()
|
|
629
|
+
})
|
|
630
|
+
|
|
631
|
+
const doClear = (): void => {
|
|
632
|
+
streamBuf.length = 0
|
|
633
|
+
streamLineOpen = false
|
|
634
|
+
term?.clear()
|
|
635
|
+
renderInputRow()
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
const stateLabel = computed(() => {
|
|
639
|
+
if (!alive.value) return { text: t('terminal.stateExited'), color: 'error' as const }
|
|
640
|
+
if (streaming.value) return { text: t('terminal.stateStreaming'), color: 'processing' as const }
|
|
641
|
+
if (running.value) return { text: t('terminal.stateRunning'), color: 'warning' as const }
|
|
642
|
+
return { text: t('terminal.stateIdle'), color: 'success' as const }
|
|
643
|
+
})
|
|
644
|
+
const connLabel = computed(() => {
|
|
645
|
+
switch (connState.value) {
|
|
646
|
+
case 'open': return { text: t('terminal.connOpen'), color: 'success' as const }
|
|
647
|
+
case 'connecting': return { text: t('terminal.connConnecting'), color: 'default' as const }
|
|
648
|
+
case 'retrying': return { text: `${t('terminal.connRetrying')}(${retryCount})`, color: 'warning' as const }
|
|
649
|
+
default: return { text: t('terminal.connClosed'), color: 'default' as const }
|
|
650
|
+
}
|
|
651
|
+
})
|
|
652
|
+
</script>
|
|
653
|
+
|
|
654
|
+
<template>
|
|
655
|
+
<a-drawer
|
|
656
|
+
v-model:open="open"
|
|
657
|
+
placement="right"
|
|
658
|
+
:width="860"
|
|
659
|
+
:body-style="{ padding: '0', display: 'flex', flexDirection: 'column', background: '#10151c' }"
|
|
660
|
+
:header-style="{ background: '#10151c', borderBottom: '1px solid #1d2733' }"
|
|
661
|
+
class="omp-terminal-drawer"
|
|
662
|
+
>
|
|
663
|
+
<template #title>
|
|
664
|
+
<div class="term-title">
|
|
665
|
+
<span class="term-brand">
|
|
666
|
+
<span class="i-tabler-terminal-2" />
|
|
667
|
+
</span>
|
|
668
|
+
<span class="term-name">{{ t('terminal.title') }}</span>
|
|
669
|
+
<span class="ts-chip aw-mono ts-pid">PID {{ livePid ?? pid ?? '–' }}</span>
|
|
670
|
+
<span
|
|
671
|
+
v-if="subtitle"
|
|
672
|
+
class="ts-chip ts-sub"
|
|
673
|
+
>{{ subtitle }}</span>
|
|
674
|
+
</div>
|
|
675
|
+
</template>
|
|
676
|
+
<template #extra>
|
|
677
|
+
<div class="term-toolbar">
|
|
678
|
+
<!-- 连接态 chip:呼吸点 + 文本(open=绿 / retrying=琥珀脉冲 / 其他=灰蓝) -->
|
|
679
|
+
<span
|
|
680
|
+
class="ts-chip aw-mono"
|
|
681
|
+
:data-state="connState"
|
|
682
|
+
><span class="ts-dot" />{{ connLabel.text }}</span>
|
|
683
|
+
<!-- 会话态 chip:idle=青 / busy=琥珀 / 流式=青脉冲 -->
|
|
684
|
+
<span
|
|
685
|
+
class="ts-chip aw-mono"
|
|
686
|
+
:data-live="running ? (streaming ? 'streaming' : 'running') : 'idle'"
|
|
687
|
+
>{{ stateLabel.text }}</span>
|
|
688
|
+
<a-button
|
|
689
|
+
size="small"
|
|
690
|
+
danger
|
|
691
|
+
class="ts-btn"
|
|
692
|
+
:disabled="!running && !streaming"
|
|
693
|
+
@click="doAbort"
|
|
694
|
+
>
|
|
695
|
+
<template #icon>
|
|
696
|
+
<span class="i-tabler-player-stop" />
|
|
697
|
+
</template>
|
|
698
|
+
{{ t('terminal.abort') }}
|
|
699
|
+
</a-button>
|
|
700
|
+
<a-button
|
|
701
|
+
size="small"
|
|
702
|
+
class="ts-btn"
|
|
703
|
+
@click="doClear"
|
|
704
|
+
>
|
|
705
|
+
<template #icon>
|
|
706
|
+
<span class="i-tabler-eraser" />
|
|
707
|
+
</template>
|
|
708
|
+
{{ t('terminal.clear') }}
|
|
709
|
+
</a-button>
|
|
710
|
+
</div>
|
|
711
|
+
</template>
|
|
712
|
+
|
|
713
|
+
<div class="term-body">
|
|
714
|
+
<!-- HITL 对话框(omp extension_ui_request;answer → ui_response) -->
|
|
715
|
+
<div
|
|
716
|
+
v-if="hitl"
|
|
717
|
+
class="hitl-card"
|
|
718
|
+
>
|
|
719
|
+
<div class="hitl-head">
|
|
720
|
+
<span class="i-tabler-user-question" />
|
|
721
|
+
<b>{{ t('terminal.hitlTitle') }}</b>
|
|
722
|
+
<a-tag color="magenta">
|
|
723
|
+
{{ hitl.method }}
|
|
724
|
+
</a-tag>
|
|
725
|
+
<a-button
|
|
726
|
+
size="small"
|
|
727
|
+
type="text"
|
|
728
|
+
danger
|
|
729
|
+
@click="hitlRespond({ id: hitl.id, cancelled: true })"
|
|
730
|
+
>
|
|
731
|
+
{{ t('terminal.hitlCancel') }}
|
|
732
|
+
</a-button>
|
|
733
|
+
</div>
|
|
734
|
+
<p class="hitl-question">
|
|
735
|
+
{{ hitl.title }}
|
|
736
|
+
</p>
|
|
737
|
+
|
|
738
|
+
<template v-if="hitl.method === 'select'">
|
|
739
|
+
<div class="hitl-options">
|
|
740
|
+
<a-button
|
|
741
|
+
v-for="opt in hitl.options ?? []"
|
|
742
|
+
:key="opt"
|
|
743
|
+
block
|
|
744
|
+
@click="hitlRespond({ id: hitl.id, value: opt })"
|
|
745
|
+
>
|
|
746
|
+
{{ opt }}
|
|
747
|
+
</a-button>
|
|
748
|
+
</div>
|
|
749
|
+
</template>
|
|
750
|
+
<template v-else-if="hitl.method === 'confirm'">
|
|
751
|
+
<p class="hitl-message">
|
|
752
|
+
{{ hitl.message }}
|
|
753
|
+
</p>
|
|
754
|
+
<div class="hitl-row">
|
|
755
|
+
<a-button
|
|
756
|
+
type="primary"
|
|
757
|
+
@click="hitlRespond({ id: hitl.id, confirmed: true })"
|
|
758
|
+
>
|
|
759
|
+
{{ t('terminal.hitlConfirm') }}
|
|
760
|
+
</a-button>
|
|
761
|
+
<a-button @click="hitlRespond({ id: hitl.id, confirmed: false })">
|
|
762
|
+
{{ t('terminal.hitlDeny') }}
|
|
763
|
+
</a-button>
|
|
764
|
+
</div>
|
|
765
|
+
</template>
|
|
766
|
+
<template v-else>
|
|
767
|
+
<a-textarea
|
|
768
|
+
v-model:value="hitlText"
|
|
769
|
+
:rows="3"
|
|
770
|
+
:placeholder="hitl.placeholder"
|
|
771
|
+
class="hitl-textarea"
|
|
772
|
+
@press-enter="hitlRespond({ id: hitl.id, value: hitlText })"
|
|
773
|
+
/>
|
|
774
|
+
<div class="hitl-row">
|
|
775
|
+
<a-button
|
|
776
|
+
type="primary"
|
|
777
|
+
@click="hitlRespond({ id: hitl.id, value: hitlText })"
|
|
778
|
+
>
|
|
779
|
+
{{ t('terminal.hitlSubmit') }}
|
|
780
|
+
</a-button>
|
|
781
|
+
<a-button @click="hitlRespond({ id: hitl.id, cancelled: true })">
|
|
782
|
+
{{ t('terminal.hitlCancel') }}
|
|
783
|
+
</a-button>
|
|
784
|
+
</div>
|
|
785
|
+
</template>
|
|
786
|
+
</div>
|
|
787
|
+
|
|
788
|
+
<!-- xterm 终端 -->
|
|
789
|
+
<div
|
|
790
|
+
ref="hostEl"
|
|
791
|
+
class="term-host"
|
|
792
|
+
/>
|
|
793
|
+
|
|
794
|
+
<div class="term-hint aw-kicker">
|
|
795
|
+
{{ t('terminal.hint') }}
|
|
796
|
+
</div>
|
|
797
|
+
</div>
|
|
798
|
+
</a-drawer>
|
|
799
|
+
</template>
|
|
800
|
+
|
|
801
|
+
<style scoped>
|
|
802
|
+
/* 状态栏品牌块:终端图标入方形墨章(与侧栏墨方印同族,tokyo-night 冷暖对撞) */
|
|
803
|
+
.term-title {
|
|
804
|
+
display: inline-flex;
|
|
805
|
+
gap: 10px;
|
|
806
|
+
align-items: center;
|
|
807
|
+
}
|
|
808
|
+
.term-brand {
|
|
809
|
+
display: flex;
|
|
810
|
+
align-items: center;
|
|
811
|
+
justify-content: center;
|
|
812
|
+
width: 26px;
|
|
813
|
+
height: 26px;
|
|
814
|
+
font-size: 14px;
|
|
815
|
+
color: #9ece6a;
|
|
816
|
+
background: rgb(158 206 106 / 10%);
|
|
817
|
+
border: 1px solid rgb(158 206 106 / 22%);
|
|
818
|
+
border-radius: var(--radius-panel-sm);
|
|
819
|
+
}
|
|
820
|
+
.term-name {
|
|
821
|
+
font-size: 13.5px;
|
|
822
|
+
font-weight: 600;
|
|
823
|
+
letter-spacing: 0.01em;
|
|
824
|
+
color: #e6edf3;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
/* 状态 chip:等宽微字 + 语义点;色板对齐 xterm tokyo-night */
|
|
828
|
+
.ts-chip {
|
|
829
|
+
display: inline-flex;
|
|
830
|
+
gap: 6px;
|
|
831
|
+
align-items: center;
|
|
832
|
+
padding: 1px 8px;
|
|
833
|
+
font-size: 10.5px;
|
|
834
|
+
letter-spacing: 0.04em;
|
|
835
|
+
color: #a9b1d6;
|
|
836
|
+
background: rgb(65 72 104 / 26%);
|
|
837
|
+
border: 1px solid rgb(146 153 179 / 16%);
|
|
838
|
+
border-radius: var(--radius-pill);
|
|
839
|
+
}
|
|
840
|
+
.ts-chip.ts-pid { color: #7dcfff; }
|
|
841
|
+
.ts-chip.ts-sub {
|
|
842
|
+
font-family: var(--font-body);
|
|
843
|
+
color: #9aa5ce;
|
|
844
|
+
}
|
|
845
|
+
.ts-dot {
|
|
846
|
+
width: 6px;
|
|
847
|
+
height: 6px;
|
|
848
|
+
background: #565f89;
|
|
849
|
+
border-radius: 50%;
|
|
850
|
+
}
|
|
851
|
+
/* 连接态语义色 */
|
|
852
|
+
.ts-chip[data-state='open'] { color: #9ece6a; background: rgb(158 206 106 / 10%); border-color: rgb(158 206 106 / 22%); }
|
|
853
|
+
.ts-chip[data-state='open'] .ts-dot { background: #9ece6a; animation: ts-breathe 2.2s ease-in-out infinite; }
|
|
854
|
+
.ts-chip[data-state='retrying'] { color: #e0af68; background: rgb(224 175 104 / 10%); border-color: rgb(224 175 104 / 24%); }
|
|
855
|
+
.ts-chip[data-state='retrying'] .ts-dot { background: #e0af68; animation: ts-breathe 1.1s ease-in-out infinite; }
|
|
856
|
+
.ts-chip[data-state='connecting'] { color: #7aa2f7; }
|
|
857
|
+
.ts-chip[data-state='connecting'] .ts-dot { background: #7aa2f7; animation: ts-breathe 1.1s ease-in-out infinite; }
|
|
858
|
+
/* 会话态 */
|
|
859
|
+
.ts-chip[data-live='streaming'] { color: #7dcfff; background: rgb(125 207 255 / 10%); border-color: rgb(125 207 255 / 24%); }
|
|
860
|
+
.ts-chip[data-live='streaming']::before {
|
|
861
|
+
content: "";
|
|
862
|
+
width: 6px;
|
|
863
|
+
height: 6px;
|
|
864
|
+
background: #7dcfff;
|
|
865
|
+
border-radius: 50%;
|
|
866
|
+
animation: ts-breathe 0.9s ease-in-out infinite;
|
|
867
|
+
}
|
|
868
|
+
.ts-chip[data-live='running'] { color: #e0af68; background: rgb(224 175 104 / 10%); border-color: rgb(224 175 104 / 24%); }
|
|
869
|
+
.ts-chip[data-live='running']::before {
|
|
870
|
+
content: "";
|
|
871
|
+
width: 6px;
|
|
872
|
+
height: 6px;
|
|
873
|
+
background: #e0af68;
|
|
874
|
+
border-radius: 50%;
|
|
875
|
+
animation: ts-breathe 1.6s ease-in-out infinite;
|
|
876
|
+
}
|
|
877
|
+
.ts-chip[data-live='idle'] { color: #565f89; }
|
|
878
|
+
.ts-chip[data-live='idle']::before {
|
|
879
|
+
content: "";
|
|
880
|
+
width: 6px;
|
|
881
|
+
height: 6px;
|
|
882
|
+
background: #565f89;
|
|
883
|
+
border-radius: 50%;
|
|
884
|
+
}
|
|
885
|
+
@keyframes ts-breathe {
|
|
886
|
+
0%, 100% { opacity: 0.45; }
|
|
887
|
+
50% { opacity: 1; }
|
|
888
|
+
}
|
|
889
|
+
@media (prefers-reduced-motion: reduce) {
|
|
890
|
+
.ts-dot, .ts-chip::before { animation: none !important; opacity: 0.85; }
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
/* 工具按钮:暗面浮起 + 按压反馈 */
|
|
894
|
+
.term-toolbar {
|
|
895
|
+
display: flex;
|
|
896
|
+
gap: 8px;
|
|
897
|
+
align-items: center;
|
|
898
|
+
}
|
|
899
|
+
:deep(.ts-btn.ant-btn) {
|
|
900
|
+
display: inline-flex;
|
|
901
|
+
gap: 5px;
|
|
902
|
+
align-items: center;
|
|
903
|
+
color: #c0caf5;
|
|
904
|
+
background: rgb(65 72 104 / 30%);
|
|
905
|
+
border: 1px solid rgb(146 153 179 / 18%);
|
|
906
|
+
transition: background 0.15s ease, transform 0.12s ease;
|
|
907
|
+
}
|
|
908
|
+
:deep(.ts-btn.ant-btn:hover:not(:disabled)) { background: rgb(65 72 104 / 50%); }
|
|
909
|
+
:deep(.ts-btn.ant-btn:active:not(:disabled)) { transform: translateY(1px); }
|
|
910
|
+
:deep(.ts-btn.ant-btn:disabled) { opacity: 0.4; }
|
|
911
|
+
|
|
912
|
+
.term-body {
|
|
913
|
+
position: relative;
|
|
914
|
+
display: flex;
|
|
915
|
+
flex: 1;
|
|
916
|
+
min-height: 0;
|
|
917
|
+
flex-direction: column;
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.term-host {
|
|
921
|
+
flex: 1;
|
|
922
|
+
min-height: 0;
|
|
923
|
+
padding: 10px 12px 4px;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.term-hint {
|
|
927
|
+
padding: 6px 12px 8px;
|
|
928
|
+
color: rgb(214 222 232 / 45%);
|
|
929
|
+
background: #10151c;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
/* HITL 对话框:悬浮在终端上方(正在等待人类决策) */
|
|
933
|
+
.hitl-card {
|
|
934
|
+
position: absolute;
|
|
935
|
+
top: 14px;
|
|
936
|
+
right: 16px;
|
|
937
|
+
z-index: 10;
|
|
938
|
+
width: min(420px, calc(100% - 32px));
|
|
939
|
+
padding: 12px 14px;
|
|
940
|
+
background: rgb(23 30 40 / 97%);
|
|
941
|
+
border: 1px solid #bb9af7;
|
|
942
|
+
border-radius: var(--radius-panel-sm);
|
|
943
|
+
box-shadow: 0 8px 28px rgb(0 0 0 / 55%);
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
.hitl-head {
|
|
947
|
+
display: flex;
|
|
948
|
+
gap: 8px;
|
|
949
|
+
align-items: center;
|
|
950
|
+
margin-bottom: 8px;
|
|
951
|
+
color: #bb9af7;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.hitl-head > b {
|
|
955
|
+
color: #e6edf3;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
.hitl-head .ant-btn {
|
|
959
|
+
margin-left: auto;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
.hitl-question {
|
|
963
|
+
margin: 0 0 10px;
|
|
964
|
+
font-weight: 600;
|
|
965
|
+
color: #e6edf3;
|
|
966
|
+
white-space: pre-wrap;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.hitl-message {
|
|
970
|
+
margin: 0 0 10px;
|
|
971
|
+
color: #a9b4c0;
|
|
972
|
+
white-space: pre-wrap;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.hitl-options {
|
|
976
|
+
display: flex;
|
|
977
|
+
max-height: 300px;
|
|
978
|
+
flex-direction: column;
|
|
979
|
+
gap: 6px;
|
|
980
|
+
overflow: auto;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.hitl-options .ant-btn {
|
|
984
|
+
justify-content: flex-start;
|
|
985
|
+
text-align: left;
|
|
986
|
+
white-space: normal;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.hitl-row {
|
|
990
|
+
display: flex;
|
|
991
|
+
gap: 8px;
|
|
992
|
+
margin-top: 10px;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.hitl-textarea {
|
|
996
|
+
margin-top: 4px;
|
|
997
|
+
}
|
|
998
|
+
</style>
|
|
999
|
+
|
|
1000
|
+
<style>
|
|
1001
|
+
/* drawer 挂 body teleport,全局态:暗色标题/内容(xterm 主题一致) */
|
|
1002
|
+
.omp-terminal-drawer .ant-drawer-header {
|
|
1003
|
+
background: linear-gradient(180deg, #131a24 0%, #10151c 100%) !important;
|
|
1004
|
+
border-bottom: 1px solid #1d2733 !important;
|
|
1005
|
+
box-shadow: inset 0 1px 0 rgb(146 153 179 / 6%);
|
|
1006
|
+
}
|
|
1007
|
+
.omp-terminal-drawer .ant-drawer-header-title {
|
|
1008
|
+
color: #e6edf3;
|
|
1009
|
+
}
|
|
1010
|
+
</style>
|