feat(profiles): implement AI profile management system

Add new profiles view component with sidebar integration and state management for AI provider profiles. Users can now create and manage custom AI profiles for different tasks (e.g., heavy-task with Claude Opus, debugging with Codex).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
This commit is contained in:
Kacper
2025-12-10 13:09:20 +01:00
parent a78b6763de
commit 6970578536
6 changed files with 986 additions and 27 deletions

View File

@@ -21,6 +21,7 @@ import {
GripVertical,
Trash2,
Undo2,
UserCircle,
} from "lucide-react";
import {
DropdownMenu,
@@ -357,6 +358,11 @@ export function Sidebar() {
icon: Wrench,
shortcut: NAV_SHORTCUTS.tools,
},
{
id: "profiles",
label: "AI Profiles",
icon: UserCircle,
},
],
},
];