chore: hide agents skills tab from UI

Comment out the Skills tab entry, view rendering, and breadcrumb
in AgentDetail so it's not visible. The code is preserved for
later re-enablement.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
dotta
2026-03-18 07:11:31 -05:00
parent 3e88afb64a
commit cc1620e4fe

View File

@@ -701,8 +701,8 @@ export function AgentDetail() {
crumbs.push({ label: `Run ${urlRunId.slice(0, 8)}` });
} else if (activeView === "configuration") {
crumbs.push({ label: "Configuration" });
} else if (activeView === "skills") {
crumbs.push({ label: "Skills" });
// } else if (activeView === "skills") { // TODO: bring back later
// crumbs.push({ label: "Skills" });
} else if (activeView === "runs") {
crumbs.push({ label: "Runs" });
} else if (activeView === "budget") {
@@ -862,7 +862,7 @@ export function AgentDetail() {
items={[
{ value: "dashboard", label: "Dashboard" },
{ value: "configuration", label: "Configuration" },
{ value: "skills", label: "Skills" },
// { value: "skills", label: "Skills" }, // TODO: bring back later
{ value: "runs", label: "Runs" },
{ value: "budget", label: "Budget" },
]}
@@ -955,11 +955,11 @@ export function AgentDetail() {
/>
)}
{activeView === "skills" && (
{/* {activeView === "skills" && (
<SkillsTab
agent={agent}
/>
)}
)} */}{/* TODO: bring back later */}
{activeView === "runs" && (
<RunsTab