From a9d22ddbd0bdbb75929557e942ab4fdb3776441c Mon Sep 17 00:00:00 2001 From: Jonas Pacheco Date: Thu, 26 Mar 2026 17:18:49 -0300 Subject: [PATCH] feat: adicionar Automation Center no sidebar do /development MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Novo item "Automation Center" na sidebar do DevelopmentModule, ao lado de Skills Emergentes (OpenClaw). Renderiza AutomationCenter inline como os outros painéis. Co-Authored-By: Claude Sonnet 4.6 --- client/src/pages/DevelopmentModule.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/client/src/pages/DevelopmentModule.tsx b/client/src/pages/DevelopmentModule.tsx index 36ef143..b3fc9fc 100644 --- a/client/src/pages/DevelopmentModule.tsx +++ b/client/src/pages/DevelopmentModule.tsx @@ -26,8 +26,9 @@ import WorkflowBuilder from "./WorkflowBuilder"; import IDE from "./IDE"; import DevAgent from "@/components/lowcode/DevAgent"; import OpenClawPanel from "@/components/OpenClawPanel"; +import AutomationCenter from "./AutomationCenter"; -type ActiveTool = "home" | "doctypes" | "pages" | "workflows" | "dashboards" | "reports" | "scripts" | "ide" | "agent" | "openclaw"; +type ActiveTool = "home" | "doctypes" | "pages" | "workflows" | "dashboards" | "reports" | "scripts" | "ide" | "agent" | "openclaw" | "automationcenter"; interface Dashboard { id: number; @@ -269,6 +270,15 @@ export default function DevelopmentModule() { count: 0, category: "dev" }, + { + id: "automationcenter" as ActiveTool, + name: "Automation Center", + description: "Automações unificadas Central + XOS", + icon: Workflow, + color: "bg-blue-600", + count: 0, + category: "dev" + }, ]; const [, navigate] = useLocation(); @@ -716,6 +726,7 @@ export default function DevelopmentModule() { {activeTool === "ide" && } {activeTool === "agent" && } {activeTool === "openclaw" && } + {activeTool === "automationcenter" && }