feat(agent): refine ready state actions

This commit is contained in:
2026-07-15 18:30:21 +08:00
parent 055335e404
commit df2fb3ca38
10 changed files with 149 additions and 41 deletions
+1 -4
View File
@@ -5,10 +5,7 @@ import type { UIRegistry } from "./types";
const registry: UIRegistry = {
schema_version: "agent-ui-registry@1",
chart_grammars: ["echarts-safe-subset"],
components: [
{ id: "HistoryPanel", supportedSurfaces: ["side_panel", "canvas"] },
{ id: "ScadaPanel", supportedSurfaces: ["side_panel", "canvas"] }
],
components: [{ id: "HistoryPanel", supportedSurfaces: ["side_panel", "canvas"] }],
actions: [{ id: "zoom_to_map", supportedSurfaces: ["map_overlay"] }]
};