feat: remove "Agent Tools" from side navigation and related components

- Deleted the "Agent Tools" navigation item from the sidebar.
- Updated keyboard shortcuts and app store types to reflect the removal.
- Cleaned up imports and references in relevant files.
- Retained the `agent-tools-view.tsx` component for potential future use.
This commit is contained in:
Cody Seibert
2025-12-12 02:50:02 -05:00
parent ba24753630
commit b950f13e11
10 changed files with 69 additions and 58 deletions

View File

@@ -7,7 +7,6 @@ import { BoardView } from "@/components/views/board-view";
import { SpecView } from "@/components/views/spec-view";
import { AgentView } from "@/components/views/agent-view";
import { SettingsView } from "@/components/views/settings-view";
import { AgentToolsView } from "@/components/views/agent-tools-view";
import { InterviewView } from "@/components/views/interview-view";
import { ContextView } from "@/components/views/context-view";
import { ProfilesView } from "@/components/views/profiles-view";
@@ -171,8 +170,6 @@ export default function Home() {
return <AgentView />;
case "settings":
return <SettingsView />;
case "tools":
return <AgentToolsView />;
case "interview":
return <InterviewView />;
case "context":

View File

@@ -13,7 +13,6 @@ import {
Bot,
Folder,
X,
Wrench,
PanelLeft,
PanelLeftClose,
ChevronDown,
@@ -577,12 +576,6 @@ export function Sidebar() {
icon: BookOpen,
shortcut: shortcuts.context,
},
{
id: "tools",
label: "Agent Tools",
icon: Wrench,
shortcut: shortcuts.tools,
},
{
id: "profiles",
label: "AI Profiles",

View File

@@ -88,7 +88,6 @@ const SHORTCUT_LABELS: Record<keyof KeyboardShortcuts, string> = {
agent: "Agent Runner",
spec: "Spec Editor",
context: "Context",
tools: "Agent Tools",
settings: "Settings",
profiles: "AI Profiles",
toggleSidebar: "Toggle Sidebar",
@@ -109,7 +108,6 @@ const SHORTCUT_CATEGORIES: Record<keyof KeyboardShortcuts, "navigation" | "ui" |
agent: "navigation",
spec: "navigation",
context: "navigation",
tools: "navigation",
settings: "navigation",
profiles: "navigation",
toggleSidebar: "ui",

View File

@@ -9,7 +9,6 @@ export type ViewMode =
| "board"
| "agent"
| "settings"
| "tools"
| "interview"
| "context"
| "profiles"
@@ -113,7 +112,6 @@ export interface KeyboardShortcuts {
agent: string;
spec: string;
context: string;
tools: string;
settings: string;
profiles: string;
@@ -139,7 +137,6 @@ export const DEFAULT_KEYBOARD_SHORTCUTS: KeyboardShortcuts = {
agent: "A",
spec: "D",
context: "C",
tools: "T",
settings: "S",
profiles: "M",