feat(experts): add built-in expert skills with per-agent activation

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
xintaofei
2026-04-10 15:17:51 +08:00
parent 64d4e9c903
commit 5b613daded
73 changed files with 11199 additions and 30 deletions

View File

@@ -19,6 +19,7 @@ import {
PlugZap,
Server,
Settings,
Sparkles,
} from "lucide-react"
import { useTranslations } from "next-intl"
import { usePathname } from "next/navigation"
@@ -39,6 +40,7 @@ interface SettingsNavItem {
| "model_providers"
| "mcp"
| "skills"
| "experts"
| "shortcuts"
| "version_control"
| "chat_channels"
@@ -63,6 +65,11 @@ const SETTINGS_NAV_ITEMS: SettingsNavItem[] = [
labelKey: "skills",
icon: BookOpenText,
},
{
href: "/settings/experts",
labelKey: "experts",
icon: Sparkles,
},
{
href: "/settings/agents",
labelKey: "agents",