Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export type GeneralSettingsViewProps = {
const workspaceCards: { tab: SettingsTab; icon: typeof Sparkles; title: string; desc: string }[] = [
{ tab: "preferences", icon: Cog, title: "Preferences", desc: "Default model, reasoning, and compaction." },
{ tab: "permissions", icon: FolderLock, title: "Permissions", desc: "Authorized folders and file access." },
{ tab: "extensions", icon: Puzzle, title: "Extensions", desc: "MCPs, skills, plugins, and integrations." },
{ tab: "skills", icon: Sparkles, title: "Skills", desc: "Browse, edit, install, and share worker skills." },
{ tab: "extensions", icon: Puzzle, title: "Extensions", desc: "MCP apps, plugins, and integrations." },
{ tab: "advanced", icon: Wrench, title: "Advanced", desc: "Runtime, engine, and developer options." },
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export function getSettingsTabDescription(tab: SettingsTab) {
}

export function getWorkspaceSettingsTabs(): SettingsTab[] {
return ["preferences", "permissions", "extensions", "advanced"];
return ["preferences", "permissions", "skills", "extensions", "advanced"];
}

export function getGlobalSettingsTabs(developerMode: boolean): SettingsTab[] {
Expand Down
1 change: 1 addition & 0 deletions apps/app/src/react-app/shell/settings-route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ function parseSettingsPath(pathname: string): {
case "ai":
case "preferences":
case "permissions":
case "skills":
case "shell":
case "advanced":
case "appearance":
Expand Down