feat(ui): remove KI/Automation from agents sidebar, add automation to start page, remove from topbar

This commit is contained in:
Agent Zero
2026-08-17 12:03:41 +02:00
parent 7c6f33983d
commit 93a53a43f6
3 changed files with 2 additions and 26 deletions
-17
View File
@@ -20,23 +20,6 @@ const AGENT_TREE: AgentNode[] = [
{ title: 'Versionen', path: '/agents/versions' },
],
},
{
title: 'Automation',
icon: <Zap className="w-4 h-4" />,
children: [
{ title: 'Übersicht', path: '/agents/automation' },
{ title: 'Einstellungen', path: '/agents/automation-settings' },
],
},
{
title: 'KI',
icon: <Brain className="w-4 h-4" />,
children: [
{ title: 'Assistent', path: '/agents/ai-assistant' },
{ title: 'Einstellungen', path: '/agents/ai-settings' },
{ title: 'Proactive AI', path: '/agents/ai-proactive' },
],
},
];
function TreeItem({ node, depth }: { node: AgentNode; depth: number }) {