diff --git a/src/shared/constants/agentSkills.ts b/src/shared/constants/agentSkills.ts index 773e3df9b8..0d92d10a80 100644 --- a/src/shared/constants/agentSkills.ts +++ b/src/shared/constants/agentSkills.ts @@ -431,16 +431,3 @@ export const CURATED_SKILLS: CuratedSkillEntry[] = [ }, ]; -// ── Backward-compatible re-export ───────────────────────────────────────────── -// TODO(F7): Remove AGENT_SKILLS alias once AgentSkillsPageClient is rewritten. -// The old shape expected `endpoint` (singular string | null) instead of `endpoints` (array). -// This shim preserves the old dashboard until F7 rewrites it. - -/** @deprecated Use getCatalog() from src/lib/agentSkills/catalog.ts instead. */ -export const AGENT_SKILLS: AgentSkill[] = CURATED_SKILLS.map((s) => ({ - ...s, - endpoints: s.category === "api" ? [] : undefined, - cliCommands: s.category === "cli" ? [] : undefined, - rawUrl: getAgentSkillRawUrl(s.id), - githubUrl: getAgentSkillBlobUrl(s.id), -}));