mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-05 09:33:07 +00:00
- 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.
1.4 KiB
1.4 KiB
The navigation now shows only:
- Project section: Kanban Board, Agent Runner
- Tools section: Spec Editor, Context, AI Profiles
The "Agent Tools" item has been successfully removed from the side navigation.
Summary
I've successfully removed "Agent Tools" from the side navigation by making the following changes:
Files Modified:
-
apps/app/src/components/layout/sidebar.tsx- Removed the navigation item for "Agent Tools" (id: "tools")
- Removed the unused
Wrenchicon import from lucide-react
-
apps/app/src/components/ui/keyboard-map.tsx- Removed
tools: "Agent Tools"fromSHORTCUT_LABELS - Removed
tools: "navigation"fromSHORTCUT_CATEGORIES
- Removed
-
apps/app/src/store/app-store.ts- Removed
"tools"from theViewModetype union - Removed
tools: stringfrom theKeyboardShortcutsinterface - Removed
tools: "T"fromDEFAULT_KEYBOARD_SHORTCUTS
- Removed
-
apps/app/src/app/page.tsx- Removed the import for
AgentToolsView - Removed the
case "tools": return <AgentToolsView />from the view switch statement
- Removed the import for
Notes:
- The
agent-tools-view.tsxcomponent file was not deleted, as the user only requested to remove it from the navigation. The component remains in the codebase in case it's needed later. - The keyboard shortcut "T" is now available for other features if needed.
- All lint errors found are pre-existing in the codebase and not related to these changes.