diff --git a/frontend/src/layouts/MainLayout.vue b/frontend/src/layouts/MainLayout.vue
index c973f4a..ef2d594 100644
--- a/frontend/src/layouts/MainLayout.vue
+++ b/frontend/src/layouts/MainLayout.vue
@@ -82,25 +82,8 @@
-
-
+
+
-
-
-
-
+
@@ -216,7 +196,7 @@ import { Call, Application } from "@wailsio/runtime";
import { useAppStore } from "@/stores/app.store";
import { useConnectionStore } from "@/stores/connection.store";
import { useSessionStore } from "@/stores/session.store";
-import { useCopilotStore } from "@/stores/copilot.store";
+// copilot removed — will be replaced with embedded terminal running claude
import SidebarToggle from "@/components/sidebar/SidebarToggle.vue";
import ConnectionTree from "@/components/sidebar/ConnectionTree.vue";
import FileTree from "@/components/sftp/FileTree.vue";
@@ -230,7 +210,7 @@ import ThemePicker from "@/components/common/ThemePicker.vue";
import ImportDialog from "@/components/common/ImportDialog.vue";
import SettingsModal from "@/components/common/SettingsModal.vue";
import ConnectionEditDialog from "@/components/connections/ConnectionEditDialog.vue";
-import CopilotPanel from "@/components/copilot/CopilotPanel.vue";
+// CopilotPanel removed
const SFTP = "github.com/vstockwell/wraith/internal/sftp.SFTPService";
const CONN = "github.com/vstockwell/wraith/internal/connections.ConnectionService";
@@ -241,7 +221,7 @@ import type { FileEntry } from "@/composables/useSftp";
const appStore = useAppStore();
const connectionStore = useConnectionStore();
const sessionStore = useSessionStore();
-const copilotStore = useCopilotStore();
+// copilotStore removed
const sidebarWidth = ref(240);
const sidebarTab = ref("connections");
@@ -395,13 +375,6 @@ async function handleQuickConnect(): Promise {
/** Global keyboard shortcut handler. */
function handleKeydown(event: KeyboardEvent): void {
- // Ctrl+Shift+K or Cmd+Shift+K — toggle copilot panel
- if ((event.ctrlKey || event.metaKey) && event.shiftKey && event.key === "K") {
- event.preventDefault();
- copilotStore.togglePanel();
- return;
- }
-
// Ctrl+K or Cmd+K — open command palette
if ((event.ctrlKey || event.metaKey) && event.key === "k") {
event.preventDefault();
@@ -421,15 +394,4 @@ onUnmounted(() => {
diff --git a/main.go b/main.go
index 79fb0e5..1b2dbfb 100644
--- a/main.go
+++ b/main.go
@@ -40,7 +40,6 @@ func main() {
application.NewService(wraith.SSH),
application.NewService(wraith.SFTP),
application.NewService(wraith.RDP),
- application.NewService(wraith.AI),
application.NewService(wraith.Updater),
},
Assets: application.AssetOptions{