├── .build └── .keep ├── .github └── workflows │ ├── build-artifact.yml │ ├── claude.yml │ ├── main.yml │ ├── pr.yml │ ├── release-next.yml │ ├── release.yml │ ├── reusable-build-release-app.yml │ ├── reusable-test-swift-app.yml │ └── rocket-merge.yml ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .vscode └── settings.json ├── Claude.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── app ├── .gitignore ├── .swift-version ├── Claude.md ├── command Extension │ ├── Commands │ │ ├── CmdCommand.swift │ │ ├── Command.swift │ │ └── UserDefinedXcodeShortcuts │ │ │ ├── BaseUserDefinedXcodeShortcutCommand.swift │ │ │ ├── UserDefinedXcodeShortcut0Command.swift │ │ │ ├── UserDefinedXcodeShortcut1Command.swift │ │ │ ├── UserDefinedXcodeShortcut2Command.swift │ │ │ ├── UserDefinedXcodeShortcut3Command.swift │ │ │ ├── UserDefinedXcodeShortcut4Command.swift │ │ │ ├── UserDefinedXcodeShortcut5Command.swift │ │ │ ├── UserDefinedXcodeShortcut6Command.swift │ │ │ ├── UserDefinedXcodeShortcut7Command.swift │ │ │ ├── UserDefinedXcodeShortcut8Command.swift │ │ │ └── UserDefinedXcodeShortcut9Command.swift │ ├── Extension.debug.xcconfig │ ├── Extension.release.xcconfig │ ├── Info.plist │ ├── LocalServer.swift │ ├── SourceEditorExtension.swift │ ├── XCSourceTextBuffer+SourceTextBuffer.swift │ ├── XcodeExtensionError.swift │ ├── command_Extension.entitlements │ └── readme.md ├── command app launcher │ ├── AppLauncher.entitlements │ ├── Info.plist │ └── main.swift ├── command.debug.xcconfig ├── command.release.xcconfig ├── command.shared.xcconfig ├── command.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ ├── IDETemplateMacros.plist │ │ └── xcschemes │ │ ├── command Extension.xcscheme │ │ └── command.xcscheme ├── command │ ├── App.debug.xcconfig │ ├── App.release.xcconfig │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.debug-backup.appiconset │ │ │ ├── 1024.png │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 256.png │ │ │ ├── 32.png │ │ │ ├── 512.png │ │ │ ├── 64.png │ │ │ └── Contents.json │ │ ├── AppIcon.debug.appiconset │ │ │ ├── Contents.json │ │ │ ├── logo_dark_1024.png │ │ │ ├── logo_dark_128.png │ │ │ ├── logo_dark_16.png │ │ │ ├── logo_dark_256.png │ │ │ ├── logo_dark_32.png │ │ │ ├── logo_dark_512.png │ │ │ └── logo_dark_64.png │ │ ├── AppIcon.release-backup.appiconset │ │ │ ├── 1024.png │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 256.png │ │ │ ├── 32.png │ │ │ ├── 512.png │ │ │ ├── 64.png │ │ │ └── Contents.json │ │ ├── AppIcon.release.appiconset │ │ │ ├── Contents.json │ │ │ ├── logo_light_1024.png │ │ │ ├── logo_light_128.png │ │ │ ├── logo_light_16.png │ │ │ ├── logo_light_256.png │ │ │ ├── logo_light_32.png │ │ │ ├── logo_light_512.png │ │ │ └── logo_light_64.png │ │ ├── Contents.json │ │ └── xcodeproj-icon.imageset │ │ │ ├── Contents.json │ │ │ └── xcodeproj-icon.png │ ├── Info.plist │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── appLauncher.plist │ ├── command.entitlements │ └── commandApp.swift ├── contributing.md ├── fastlane │ ├── Appfile │ ├── Fastfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── Matchfile │ ├── Pluginfile │ ├── README.md │ ├── appcast.template.xml │ ├── appcast.xml │ └── xcodebuild_logger.sh ├── modules │ ├── App │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── App+PostLaunchActions.swift │ │ │ ├── App.swift │ │ │ ├── AppLauncherManager.swift │ │ │ ├── AppScope.swift │ │ │ ├── AppScopeStorage.swift │ │ │ ├── Dependencies.swift │ │ │ ├── HostAppXPCService.swift │ │ │ ├── Windows │ │ │ │ ├── SetupWindow.swift │ │ │ │ ├── SidePanel.swift │ │ │ │ ├── WindowsView.swift │ │ │ │ └── WindowsViewModel.swift │ │ │ ├── XcodeKeyboardShortcuts.swift │ │ │ └── plugins │ │ │ │ ├── Routes.swift │ │ │ │ └── ToolsPlugin.swift │ │ └── Tests │ │ │ ├── UserDefinedXcodeShortcutValidationTests.swift │ │ │ ├── WindowsViewModelTests.swift │ │ │ └── XcodeKeyboardShortcutsTests.swift │ ├── AppExtension │ │ ├── Module.swift │ │ └── Sources │ │ │ ├── AppExtension.swift │ │ │ ├── AppExtensionScope.swift │ │ │ ├── Dependencies.swift │ │ │ └── SandboxedFileManager.swift │ ├── AppLauncher │ │ ├── Module.swift │ │ └── Sources │ │ │ ├── AppLauncher.swift │ │ │ ├── AppLauncherScope.swift │ │ │ ├── AppLauncherXPCService.swift │ │ │ ├── Dependencies.swift │ │ │ └── XcodeActivityMonitor.swift │ ├── Package.resolved │ ├── Package.swift │ ├── Package.template.swift │ ├── coreui │ │ ├── CodePreview │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── CodePreview+Previews.swift │ │ │ │ ├── CodePreview.swift │ │ │ │ ├── DiffView+Previews.swift │ │ │ │ ├── DiffView+helpers.swift │ │ │ │ ├── DiffView.swift │ │ │ │ ├── FileChangeExpandablePill+Previews.swift │ │ │ │ ├── FileChangeExpandablePill.swift │ │ │ │ ├── FileDiffViewModel+helpers.swift │ │ │ │ └── FileDiffViewModel.swift │ │ │ └── Tests │ │ │ │ └── DiffViewModelTests.swift │ │ ├── DLS │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── AttributedString+helpers.swift │ │ │ │ ├── Colors.swift │ │ │ │ ├── CoreUI │ │ │ │ │ ├── AppLogo.swift │ │ │ │ │ ├── CMDLogoDrawingAnimation.swift │ │ │ │ │ ├── CircularProgressIndicator.swift │ │ │ │ │ ├── HoverReader.swift │ │ │ │ │ ├── Icon.swift │ │ │ │ │ ├── Link.swift │ │ │ │ │ ├── LongText+Preview.swift │ │ │ │ │ ├── LongText.swift │ │ │ │ │ ├── PopUpSelectionMenu+Preview.swift │ │ │ │ │ ├── PopUpSelectionMenu.swift │ │ │ │ │ ├── RichTextEditor │ │ │ │ │ │ ├── RichTextEditor+Preview.swift │ │ │ │ │ │ ├── RichTextEditor+extensions.swift │ │ │ │ │ │ ├── RichTextEditor.swift │ │ │ │ │ │ └── readme.md │ │ │ │ │ ├── RoundedCorner.swift │ │ │ │ │ ├── SVGImage.swift │ │ │ │ │ ├── ThreeDotsLoadingAnimation.swift │ │ │ │ │ ├── WarningView+Preview.swift │ │ │ │ │ ├── WarningView.swift │ │ │ │ │ ├── WrappingHStack.swift │ │ │ │ │ ├── buttons │ │ │ │ │ │ ├── BackButton.swift │ │ │ │ │ │ ├── Button.swift │ │ │ │ │ │ ├── HoveredButton.swift │ │ │ │ │ │ ├── IconButton.swift │ │ │ │ │ │ ├── IconsLabelButton.swift │ │ │ │ │ │ ├── RoundedButton.swift │ │ │ │ │ │ └── TappableBackgroundModifier.swift │ │ │ │ │ └── viewModifiers │ │ │ │ │ │ ├── acceptClickThrough.swift │ │ │ │ │ │ ├── frame.swift │ │ │ │ │ │ ├── isHidden.swift │ │ │ │ │ │ ├── onOutsideTap.swift │ │ │ │ │ │ └── readSize.swift │ │ │ │ ├── Fonts.swift │ │ │ │ └── Resources │ │ │ │ │ ├── cmd-logo.svg │ │ │ │ │ └── mcp.svg │ │ │ └── Tests │ │ │ │ └── CoreUI │ │ │ │ └── RichTextEditorTests.swift │ │ ├── DefaultToolView │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── DefaultToolUseView+Preview.swift │ │ │ │ ├── DefaultToolUseView.swift │ │ │ │ └── DefaultToolUseViewModel+ViewRepresentable.swift │ │ │ └── Tests │ │ │ │ └── UnknownToolTests.swift │ │ ├── FileIcon │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── FileIcon.swift │ │ │ │ └── Resources │ │ │ │ └── fileIcons │ │ │ │ ├── extensionToLanguage.json │ │ │ │ ├── icons.tar.gz │ │ │ │ └── swift-preferred.svg │ │ ├── Markdown │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── Markdown.swift │ │ │ │ └── MarkdownStyle.swift │ │ │ └── Tests │ │ │ │ └── NSAttributedStringExtensionTests.swift │ │ └── ToolUI │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ ├── ToolErrorView+Preview.swift │ │ │ └── ToolErrorView.swift │ ├── featureInterfaces │ │ ├── GithubCopilotFeatureInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ └── GithubCopilotFeatureInterface.swift │ │ └── SettingsFeatureInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ └── SettingsFeatureInterface.swift │ ├── features │ │ ├── Chat │ │ │ ├── ChatFeature │ │ │ │ ├── Module.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── ChatCompletion │ │ │ │ │ │ └── ChatViewModel+ChatCompletionServiceDelegate.swift │ │ │ │ │ ├── ChatHistory │ │ │ │ │ │ ├── ChatHistoryView+Preview.swift │ │ │ │ │ │ ├── ChatHistoryView.swift │ │ │ │ │ │ └── ChatHistoryViewModel.swift │ │ │ │ │ ├── ChatThread │ │ │ │ │ │ ├── ChatEvent.swift │ │ │ │ │ │ ├── ChatMessageListView+Preview.swift │ │ │ │ │ │ ├── ChatMessageListView.swift │ │ │ │ │ │ ├── ChatThreadContext.swift │ │ │ │ │ │ ├── ChatThreadViewModel+helpers.swift │ │ │ │ │ │ ├── ChatThreadViewModel.swift │ │ │ │ │ │ └── TokenUsageEvent.swift │ │ │ │ │ ├── ChatView+Preview.swift │ │ │ │ │ ├── ChatView.swift │ │ │ │ │ ├── ChatViewModel.swift │ │ │ │ │ ├── ChatWidgets │ │ │ │ │ │ ├── AppUpdateWidget+Preview.swift │ │ │ │ │ │ └── AppUpdateWidget.swift │ │ │ │ │ ├── CheckpointView+Previews.swift │ │ │ │ │ ├── CheckpointView.swift │ │ │ │ │ ├── DefaultChatContext.swift │ │ │ │ │ ├── EmptyChatView+Previews.swift │ │ │ │ │ ├── EmptyChatView.swift │ │ │ │ │ ├── Input │ │ │ │ │ │ ├── Attachments │ │ │ │ │ │ │ ├── AttachmentItemView+Preview.swift │ │ │ │ │ │ │ ├── AttachmentItemView.swift │ │ │ │ │ │ │ ├── AttachmentModel+extensions.swift │ │ │ │ │ │ │ ├── AttachmentPreview+Preview.swift │ │ │ │ │ │ │ ├── AttachmentPreview.swift │ │ │ │ │ │ │ └── AttachmentsView.swift │ │ │ │ │ │ ├── ChatInputView+Preview.swift │ │ │ │ │ │ ├── ChatInputView+attributedString.swift │ │ │ │ │ │ ├── ChatInputView.swift │ │ │ │ │ │ ├── ChatInputViewModel.swift │ │ │ │ │ │ ├── ChatModeView.swift │ │ │ │ │ │ ├── DragDropAreaView.swift │ │ │ │ │ │ ├── ImageAttachmentPickerView.swift │ │ │ │ │ │ ├── QueuedMessagesView+Previews.swift │ │ │ │ │ │ ├── QueuedMessagesView.swift │ │ │ │ │ │ ├── SearchResultsView+Preview.swift │ │ │ │ │ │ ├── SearchResultsView.swift │ │ │ │ │ │ └── ToolApprovalView.swift │ │ │ │ │ ├── Message │ │ │ │ │ │ ├── ChatMessageView+Previews.swift │ │ │ │ │ │ ├── ChatMessageView.swift │ │ │ │ │ │ ├── ChatMessageViewModel.swift │ │ │ │ │ │ ├── CodeBlockElement.swift │ │ │ │ │ │ ├── ReasoningMessageView+Preview.swift │ │ │ │ │ │ ├── ReasoningMessageView.swift │ │ │ │ │ │ └── TextFormatter.swift │ │ │ │ │ ├── Persistence │ │ │ │ │ │ └── ChatModelConversions.swift │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── compactContext.svg │ │ │ │ │ │ └── xcodeproj-icon.png │ │ │ │ │ ├── TabBarView+Preview.swift │ │ │ │ │ └── TabBarView.swift │ │ │ │ └── Tests │ │ │ │ │ ├── ChatCompletion │ │ │ │ │ ├── ChatViewModel+ChatCompletionServiceDelegateTests.swift │ │ │ │ │ └── StringExtensionTests.swift │ │ │ │ │ ├── ChatHistory │ │ │ │ │ └── ChatHistoryViewModelTests.swift │ │ │ │ │ ├── ChatMessageViewModelTests.swift │ │ │ │ │ ├── ChatThreadViewModel+helpersTests.swift │ │ │ │ │ ├── ChatThreadViewModelTests.swift │ │ │ │ │ ├── ChatViewModelTests.swift │ │ │ │ │ ├── Input │ │ │ │ │ ├── ChatInputViewModelKeyboardTests.swift │ │ │ │ │ ├── ChatInputViewModelTests.swift │ │ │ │ │ ├── DragDropTests.swift │ │ │ │ │ ├── SearchTests.swift │ │ │ │ │ ├── TextInputTests.swift │ │ │ │ │ └── helpers.swift │ │ │ │ │ ├── Message │ │ │ │ │ ├── ChatMessageReasoningContentTests.swift │ │ │ │ │ └── TextFormatterTests.swift │ │ │ │ │ └── Persistence │ │ │ │ │ └── ChatModelConversionsTests.swift │ │ │ └── ChatFeatureInterface │ │ │ │ └── Module.swift │ │ ├── CodeCompletionFeature │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── CodeCompletionView+Preview.swift │ │ │ │ ├── CodeCompletionView.swift │ │ │ │ ├── CodeCompletionViewModel.swift │ │ │ │ ├── CodeCompletionWindow.swift │ │ │ │ ├── CodeCompletionWindowsManager.swift │ │ │ │ ├── FontHelpers.swift │ │ │ │ ├── InlineWindow.swift │ │ │ │ ├── KeyEventHandler.swift │ │ │ │ └── XcodeScreenshoter.swift │ │ ├── GithubCopilotFeature │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── Builder.swift │ │ │ │ ├── GithubCopilotStatusView+Previews.swift │ │ │ │ ├── GithubCopilotStatusView.swift │ │ │ │ └── GithubCopilotStatusViewModel.swift │ │ ├── Onboarding │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── Builder.swift │ │ │ │ ├── OSPermissions │ │ │ │ │ ├── AccessibilityPermissionView.swift │ │ │ │ │ ├── PermissionsView.swift │ │ │ │ │ ├── XcodeAIProviderPermissionView.swift │ │ │ │ │ └── XcodeExtensionPermissionView.swift │ │ │ │ ├── OnboardingCompleteView.swift │ │ │ │ ├── OnboardingView+Preview.swift │ │ │ │ ├── OnboardingView.swift │ │ │ │ ├── OnboardingViewModel.swift │ │ │ │ ├── Resources │ │ │ │ │ ├── Xcode-intelligence.png │ │ │ │ │ └── Xcode.svg │ │ │ │ └── WelcomeView.swift │ │ │ ├── Tests │ │ │ │ └── OnboardingViewModelTests.swift │ │ │ └── readme.md │ │ └── SettingsFeature │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ ├── AISettings │ │ │ │ ├── AIModels │ │ │ │ │ ├── ModelsView+Previews.swift │ │ │ │ │ └── ModelsView.swift │ │ │ │ ├── AIProviders │ │ │ │ │ ├── AIProviderView.swift │ │ │ │ │ ├── AIProvidersView+Previews.swift │ │ │ │ │ ├── AIProvidersView.swift │ │ │ │ │ ├── ExternalAgentView+Previews.swift │ │ │ │ │ └── ExternalAgentView.swift │ │ │ │ └── LLMSettingsViewModel.swift │ │ │ ├── AboutSettingsView+Previews.swift │ │ │ ├── AboutSettingsView.swift │ │ │ ├── ChatModeView+Previews.swift │ │ │ ├── ChatModeView.swift │ │ │ ├── CodeCompletionSettingsView+Previews.swift │ │ │ ├── CodeCompletionSettingsView.swift │ │ │ ├── InternalSettingsView+Previews.swift │ │ │ ├── InternalSettingsView.swift │ │ │ ├── KeyboardShortcutsSettingsView+Previews.swift │ │ │ ├── KeyboardShortcutsSettingsView.swift │ │ │ ├── MCPSettingsView+Previews.swift │ │ │ ├── MCPSettingsView.swift │ │ │ ├── SettingsBuilder.swift │ │ │ ├── SettingsView+Previews.swift │ │ │ ├── SettingsView.swift │ │ │ ├── SettingsViewModel.swift │ │ │ ├── SharedUI │ │ │ │ ├── DisabledOverlay.swift │ │ │ │ ├── InternalSettingsRow.swift │ │ │ │ └── RadioButton.swift │ │ │ ├── ToolConfigurationViewModel.swift │ │ │ ├── ToolsConfigurationView.swift │ │ │ ├── UserDefinedXcodeShortcutsSettingsView+Previews.swift │ │ │ └── UserDefinedXcodeShortcutsSettingsView.swift │ │ │ └── Tests │ │ │ ├── LLMSettingsViewModelTests.swift │ │ │ ├── ModelsViewTests.swift │ │ │ └── SettingsViewModelTests.swift │ ├── foundations │ │ ├── AccessibilityFoundation │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── AXNotification.swift │ │ │ │ ├── AXUIElement+finding.swift │ │ │ │ ├── AXUIelement+extension.swift │ │ │ │ └── AnyAXUIElement.swift │ │ │ └── Tests │ │ │ │ ├── AXUIElement+findingTests.swift │ │ │ │ └── AccessibilityFoundationTests.swift │ │ ├── AccessibilityObjCFoundation │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── WindowActivation.m │ │ │ │ └── include │ │ │ │ ├── WindowActivation.h │ │ │ │ └── module.modulemap │ │ ├── AppFoundation │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── AppError.swift │ │ │ │ ├── Bundle+Build.swift │ │ │ │ ├── Collection+helpers.swift │ │ │ │ ├── DoubleOptional.swift │ │ │ │ ├── EmptyObject.swift │ │ │ │ ├── KeyModifier.swift │ │ │ │ ├── ProcessInfo+helpers.swift │ │ │ │ ├── String+helpers.swift │ │ │ │ └── URL+helpers.swift │ │ │ └── Tests │ │ │ │ ├── AppFoundationTests.swift │ │ │ │ └── ErrorTests.swift │ │ ├── ChatAppEvents │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ └── ChatAppEvents.swift │ │ ├── ChatFoundation │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── ChatMode.swift │ │ │ │ └── StreamableChatMessageContent.swift │ │ │ └── Tests │ │ │ │ └── ChatFoundationTests.swift │ │ ├── CodeCompletionFoundation │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── CompletionSuggestion.swift │ │ │ │ └── Types.swift │ │ ├── ConcurrencyFoundation │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── Atomic.swift │ │ │ │ ├── Bindable+helpers.swift │ │ │ │ ├── BroadcastedStream.swift │ │ │ │ ├── CurrentValueStream.swift │ │ │ │ ├── Future+extension.swift │ │ │ │ ├── Observable+helpers.swift │ │ │ │ ├── ObservableObjectBox.swift │ │ │ │ ├── ObservableValue.swift │ │ │ │ ├── ReadonlyCurrentValueSubject.swift │ │ │ │ ├── ReplaceableTaskQueue.swift │ │ │ │ ├── ReplayStrategy.swift │ │ │ │ ├── RetainedPublisher.swift │ │ │ │ ├── RetainingSubscription.swift │ │ │ │ ├── TaskQueue.swift │ │ │ │ ├── UncheckedSendable.swift │ │ │ │ └── helpers.swift │ │ │ ├── Tests │ │ │ │ ├── BroadcastedStreamTests.swift │ │ │ │ ├── CurrentValueStreamTests.swift │ │ │ │ ├── FutureExtensionTests.swift │ │ │ │ ├── ObservableHelpersTests.swift │ │ │ │ ├── ObservableObjectBoxTests.swift │ │ │ │ ├── ObservableValueTests.swift │ │ │ │ ├── ReadonlyCurrentValueSubjectTests.swift │ │ │ │ ├── ReplaceableTaskQueueTests.swift │ │ │ │ ├── RetainedPublisherTests.swift │ │ │ │ ├── RetainingSubscriptionTests.swift │ │ │ │ ├── TaskQueueTests.swift │ │ │ │ └── helpers.swift │ │ │ └── readme.md │ │ ├── DependencyFoundation │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ └── DependencyFoundation.swift │ │ ├── FileDiffFoundation │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── FileDiff+applyLLMSuggestion.swift │ │ │ │ ├── FileDiff+characterDiffToChangedRanges.swift │ │ │ │ ├── FileDiff+getColoredDiff.swift │ │ │ │ ├── FileDiff+getGitDiff.swift │ │ │ │ ├── FileDiff+gitDiffToChangedRanges.swift │ │ │ │ ├── FileDiff+rebaseChange.swift │ │ │ │ ├── FileDiff.swift │ │ │ │ ├── SourceModificationHelpers.swift │ │ │ │ └── XCSourceTextBufferI.swift │ │ │ └── Tests │ │ │ │ ├── SourceModificationHelpers+Mock.swift │ │ │ │ ├── SourceModificationHelpersTests.swift │ │ │ │ ├── __Snapshots__ │ │ │ │ └── getColoredDiffTests │ │ │ │ │ ├── testAdditionInCode.1.html │ │ │ │ │ ├── testCustomColors.1.html │ │ │ │ │ ├── testMultipleChanges.1.html │ │ │ │ │ ├── testRealWorldExample.1.html │ │ │ │ │ ├── testSimpleAddition.1.html │ │ │ │ │ └── testSimpleRemoval.1.html │ │ │ │ ├── applyLLMSuggestionTests.swift │ │ │ │ ├── characterDiffToLineChangesTests.swift │ │ │ │ ├── getColoredDiffTests.swift │ │ │ │ ├── getGitDiffTests.swift │ │ │ │ ├── gitDiffToChangedRangesTests.swift │ │ │ │ └── rebaseChangesTests.swift │ │ ├── FileDiffTypesFoundation │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ └── Types.swift │ │ ├── FoundationInterfaces │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── FSEventsWatcher.swift │ │ │ │ ├── FileManager+Dependency.swift │ │ │ │ ├── FileManager+Mock.swift │ │ │ │ ├── FileManager.swift │ │ │ │ ├── UserDefaults+Keychain.swift │ │ │ │ ├── UserDefaultsI+Dependency.swift │ │ │ │ ├── UserDefaultsI+Mock.swift │ │ │ │ └── UserDefaultsI.swift │ │ │ ├── Tests │ │ │ │ └── FileManagerTests.swift │ │ │ └── readme.md │ │ ├── JSONFoundation │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── JSON.swift │ │ │ │ └── JSONCoder+helpers.swift │ │ │ └── Tests │ │ │ │ └── JSONTests.swift │ │ ├── LLMFoundation │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── AIModel.swift │ │ │ │ ├── AIProvider.swift │ │ │ │ ├── ExternalAgent.swift │ │ │ │ ├── ModelPricing.swift │ │ │ │ └── providers │ │ │ │ │ ├── Anthropic.swift │ │ │ │ │ ├── ClaudeCode.swift │ │ │ │ │ ├── Codex.swift │ │ │ │ │ ├── Gemini.swift │ │ │ │ │ ├── Groq.swift │ │ │ │ │ ├── Inception.swift │ │ │ │ │ ├── Mistral.swift │ │ │ │ │ ├── OpenAI.swift │ │ │ │ │ └── OpenRouter.swift │ │ │ └── Tests │ │ │ │ └── LLMFoundationTests.swift │ │ ├── RoutingFoundation │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── InternalHelpers.swift │ │ │ │ ├── RoutableNavigationStack.swift │ │ │ │ ├── Route.swift │ │ │ │ └── Router+Previews.swift │ │ │ └── Tests │ │ │ │ └── RouteTests.swift │ │ ├── SharedUtilsFoundation │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ └── OpenHostApp.swift │ │ ├── SharedValuesFoundation │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ └── SharedValuesFoundation.swift │ │ ├── SwiftTesting │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── Expectation.swift │ │ │ │ ├── JSONTestHelpers.swift │ │ │ │ ├── Observable+onchange.swift │ │ │ │ ├── TestError.swift │ │ │ │ └── nextTick.swift │ │ │ └── Tests │ │ │ │ └── Test.swift │ │ ├── ToolFoundation │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── DefaultTool │ │ │ │ │ ├── DefaultToolUseViewModel.swift │ │ │ │ │ └── UnknownTool.swift │ │ │ │ ├── Encoding.swift │ │ │ │ ├── TestTool.swift │ │ │ │ ├── Tool.swift │ │ │ │ ├── ToolsPlugin+Dependency.swift │ │ │ │ └── ToolsPlugin.swift │ │ │ └── Tests │ │ │ │ ├── ToolErrorTests.swift │ │ │ │ ├── ToolsPluginTests.swift │ │ │ │ └── UnknownToolTests.swift │ │ ├── ToolTypesFoundation │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── ToolsSchema.generated.swift │ │ │ │ └── tools.generated.swift │ │ └── XcodeThemeFoundation │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ ├── XcodeThemeController.swift │ │ │ └── XcodeThemeParser.swift │ ├── macros │ │ └── ThreadSafe │ │ │ ├── Macro │ │ │ ├── MacroPlugin.swift │ │ │ └── ThreadSafe.swift │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ └── Plugin.swift │ │ │ └── Tests │ │ │ ├── ThreadSafeInitializerMacroTests.swift │ │ │ ├── ThreadSafeMacroIntegrationTests.swift │ │ │ └── ThreadSafeMacroTests.swift │ ├── plugins │ │ ├── ExtensionCommandHandler │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ └── ExtensionCommandHandler.swift │ │ └── tools │ │ │ ├── ACPTool │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── ACPTool.swift │ │ │ │ ├── ACPToolView+Preview.swift │ │ │ │ ├── ACPToolView.swift │ │ │ │ └── ACPToolViewModel.swift │ │ │ ├── AskFollowUpTool │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── AskFollowUpTool.swift │ │ │ │ ├── AskFollowUpToolView+Preview.swift │ │ │ │ └── AskFollowUpToolView.swift │ │ │ └── Tests │ │ │ │ ├── AskFollowUpToolEncodingTests.swift │ │ │ │ ├── AskFollowUpToolStreamRepresentationTests.swift │ │ │ │ └── AskFollowUpToolTests.swift │ │ │ ├── BuildTool │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── BuildTool.swift │ │ │ │ ├── BuildToolView+Preview.swift │ │ │ │ └── BuildToolView.swift │ │ │ └── Tests │ │ │ │ ├── BuildToolEncodingTests.swift │ │ │ │ └── BuildToolStreamRepresentationTests.swift │ │ │ ├── ClaudeCodeTools │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── Glob │ │ │ │ │ ├── ClaudeCodeGlobTool.swift │ │ │ │ │ ├── ClaudeCodeGlobToolView+Preview.swift │ │ │ │ │ ├── ClaudeCodeGlobToolView.swift │ │ │ │ │ ├── GlobContent.swift │ │ │ │ │ └── GlobTool.swift │ │ │ │ ├── TodoWrite │ │ │ │ │ ├── ClaudeCodeTodoWriteTool.swift │ │ │ │ │ ├── ClaudeCodeTodoWriteToolView+Preview.swift │ │ │ │ │ ├── ClaudeCodeTodoWriteToolView.swift │ │ │ │ │ └── PlanTool.swift │ │ │ │ └── WebSearch │ │ │ │ │ ├── ClaudeCodeWebSearchTool.swift │ │ │ │ │ ├── ClaudeCodeWebSearchToolView+Preview.swift │ │ │ │ │ ├── ClaudeCodeWebSearchToolView.swift │ │ │ │ │ └── WebSearchTool.swift │ │ │ └── Tests │ │ │ │ ├── ClaudeCodeGlobTool+EncodingTests.swift │ │ │ │ ├── ClaudeCodeGlobTool+StreamRepresentationTests.swift │ │ │ │ ├── ClaudeCodeGlobToolTests.swift │ │ │ │ ├── ClaudeCodeTodoWriteTool+EncodingTests.swift │ │ │ │ ├── ClaudeCodeTodoWriteTool+StreamRepresentationTests.swift │ │ │ │ ├── ClaudeCodeTodoWriteToolTests.swift │ │ │ │ ├── ClaudeCodeWebSearchTool+EncodingTests.swift │ │ │ │ ├── ClaudeCodeWebSearchTool+StreamRepresentationTests.swift │ │ │ │ └── ClaudeCodeWebSearchToolTests.swift │ │ │ ├── EditFilesTool │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── ClaudeCodeEditTool.swift │ │ │ │ ├── ClaudeCodeMultiEditTool.swift │ │ │ │ ├── ClaudeCodeWriteTool.swift │ │ │ │ ├── EditFilesTool.swift │ │ │ │ ├── EditFilesToolUseViewModel.swift │ │ │ │ ├── EditFilesToolView.swift │ │ │ │ └── helpers.swift │ │ │ └── Tests │ │ │ │ ├── EditFileToolTests.swift │ │ │ │ ├── EditFilesTool+EncodingTests.swift │ │ │ │ ├── EditFilesTool+StreamRepresentationTests.swift │ │ │ │ └── ToolUseViewModelTests.swift │ │ │ ├── ExecuteCommandTool │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── ClaudeCodeBashTool.swift │ │ │ │ ├── ExecuteCommandTool.swift │ │ │ │ ├── ExecuteCommandToolView+Preview.swift │ │ │ │ ├── ExecuteCommandToolView.swift │ │ │ │ └── ExecuteCommandToolViewModel.swift │ │ │ └── Tests │ │ │ │ ├── ExecuteCommandTool+EncodingTests.swift │ │ │ │ ├── ExecuteCommandTool+StreamRepresentationTests.swift │ │ │ │ └── ExecuteCommandToolTests.swift │ │ │ ├── LSTool │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── ClaudeCodeLSTool.swift │ │ │ │ ├── LSTool.swift │ │ │ │ ├── LSToolView+Preview.swift │ │ │ │ ├── LSToolView.swift │ │ │ │ └── LSToolViewModel.swift │ │ │ └── Tests │ │ │ │ ├── ClaudeCodeLSToolTests.swift │ │ │ │ ├── LSTool+EncodingTests.swift │ │ │ │ ├── LSTool+StreamRepresentationTests.swift │ │ │ │ └── LSToolTests.swift │ │ │ ├── ReadFileTool │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── ClaudeCodeReadTool.swift │ │ │ │ ├── Content.swift │ │ │ │ ├── ReadFileTool.swift │ │ │ │ ├── ReadFileToolView+Preview.swift │ │ │ │ ├── ReadFileToolView.swift │ │ │ │ └── ReadFileToolViewModel.swift │ │ │ └── Tests │ │ │ │ ├── ArraySafeSubscriptTests.swift │ │ │ │ ├── ClaudeCodeReadToolTests.swift │ │ │ │ ├── ReadFileTool+EncodingTests.swift │ │ │ │ ├── ReadFileToolStreamRepresentationTests.swift │ │ │ │ └── ReadFileToolTests.swift │ │ │ ├── SearchFilesTool │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── ClaudeCodeGrepTool.swift │ │ │ │ ├── SearchFileToolViewModel.swift │ │ │ │ ├── SearchFilesTool.swift │ │ │ │ ├── SearchFilesToolView+Preview.swift │ │ │ │ └── SearchFilesToolView.swift │ │ │ └── Tests │ │ │ │ ├── ClaudeCodeGrepToolTests.swift │ │ │ │ ├── SearchFilesToolEncodingTests.swift │ │ │ │ ├── SearchFilesToolStreamRepresentationTests.swift │ │ │ │ └── SearchFilesToolTests.swift │ │ │ └── WebFetchTool │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ ├── ClaudeCodeWebFetchTool.swift │ │ │ ├── HTMLToMarkdownConverter.swift │ │ │ ├── WebContentFetcher.swift │ │ │ ├── WebFetchTool.swift │ │ │ ├── WebFetchToolUseView+Preview.swift │ │ │ ├── WebFetchToolUseView.swift │ │ │ └── WebFetchToolUseViewModel.swift │ │ │ └── Tests │ │ │ ├── ClaudeCodeWebFetchTool+EncodingTests.swift │ │ │ ├── ClaudeCodeWebFetchTool+StreamRepresentationTests.swift │ │ │ └── ClaudeCodeWebFetchToolTests.swift │ ├── serviceAdapters │ │ ├── SettingsServiceToolsAdapter │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ └── ServiceAdapter.swift │ │ │ └── Tests │ │ │ │ └── ServiceAdapterTests.swift │ │ └── XcodeObserverWindowsAdapter │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ ├── WindowInfo.swift │ │ │ ├── XcodeExpandableWindow.swift │ │ │ └── XcodeWindow.swift │ ├── serviceInterfaces │ │ ├── AppEventServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── AppEventHandlerRegistry+Dependency.swift │ │ │ │ ├── AppEventHandlerRegistry+Mock.swift │ │ │ │ └── AppEventHandlerRegistry.swift │ │ ├── AppUpdateServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Readme.md │ │ │ ├── Sources │ │ │ │ ├── AppUpdateService+Dependency.swift │ │ │ │ ├── AppUpdateService+Mock.swift │ │ │ │ └── AppUpdateService.swift │ │ │ └── Tests │ │ │ │ └── AppUpdateService+MockTests.swift │ │ ├── ChatCompletionServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── ChatCompletionService+Dependency.swift │ │ │ │ ├── ChatCompletionService+Mock.swift │ │ │ │ └── ChatCompletionService.swift │ │ ├── ChatHistoryServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── ChatHistoryService+Dependency.swift │ │ │ │ ├── ChatHistoryService+Mock.swift │ │ │ │ ├── ChatHistoryService.swift │ │ │ │ └── models │ │ │ │ │ ├── AttachmentModel.swift │ │ │ │ │ ├── ChatEventModel.swift │ │ │ │ │ ├── ChatInputModel.swift │ │ │ │ │ ├── ChatMessageModel.swift │ │ │ │ │ ├── ChatThreadModel.swift │ │ │ │ │ └── QueuedMessageModel.swift │ │ │ └── Tests │ │ │ │ └── ChatHistoryService+MockTests.swift │ │ ├── ChatServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── ChatContextRegistryService+Dependency.swift │ │ │ │ ├── ChatContextRegistryService+Mock.swift │ │ │ │ ├── ChatContextRegistryService.swift │ │ │ │ ├── ChatService+Dependency.swift │ │ │ │ ├── ChatService+Mock.swift │ │ │ │ └── ChatService.swift │ │ ├── CheckpointServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── Checkpoint+Dependency.swift │ │ │ │ ├── Checkpoint+Mock.swift │ │ │ │ └── Checkpoint.swift │ │ │ ├── Tests │ │ │ │ └── Checkpoint+MockTests.swift │ │ │ └── readme.md │ │ ├── CodeCompletionServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── CodeCompletionProvider+Dependency.swift │ │ │ │ ├── CodeCompletionProvider+Mock.swift │ │ │ │ ├── CodeCompletionProvider.swift │ │ │ │ ├── CodeCompletionService+Dependency.swift │ │ │ │ ├── CodeCompletionService+Mock.swift │ │ │ │ └── CodeCompletionService.swift │ │ ├── ExtensionEventsInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ └── ExtensionEvents.swift │ │ ├── FileSuggestionServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── FileSuggestionService+Dependency.swift │ │ │ │ ├── FileSuggestionService+Mock.swift │ │ │ │ └── FileSuggestionService.swift │ │ │ └── Tests │ │ │ │ └── FileSuggestionServiceTests.swift │ │ ├── GithubCopilotServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── GithubCopilotService+Dependency.swift │ │ │ │ ├── GithubCopilotService+Mock.swift │ │ │ │ └── GithubCopilotService.swift │ │ ├── HighlighterServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── HighlighterService+Dependency.swift │ │ │ │ └── HighlighterService.swift │ │ ├── JRPCServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── JRPCService+Dependencies.swift │ │ │ │ ├── JRPCService+Mock.swift │ │ │ │ └── JRPCService.swift │ │ ├── KeyboardShortcutServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── KeyboardShortcutService+Dependency.swift │ │ │ │ ├── KeyboardShortcutService+Mock.swift │ │ │ │ └── KeyboardShortcutService.swift │ │ ├── LLMServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── LLMService+Dependency.swift │ │ │ │ ├── LLMService+Mock.swift │ │ │ │ ├── LLMService.swift │ │ │ │ └── Types.swift │ │ │ └── Tests │ │ │ │ └── LLMService+MockTests.swift │ │ ├── LocalServerServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── LocalServer+Dependency.swift │ │ │ │ ├── LocalServer+Mock.swift │ │ │ │ ├── LocalServer.swift │ │ │ │ ├── checkpointSchema.generated.swift │ │ │ │ ├── codeCompletionSchema.generated.swift │ │ │ │ ├── listFilesSchema.generated.swift │ │ │ │ ├── listModelsSchema.generated.swift │ │ │ │ ├── schema.generated.swift │ │ │ │ ├── searchFileSchema.generated.swift │ │ │ │ ├── sendMessageSchema.generated.swift │ │ │ │ ├── toolApprovalSchema.generated.swift │ │ │ │ └── websocketSchema.generated.swift │ │ │ └── Tests │ │ │ │ ├── ErrorParsingTests.swift │ │ │ │ └── Server+MockTests.swift │ │ ├── LoggingServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── Logger+extensions.swift │ │ │ │ ├── Logger.swift │ │ │ │ └── TransientLogger.swift │ │ ├── MCPServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── MCPService+Dependency.swift │ │ │ │ ├── MCPService+Mock.swift │ │ │ │ └── MCPService.swift │ │ ├── PermissionsServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── PermissionService.swift │ │ │ │ ├── PermissionsService+Dependency.swift │ │ │ │ └── PermissionsService+Mock.swift │ │ │ └── Tests │ │ │ │ └── PermissionsService+MockTests.swift │ │ ├── PushNotificationServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── PushNotificationService+Dependency.swift │ │ │ │ ├── PushNotificationService+Mock.swift │ │ │ │ └── PushNotificationService.swift │ │ │ └── Tests │ │ │ │ └── PushNotificationService+MockTests.swift │ │ ├── SettingsServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── MCPServerConfiguration+Codable.swift │ │ │ │ ├── Settings+MCP.swift │ │ │ │ ├── SettingsService+Dependency.swift │ │ │ │ ├── SettingsService+Mock.swift │ │ │ │ ├── SettingsService+TestsHelpers.swift │ │ │ │ └── SettingsService.swift │ │ │ └── Tests │ │ │ │ ├── MCPServerConfigurations+CodableTests.swift │ │ │ │ └── SettingsService+MockTests.swift │ │ ├── ShellServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ │ ├── ShellService+Dependency.swift │ │ │ │ ├── ShellService+Mock.swift │ │ │ │ └── ShellService.swift │ │ │ └── Tests │ │ │ │ └── ShellServiceTests.swift │ │ ├── XPCServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── NSXPCConnection+extensions.swift │ │ │ │ ├── XPCConnection.swift │ │ │ │ └── XPCError.swift │ │ ├── XcodeControllerServiceInterface │ │ │ ├── Module.swift │ │ │ └── Sources │ │ │ │ ├── XcodeController+Dependency.swift │ │ │ │ ├── XcodeController+Mock.swift │ │ │ │ └── XcodeController.swift │ │ └── XcodeObserverServiceInterface │ │ │ ├── Module.swift │ │ │ ├── Sources │ │ │ ├── AppsActivationState+Dependency.swift │ │ │ ├── AppsActivationState+Mock.swift │ │ │ ├── AppsActivationState.swift │ │ │ ├── XcodeObserver+Dependency.swift │ │ │ ├── XcodeObserver+Mock.swift │ │ │ ├── XcodeObserver.swift │ │ │ └── XcodeState.swift │ │ │ └── Tests │ │ │ └── XcodeObserverTests.swift │ └── services │ │ ├── AppEventService │ │ ├── Module.swift │ │ └── Sources │ │ │ └── DefaultAppEventRegistry.swift │ │ ├── AppUpdateService │ │ ├── Module.swift │ │ ├── Sources │ │ │ └── DefaultAppUpdateService.swift │ │ └── Tests │ │ │ └── AppUpdateServiceTests.swift │ │ ├── ChatCompletionService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── DefaultChatCompletionService.swift │ │ │ ├── helpers.swift │ │ │ └── models │ │ │ │ ├── ChatQuery.swift │ │ │ │ ├── ChatStreamedResult.swift │ │ │ │ ├── Model.swift │ │ │ │ ├── ModelResult.swift │ │ │ │ └── ModelsResult.swift │ │ └── Tests │ │ │ ├── decodingTests.swift │ │ │ └── helpersTests.swift │ │ ├── ChatService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── AttachmentSerializer.swift │ │ │ ├── ChatThreadRecord.swift │ │ │ ├── DefaultChatContextRegistryService.swift │ │ │ ├── DefaultChatHistoryService.swift │ │ │ ├── DefaultChatService.swift │ │ │ └── Serialization.swift │ │ └── Tests │ │ │ ├── ChatHistoryServiceTests.swift │ │ │ └── DefaultChatServiceTests.swift │ │ ├── CheckpointService │ │ ├── Module.swift │ │ ├── Sources │ │ │ └── DefaultCheckpointService.swift │ │ └── Tests │ │ │ └── DefaultCheckpointServiceTests.swift │ │ ├── CodeCompletionService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── CodeSuggestion+helper.swift │ │ │ ├── CompletionCache.swift │ │ │ ├── DefaultCodeCompletionService.swift │ │ │ ├── LRUQueue.swift │ │ │ ├── Providers │ │ │ │ └── APIBasedCodeCompletionProvider.swift │ │ │ ├── RecentEditsTracker.swift │ │ │ └── WorkspaceIndex.swift │ │ └── Tests │ │ │ ├── APIBasedCodeCompletionProviderTests.swift │ │ │ ├── CodeSuggestionHelperTests.swift │ │ │ ├── CompletionCacheTests.swift │ │ │ ├── FileWatcherTests.swift │ │ │ ├── LRUQueueTests.swift │ │ │ ├── RecentEditsTrackingTests.swift │ │ │ └── WorkspaceInitializationTests.swift │ │ ├── FileSuggestionService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── DefaultFileSuggestionService+Dependency.swift │ │ │ ├── DefaultFileSuggestionService.swift │ │ │ └── textFileExtensions.swift │ │ └── Tests │ │ │ └── DefaultFileSuggestionServiceTests.swift │ │ ├── GithubCopilotService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── DefaultGithubCopilotService.swift │ │ │ ├── GithubCopilotServer.swift │ │ │ ├── GithubCopilotService+Auth.swift │ │ │ ├── GithubCopilotService+CodeCompletionProvider.swift │ │ │ ├── JSONRPC.swift │ │ │ ├── LSPTypes.swift │ │ │ ├── LanguageIdentifier.swift │ │ │ ├── Resources │ │ │ │ └── install-language-server.sh │ │ │ └── WorkspaceConfiguration.swift │ │ └── Tests │ │ │ └── GithubCopilotServerTests.swift │ │ ├── JRPCService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── DefaultJRPCService.swift │ │ │ └── DefaultStdioConnection.swift │ │ └── Tests │ │ │ └── JSONStreamingParserTests.swift │ │ ├── KeyboardShortcutService │ │ ├── Module.swift │ │ └── Sources │ │ │ └── DefaultKeyboardShortcutService.swift │ │ ├── LLMService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── DefaultLLMService.swift │ │ │ ├── FailedTool.swift │ │ │ ├── JSON+partialParsing.swift │ │ │ ├── LLMModelManager.swift │ │ │ ├── RepeatDebugHelper.swift │ │ │ ├── RequestStreamingHelper.swift │ │ │ ├── helpers.swift │ │ │ └── prompts │ │ │ │ └── Prompt.swift │ │ └── Tests │ │ │ ├── APIs │ │ │ ├── SendMessageTests.swift │ │ │ ├── SendOneMessageTests.swift │ │ │ ├── SummarizeConversationTests.swift │ │ │ ├── __Snapshots__ │ │ │ │ └── SendOneMessageTests │ │ │ │ │ └── test_sendOneMessage_sendsPayloadWithCorrectFieldsOrdering.1.txt │ │ │ └── helpers.swift │ │ │ ├── APIsSerializationTests.swift │ │ │ ├── HelpersReasoningTests.swift │ │ │ ├── JSONPartialParsingTests.swift │ │ │ ├── LLMModelManager+Mock.swift │ │ │ ├── LLMModelManagerTests.swift │ │ │ └── RequestStreamingHelperTests.swift │ │ ├── LocalServerService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── Data+extension.swift │ │ │ ├── DefaultLocalServer+WebSocket.swift │ │ │ ├── DefaultLocalServer.swift │ │ │ └── Resources │ │ │ │ └── launch-server.sh │ │ └── Tests │ │ │ └── Data+extensionTests.swift │ │ ├── LoggingService │ │ ├── Module.swift │ │ ├── Sources │ │ │ └── DefaultLogger.swift │ │ └── Tests │ │ │ └── DefaultLoggerTests.swift │ │ ├── MCPService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── DefaultMCPServerConnection.swift │ │ │ ├── DefaultMCPService.swift │ │ │ ├── MCPTool.swift │ │ │ └── StdioTransport.swift │ │ └── Tests │ │ │ ├── DefaultMCPServerConnectionTests.swift │ │ │ ├── DefaultMCPServiceTests.swift │ │ │ ├── MCPToolTests.swift │ │ │ └── StringSanitizedTests.swift │ │ ├── PermissionsService │ │ ├── Module.swift │ │ ├── Sources │ │ │ └── DefaultPermissionService.swift │ │ └── Tests │ │ │ └── DefaultPermissionsServiceTests.swift │ │ ├── PushNotificationService │ │ ├── Module.swift │ │ ├── Sources │ │ │ └── DefaultPushNotificationService.swift │ │ └── Tests │ │ │ └── DefaultPushNotificationServiceTests.swift │ │ ├── SettingsService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── DefaultSettingsService.swift │ │ │ ├── ExternalSettings.swift │ │ │ ├── Settings+Codable.swift │ │ │ └── Types+Codable.swift │ │ └── Tests │ │ │ ├── DefaultSettingsServiceTests.swift │ │ │ ├── ExternalSettings+CodableTests.swift │ │ │ ├── PartialEncodingTests.swift │ │ │ ├── Settings+CodableTests.swift │ │ │ └── SettingsMigrationTests.swift │ │ ├── ShellService │ │ ├── Module.swift │ │ ├── Sources │ │ │ └── DefaultShellService.swift │ │ └── Tests │ │ │ └── DefaultShellServiceTests.swift │ │ ├── XcodeControllerService │ │ ├── Module.swift │ │ ├── Sources │ │ │ ├── DefaultXcodeController+AppleScript.swift │ │ │ ├── DefaultXcodeController+build.swift │ │ │ └── DefaultXcodeController.swift │ │ └── Tests │ │ │ └── DetaultXcodeControllerTests.swift │ │ └── XcodeObserverService │ │ ├── Module.swift │ │ ├── Sources │ │ ├── AXCache.swift │ │ ├── AXElementObserver.swift │ │ ├── AXNotificationPublisher.swift │ │ ├── AXUIElement+extensions.swift │ │ ├── AppsActivationState.swift │ │ ├── DefaultXcodeObserver.swift │ │ ├── FileLister.swift │ │ ├── InternalState.swift │ │ ├── NSRunningApplication+extension.swift │ │ ├── SourceEditorObserver.swift │ │ ├── XcodeAppInstanceObserver.swift │ │ └── XcodeWorkspaceObserver.swift │ │ └── Tests │ │ ├── DefaultXcodeObserverListFilesTests.swift │ │ ├── XcodeObserverServiceTests.swift │ │ └── resources │ │ ├── SPM │ │ ├── .gitignore │ │ ├── Package.swift │ │ ├── Sources │ │ │ └── TestSPM │ │ │ │ └── TestSPM.swift │ │ └── Tests │ │ │ └── TestSPMTests │ │ │ └── TestSPMTests.swift │ │ ├── TestXcodeProjParsing │ │ ├── TestXcodeProjParsing.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── TestXcodeProjParsing │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Config.xcconfig │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── Preview Content │ │ │ │ └── Preview Assets.xcassets │ │ │ │ │ └── Contents.json │ │ │ ├── TestXcodeProjParsing.entitlements │ │ │ └── TestXcodeProjParsingApp.swift │ │ ├── TestXcodeProjParsingTests │ │ │ └── TestXcodeProjParsingTests.swift │ │ └── TestXcodeProjParsingUITests │ │ │ ├── TestXcodeProjParsingUITests.swift │ │ │ └── TestXcodeProjParsingUITestsLaunchTests.swift │ │ └── directory │ │ ├── .hidden │ │ └── subdirectory │ │ └── test.txt ├── rules-header.swiftformat ├── rules.swiftformat └── tools │ ├── dependencies │ ├── Package.resolved │ ├── Package.swift │ ├── Sources │ │ ├── Executable │ │ │ └── command.swift │ │ └── Library │ │ │ ├── DependencyInjection.swift │ │ │ ├── GenerateEntirePackage.swift │ │ │ ├── GenerateModulePackage.swift │ │ │ ├── SwiftSyntax+Extensions.swift │ │ │ ├── TargetInfo.swift │ │ │ ├── UpdateDependencies.swift │ │ │ ├── UpdateModuleFile.swift │ │ │ └── helpers.swift │ ├── Tests │ │ ├── HelpersTests.swift │ │ ├── MockFileManager.swift │ │ ├── README.md │ │ ├── SyncTests.swift │ │ └── resources │ │ │ └── test-repo-1 │ │ │ ├── ModuleA │ │ │ ├── Module.swift │ │ │ ├── Package.swift │ │ │ ├── Sources │ │ │ │ └── Source.swift │ │ │ └── Tests │ │ │ │ └── Tests.swift │ │ │ ├── ModuleB │ │ │ ├── Module.swift │ │ │ ├── Package.swift │ │ │ └── Sources │ │ │ │ └── Source.swift │ │ │ ├── Package.swift │ │ │ ├── Package.template.swift │ │ │ └── README.md │ ├── build-binary.sh │ ├── focus.sh │ ├── readme.md │ ├── sync-tests.sh │ └── sync.sh │ ├── release │ ├── cleanup_xcodeproj_after_release_build.sh │ ├── configure_xcodeproj_for_release_build.sh │ └── release.sh │ └── sync-js-bundle-to-app.sh ├── cmd.sh ├── contributing.md ├── docs ├── CLAUDE.md ├── README.md ├── assets │ ├── checks-passed.png │ ├── claude-code-in-chat.png │ ├── claude-code-setting.png │ ├── hero-dark.png │ ├── hero-light.png │ ├── proxy-setup.png │ ├── sidebar.png │ ├── videos │ │ ├── agent-mode.jpg │ │ ├── chat-mode.jpg │ │ ├── claude-code.jpg │ │ └── xcode26-demo.jpg │ ├── xcode26-installation-prompt.jpeg │ └── xcode26-sidebar.jpeg ├── docs.json ├── favicon.png ├── index.mdx ├── logo │ ├── dark.png │ └── light.png ├── pages │ ├── ai-providers.mdx │ ├── chat-modes.mdx │ ├── claude-code.mdx │ ├── codex.mdx │ ├── features.mdx │ ├── install.mdx │ ├── mcp-servers.mdx │ ├── models.mdx │ ├── quick-start.mdx │ └── xcode-shortcuts.mdx ├── quickstart.mdx └── snippets │ ├── features-showcase.mdx │ └── snippet-intro.mdx ├── local-server ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .yarnrc.yml ├── README.md ├── build.js ├── build.sha256 ├── build.size ├── eslint.config.js ├── jest.config.js ├── jest.globalsetup.js ├── jest.setup.js ├── jest.teardown.js ├── package.json ├── src │ ├── logger.ts │ ├── main.ts │ ├── secrets.ts │ ├── server │ │ ├── __tests__ │ │ │ └── errorHandler.test.ts │ │ ├── ai-context │ │ │ └── system-prompts.ts │ │ ├── api │ │ │ └── index.ts │ │ ├── endpoints │ │ │ ├── __tests__ │ │ │ │ ├── checkpoint.test.ts │ │ │ │ └── interProcessesBridge.test.ts │ │ │ ├── checkpoint.ts │ │ │ ├── codeCompletion │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── helpers.test.ts.snap │ │ │ │ │ └── helpers.test.ts │ │ │ │ ├── codeCompletion.ts │ │ │ │ └── helpers.ts │ │ │ ├── getFileIcon.ts │ │ │ ├── interProcessesBridge.ts │ │ │ ├── listModels.ts │ │ │ ├── sendMessage │ │ │ │ ├── __tests__ │ │ │ │ │ ├── errorParsing.test.ts │ │ │ │ │ └── sendMessage.test.ts │ │ │ │ ├── acp │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── sendMessageToClaudeCode.test.ts │ │ │ │ │ ├── claude-code-acp │ │ │ │ │ │ ├── acp-agent.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── mcp-server.ts │ │ │ │ │ │ ├── tools.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── clients │ │ │ │ │ │ ├── ACPClient.ts │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── helper.test.ts │ │ │ │ │ │ ├── claudeCode │ │ │ │ │ │ │ ├── claudeCodeACPClient.ts │ │ │ │ │ │ │ ├── helper.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── codex │ │ │ │ │ │ │ └── codexACPClient.ts │ │ │ │ │ │ └── helper.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sendMessageToClaudeCode.ts │ │ │ │ │ └── sendMessageToCodex.ts │ │ │ │ ├── errorParsing.ts │ │ │ │ ├── helpers.test.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── pendingToolApprovalRequests.ts │ │ │ │ └── sendMessage.ts │ │ │ └── tools │ │ │ │ ├── listFiles.ts │ │ │ │ └── searchFiles │ │ │ │ ├── __tests__ │ │ │ │ └── searchFiles.test.ts │ │ │ │ ├── endpoint.ts │ │ │ │ └── searchFiles.ts │ │ ├── errorHandler.ts │ │ ├── errors.ts │ │ ├── providers │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── inception.test.ts.snap │ │ │ │ ├── inception.test.ts │ │ │ │ └── openai.test.ts │ │ │ ├── anthropic.ts │ │ │ ├── gemini.ts │ │ │ ├── groq.ts │ │ │ ├── inception.ts │ │ │ ├── mistral.ts │ │ │ ├── open-router.ts │ │ │ ├── openai.ts │ │ │ ├── provider-utils.ts │ │ │ └── provider.ts │ │ ├── schemas │ │ │ ├── checkpointSchema.ts │ │ │ ├── codeCompletionSchema.ts │ │ │ ├── listFilesSchema.ts │ │ │ ├── listModelsSchema.ts │ │ │ ├── searchFileSchema.ts │ │ │ ├── sendMessageSchema.ts │ │ │ ├── toolApprovalSchema.ts │ │ │ └── toolsSchema.ts │ │ └── server.ts │ ├── services │ │ ├── checkpoints │ │ │ ├── RepoPerTaskCheckpointService.ts │ │ │ ├── ShadowCheckpointService.ts │ │ │ ├── constants.ts │ │ │ ├── excludes.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── glob │ │ │ └── list-files.ts │ │ ├── ripgrep │ │ │ └── index.ts │ │ └── search │ │ │ └── file-search.ts │ └── utils │ │ ├── __tests__ │ │ ├── asyncStream.test.ts │ │ ├── jsonl.test.ts │ │ └── streamingJSONParser.test.ts │ │ ├── asyncStream.ts │ │ ├── fs.ts │ │ ├── instrument.ts │ │ ├── jsonl.ts │ │ ├── path.ts │ │ ├── spawn-promise.ts │ │ ├── streamingJSONParser.ts │ │ ├── tests │ │ ├── mockFs.ts │ │ ├── mockResponse.ts │ │ └── mockSpawn.ts │ │ └── typeChecks.ts ├── test-input.txt ├── tools │ ├── __tests__ │ │ └── keepSorted.test.ts │ ├── copy-to-app.ts │ ├── generateSwiftSchema.ts │ ├── hot-server-reload.ts │ ├── keepSorted.ts │ ├── parseAnthropicResponse.test.ts │ ├── parseAnthropicResponse.ts │ ├── parseOpenAIResponse.ts │ ├── pkg-watch.ts │ └── schema-generation │ │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── inline_enum_definition │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ │ ├── inline_type_definition │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ │ ├── json_object │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ │ ├── nested_optional_value_types │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ │ ├── nested_type │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ │ ├── one_object_with_integer_value_types │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ │ ├── one_object_with_optional_value_types │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ │ ├── one_object_with_value_types │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ │ ├── one_of_two_types │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ │ ├── property_with_several_fixed_values │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ │ └── type_with_fixed_value │ │ │ │ ├── schema.json │ │ │ │ ├── schema.swift │ │ │ │ └── schema.ts │ │ └── codegen.test.ts │ │ ├── jsonSchemaToSwift.ts │ │ ├── templates │ │ ├── enumType.hbs │ │ ├── file.hbs │ │ ├── objectType.hbs │ │ └── oneOfType.hbs │ │ ├── tsToJSONSchema.ts │ │ └── utils.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock └── tools └── githooks ├── README.md ├── pre-commit └── setup.sh /.build/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/build-artifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.github/workflows/build-artifact.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.github/workflows/release-next.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-build-release-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.github/workflows/reusable-build-release-app.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-test-swift-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.github/workflows/reusable-test-swift-app.yml -------------------------------------------------------------------------------- /.github/workflows/rocket-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.github/workflows/rocket-merge.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.6 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Claude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/Claude.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.swift-version: -------------------------------------------------------------------------------- 1 | 6.2 -------------------------------------------------------------------------------- /app/Claude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/Claude.md -------------------------------------------------------------------------------- /app/command Extension/Commands/CmdCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/Commands/CmdCommand.swift -------------------------------------------------------------------------------- /app/command Extension/Commands/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/Commands/Command.swift -------------------------------------------------------------------------------- /app/command Extension/Extension.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/Extension.debug.xcconfig -------------------------------------------------------------------------------- /app/command Extension/Extension.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/Extension.release.xcconfig -------------------------------------------------------------------------------- /app/command Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/Info.plist -------------------------------------------------------------------------------- /app/command Extension/LocalServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/LocalServer.swift -------------------------------------------------------------------------------- /app/command Extension/SourceEditorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/SourceEditorExtension.swift -------------------------------------------------------------------------------- /app/command Extension/XCSourceTextBuffer+SourceTextBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/XCSourceTextBuffer+SourceTextBuffer.swift -------------------------------------------------------------------------------- /app/command Extension/XcodeExtensionError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/XcodeExtensionError.swift -------------------------------------------------------------------------------- /app/command Extension/command_Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/command_Extension.entitlements -------------------------------------------------------------------------------- /app/command Extension/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command Extension/readme.md -------------------------------------------------------------------------------- /app/command app launcher/AppLauncher.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command app launcher/AppLauncher.entitlements -------------------------------------------------------------------------------- /app/command app launcher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command app launcher/Info.plist -------------------------------------------------------------------------------- /app/command app launcher/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command app launcher/main.swift -------------------------------------------------------------------------------- /app/command.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command.debug.xcconfig -------------------------------------------------------------------------------- /app/command.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command.release.xcconfig -------------------------------------------------------------------------------- /app/command.shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command.shared.xcconfig -------------------------------------------------------------------------------- /app/command.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/command.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app/command.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /app/command.xcodeproj/xcshareddata/xcschemes/command Extension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command.xcodeproj/xcshareddata/xcschemes/command Extension.xcscheme -------------------------------------------------------------------------------- /app/command.xcodeproj/xcshareddata/xcschemes/command.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command.xcodeproj/xcshareddata/xcschemes/command.xcscheme -------------------------------------------------------------------------------- /app/command/App.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/App.debug.xcconfig -------------------------------------------------------------------------------- /app/command/App.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/App.release.xcconfig -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/1024.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/128.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/16.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/256.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/32.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/512.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/64.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug-backup.appiconset/Contents.json -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug.appiconset/Contents.json -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_1024.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_128.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_16.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_256.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_32.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_512.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.debug.appiconset/logo_dark_64.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release-backup.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release-backup.appiconset/1024.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release-backup.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release-backup.appiconset/128.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release-backup.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release-backup.appiconset/16.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release-backup.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release-backup.appiconset/256.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release-backup.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release-backup.appiconset/32.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release-backup.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release-backup.appiconset/512.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release-backup.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release-backup.appiconset/64.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release-backup.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release-backup.appiconset/Contents.json -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release.appiconset/Contents.json -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_1024.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_128.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_16.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_256.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_32.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_512.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/AppIcon.release.appiconset/logo_light_64.png -------------------------------------------------------------------------------- /app/command/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/command/Assets.xcassets/xcodeproj-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/xcodeproj-icon.imageset/Contents.json -------------------------------------------------------------------------------- /app/command/Assets.xcassets/xcodeproj-icon.imageset/xcodeproj-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Assets.xcassets/xcodeproj-icon.imageset/xcodeproj-icon.png -------------------------------------------------------------------------------- /app/command/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Info.plist -------------------------------------------------------------------------------- /app/command/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/command/appLauncher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/appLauncher.plist -------------------------------------------------------------------------------- /app/command/command.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/command.entitlements -------------------------------------------------------------------------------- /app/command/commandApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/command/commandApp.swift -------------------------------------------------------------------------------- /app/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/contributing.md -------------------------------------------------------------------------------- /app/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/fastlane/Appfile -------------------------------------------------------------------------------- /app/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/fastlane/Fastfile -------------------------------------------------------------------------------- /app/fastlane/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/fastlane/Gemfile -------------------------------------------------------------------------------- /app/fastlane/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/fastlane/Gemfile.lock -------------------------------------------------------------------------------- /app/fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/fastlane/Matchfile -------------------------------------------------------------------------------- /app/fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/fastlane/Pluginfile -------------------------------------------------------------------------------- /app/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/fastlane/README.md -------------------------------------------------------------------------------- /app/fastlane/appcast.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/fastlane/appcast.template.xml -------------------------------------------------------------------------------- /app/fastlane/appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/fastlane/appcast.xml -------------------------------------------------------------------------------- /app/fastlane/xcodebuild_logger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/fastlane/xcodebuild_logger.sh -------------------------------------------------------------------------------- /app/modules/App/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Module.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/App+PostLaunchActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/App+PostLaunchActions.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/App.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/AppLauncherManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/AppLauncherManager.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/AppScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/AppScope.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/AppScopeStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/AppScopeStorage.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/Dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/Dependencies.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/HostAppXPCService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/HostAppXPCService.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/Windows/SetupWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/Windows/SetupWindow.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/Windows/SidePanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/Windows/SidePanel.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/Windows/WindowsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/Windows/WindowsView.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/Windows/WindowsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/Windows/WindowsViewModel.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/XcodeKeyboardShortcuts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/XcodeKeyboardShortcuts.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/plugins/Routes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/plugins/Routes.swift -------------------------------------------------------------------------------- /app/modules/App/Sources/plugins/ToolsPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Sources/plugins/ToolsPlugin.swift -------------------------------------------------------------------------------- /app/modules/App/Tests/UserDefinedXcodeShortcutValidationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Tests/UserDefinedXcodeShortcutValidationTests.swift -------------------------------------------------------------------------------- /app/modules/App/Tests/WindowsViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Tests/WindowsViewModelTests.swift -------------------------------------------------------------------------------- /app/modules/App/Tests/XcodeKeyboardShortcutsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/App/Tests/XcodeKeyboardShortcutsTests.swift -------------------------------------------------------------------------------- /app/modules/AppExtension/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppExtension/Module.swift -------------------------------------------------------------------------------- /app/modules/AppExtension/Sources/AppExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppExtension/Sources/AppExtension.swift -------------------------------------------------------------------------------- /app/modules/AppExtension/Sources/AppExtensionScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppExtension/Sources/AppExtensionScope.swift -------------------------------------------------------------------------------- /app/modules/AppExtension/Sources/Dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppExtension/Sources/Dependencies.swift -------------------------------------------------------------------------------- /app/modules/AppExtension/Sources/SandboxedFileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppExtension/Sources/SandboxedFileManager.swift -------------------------------------------------------------------------------- /app/modules/AppLauncher/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppLauncher/Module.swift -------------------------------------------------------------------------------- /app/modules/AppLauncher/Sources/AppLauncher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppLauncher/Sources/AppLauncher.swift -------------------------------------------------------------------------------- /app/modules/AppLauncher/Sources/AppLauncherScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppLauncher/Sources/AppLauncherScope.swift -------------------------------------------------------------------------------- /app/modules/AppLauncher/Sources/AppLauncherXPCService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppLauncher/Sources/AppLauncherXPCService.swift -------------------------------------------------------------------------------- /app/modules/AppLauncher/Sources/Dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppLauncher/Sources/Dependencies.swift -------------------------------------------------------------------------------- /app/modules/AppLauncher/Sources/XcodeActivityMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/AppLauncher/Sources/XcodeActivityMonitor.swift -------------------------------------------------------------------------------- /app/modules/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/Package.resolved -------------------------------------------------------------------------------- /app/modules/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/Package.swift -------------------------------------------------------------------------------- /app/modules/Package.template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/Package.template.swift -------------------------------------------------------------------------------- /app/modules/coreui/CodePreview/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/CodePreview/Module.swift -------------------------------------------------------------------------------- /app/modules/coreui/CodePreview/Sources/CodePreview+Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/CodePreview/Sources/CodePreview+Previews.swift -------------------------------------------------------------------------------- /app/modules/coreui/CodePreview/Sources/CodePreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/CodePreview/Sources/CodePreview.swift -------------------------------------------------------------------------------- /app/modules/coreui/CodePreview/Sources/DiffView+Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/CodePreview/Sources/DiffView+Previews.swift -------------------------------------------------------------------------------- /app/modules/coreui/CodePreview/Sources/DiffView+helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/CodePreview/Sources/DiffView+helpers.swift -------------------------------------------------------------------------------- /app/modules/coreui/CodePreview/Sources/DiffView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/CodePreview/Sources/DiffView.swift -------------------------------------------------------------------------------- /app/modules/coreui/CodePreview/Sources/FileChangeExpandablePill.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/CodePreview/Sources/FileChangeExpandablePill.swift -------------------------------------------------------------------------------- /app/modules/coreui/CodePreview/Sources/FileDiffViewModel+helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/CodePreview/Sources/FileDiffViewModel+helpers.swift -------------------------------------------------------------------------------- /app/modules/coreui/CodePreview/Sources/FileDiffViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/CodePreview/Sources/FileDiffViewModel.swift -------------------------------------------------------------------------------- /app/modules/coreui/CodePreview/Tests/DiffViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/CodePreview/Tests/DiffViewModelTests.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Module.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/AttributedString+helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/AttributedString+helpers.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/Colors.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/AppLogo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/AppLogo.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/CMDLogoDrawingAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/CMDLogoDrawingAnimation.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/CircularProgressIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/CircularProgressIndicator.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/HoverReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/HoverReader.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/Icon.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/Link.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/LongText+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/LongText+Preview.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/LongText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/LongText.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/PopUpSelectionMenu+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/PopUpSelectionMenu+Preview.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/PopUpSelectionMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/PopUpSelectionMenu.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/RichTextEditor/RichTextEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/RichTextEditor/RichTextEditor.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/RichTextEditor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/RichTextEditor/readme.md -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/RoundedCorner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/RoundedCorner.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/SVGImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/SVGImage.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/ThreeDotsLoadingAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/ThreeDotsLoadingAnimation.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/WarningView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/WarningView+Preview.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/WarningView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/WarningView.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/WrappingHStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/WrappingHStack.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/buttons/BackButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/buttons/BackButton.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/buttons/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/buttons/Button.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/buttons/HoveredButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/buttons/HoveredButton.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/buttons/IconButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/buttons/IconButton.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/buttons/IconsLabelButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/buttons/IconsLabelButton.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/buttons/RoundedButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/buttons/RoundedButton.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/viewModifiers/acceptClickThrough.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/viewModifiers/acceptClickThrough.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/viewModifiers/frame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/viewModifiers/frame.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/viewModifiers/isHidden.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/viewModifiers/isHidden.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/viewModifiers/onOutsideTap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/viewModifiers/onOutsideTap.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/CoreUI/viewModifiers/readSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/CoreUI/viewModifiers/readSize.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/Fonts.swift -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/Resources/cmd-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/Resources/cmd-logo.svg -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Sources/Resources/mcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Sources/Resources/mcp.svg -------------------------------------------------------------------------------- /app/modules/coreui/DLS/Tests/CoreUI/RichTextEditorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DLS/Tests/CoreUI/RichTextEditorTests.swift -------------------------------------------------------------------------------- /app/modules/coreui/DefaultToolView/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DefaultToolView/Module.swift -------------------------------------------------------------------------------- /app/modules/coreui/DefaultToolView/Sources/DefaultToolUseView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DefaultToolView/Sources/DefaultToolUseView+Preview.swift -------------------------------------------------------------------------------- /app/modules/coreui/DefaultToolView/Sources/DefaultToolUseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DefaultToolView/Sources/DefaultToolUseView.swift -------------------------------------------------------------------------------- /app/modules/coreui/DefaultToolView/Tests/UnknownToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/DefaultToolView/Tests/UnknownToolTests.swift -------------------------------------------------------------------------------- /app/modules/coreui/FileIcon/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/FileIcon/Module.swift -------------------------------------------------------------------------------- /app/modules/coreui/FileIcon/Sources/FileIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/FileIcon/Sources/FileIcon.swift -------------------------------------------------------------------------------- /app/modules/coreui/FileIcon/Sources/Resources/fileIcons/icons.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/FileIcon/Sources/Resources/fileIcons/icons.tar.gz -------------------------------------------------------------------------------- /app/modules/coreui/FileIcon/Sources/Resources/fileIcons/swift-preferred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/FileIcon/Sources/Resources/fileIcons/swift-preferred.svg -------------------------------------------------------------------------------- /app/modules/coreui/Markdown/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/Markdown/Module.swift -------------------------------------------------------------------------------- /app/modules/coreui/Markdown/Sources/Markdown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/Markdown/Sources/Markdown.swift -------------------------------------------------------------------------------- /app/modules/coreui/Markdown/Sources/MarkdownStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/Markdown/Sources/MarkdownStyle.swift -------------------------------------------------------------------------------- /app/modules/coreui/Markdown/Tests/NSAttributedStringExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/Markdown/Tests/NSAttributedStringExtensionTests.swift -------------------------------------------------------------------------------- /app/modules/coreui/ToolUI/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/ToolUI/Module.swift -------------------------------------------------------------------------------- /app/modules/coreui/ToolUI/Sources/ToolErrorView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/ToolUI/Sources/ToolErrorView+Preview.swift -------------------------------------------------------------------------------- /app/modules/coreui/ToolUI/Sources/ToolErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/coreui/ToolUI/Sources/ToolErrorView.swift -------------------------------------------------------------------------------- /app/modules/featureInterfaces/GithubCopilotFeatureInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/featureInterfaces/GithubCopilotFeatureInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/featureInterfaces/SettingsFeatureInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/featureInterfaces/SettingsFeatureInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Module.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/ChatThread/ChatEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/ChatThread/ChatEvent.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/ChatView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/ChatView+Preview.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/ChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/ChatView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/ChatViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/ChatViewModel.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/CheckpointView+Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/CheckpointView+Previews.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/CheckpointView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/CheckpointView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/DefaultChatContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/DefaultChatContext.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/EmptyChatView+Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/EmptyChatView+Previews.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/EmptyChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/EmptyChatView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Input/ChatInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Input/ChatInputView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Input/ChatInputViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Input/ChatInputViewModel.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Input/ChatModeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Input/ChatModeView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Input/DragDropAreaView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Input/DragDropAreaView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Input/QueuedMessagesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Input/QueuedMessagesView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Input/SearchResultsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Input/SearchResultsView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Input/ToolApprovalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Input/ToolApprovalView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Message/ChatMessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Message/ChatMessageView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Message/CodeBlockElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Message/CodeBlockElement.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Message/TextFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Message/TextFormatter.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Resources/compactContext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Resources/compactContext.svg -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/Resources/xcodeproj-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/Resources/xcodeproj-icon.png -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/TabBarView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/TabBarView+Preview.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Sources/TabBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Sources/TabBarView.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Tests/ChatMessageViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Tests/ChatMessageViewModelTests.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Tests/ChatThreadViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Tests/ChatThreadViewModelTests.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Tests/ChatViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Tests/ChatViewModelTests.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Tests/Input/DragDropTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Tests/Input/DragDropTests.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Tests/Input/SearchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Tests/Input/SearchTests.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Tests/Input/TextInputTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Tests/Input/TextInputTests.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Tests/Input/helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Tests/Input/helpers.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeature/Tests/Message/TextFormatterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Chat/ChatFeature/Tests/Message/TextFormatterTests.swift -------------------------------------------------------------------------------- /app/modules/features/Chat/ChatFeatureInterface/Module.swift: -------------------------------------------------------------------------------- 1 | Target.module( 2 | name: "ChatFeatureInterface") 3 | -------------------------------------------------------------------------------- /app/modules/features/CodeCompletionFeature/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/CodeCompletionFeature/Module.swift -------------------------------------------------------------------------------- /app/modules/features/CodeCompletionFeature/Sources/CodeCompletionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/CodeCompletionFeature/Sources/CodeCompletionView.swift -------------------------------------------------------------------------------- /app/modules/features/CodeCompletionFeature/Sources/FontHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/CodeCompletionFeature/Sources/FontHelpers.swift -------------------------------------------------------------------------------- /app/modules/features/CodeCompletionFeature/Sources/InlineWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/CodeCompletionFeature/Sources/InlineWindow.swift -------------------------------------------------------------------------------- /app/modules/features/CodeCompletionFeature/Sources/KeyEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/CodeCompletionFeature/Sources/KeyEventHandler.swift -------------------------------------------------------------------------------- /app/modules/features/CodeCompletionFeature/Sources/XcodeScreenshoter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/CodeCompletionFeature/Sources/XcodeScreenshoter.swift -------------------------------------------------------------------------------- /app/modules/features/GithubCopilotFeature/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/GithubCopilotFeature/Module.swift -------------------------------------------------------------------------------- /app/modules/features/GithubCopilotFeature/Sources/Builder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/GithubCopilotFeature/Sources/Builder.swift -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Module.swift -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Sources/Builder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Sources/Builder.swift -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Sources/OSPermissions/PermissionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Sources/OSPermissions/PermissionsView.swift -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Sources/OnboardingCompleteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Sources/OnboardingCompleteView.swift -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Sources/OnboardingView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Sources/OnboardingView+Preview.swift -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Sources/OnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Sources/OnboardingView.swift -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Sources/OnboardingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Sources/OnboardingViewModel.swift -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Sources/Resources/Xcode-intelligence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Sources/Resources/Xcode-intelligence.png -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Sources/Resources/Xcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Sources/Resources/Xcode.svg -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Sources/WelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Sources/WelcomeView.swift -------------------------------------------------------------------------------- /app/modules/features/Onboarding/Tests/OnboardingViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/Tests/OnboardingViewModelTests.swift -------------------------------------------------------------------------------- /app/modules/features/Onboarding/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/Onboarding/readme.md -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Module.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/AboutSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/AboutSettingsView.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/ChatModeView+Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/ChatModeView+Previews.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/ChatModeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/ChatModeView.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/InternalSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/InternalSettingsView.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/MCPSettingsView+Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/MCPSettingsView+Previews.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/MCPSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/MCPSettingsView.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/SettingsBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/SettingsBuilder.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/SettingsView+Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/SettingsView+Previews.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/SettingsView.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/SettingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/SettingsViewModel.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/SharedUI/DisabledOverlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/SharedUI/DisabledOverlay.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/SharedUI/RadioButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/SharedUI/RadioButton.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Sources/ToolsConfigurationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Sources/ToolsConfigurationView.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Tests/LLMSettingsViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Tests/LLMSettingsViewModelTests.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Tests/ModelsViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Tests/ModelsViewTests.swift -------------------------------------------------------------------------------- /app/modules/features/SettingsFeature/Tests/SettingsViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/features/SettingsFeature/Tests/SettingsViewModelTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/AccessibilityFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AccessibilityFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/AccessibilityFoundation/Sources/AXNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AccessibilityFoundation/Sources/AXNotification.swift -------------------------------------------------------------------------------- /app/modules/foundations/AccessibilityFoundation/Sources/AnyAXUIElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AccessibilityFoundation/Sources/AnyAXUIElement.swift -------------------------------------------------------------------------------- /app/modules/foundations/AccessibilityObjCFoundation/Module.swift: -------------------------------------------------------------------------------- 1 | Target.module( 2 | name: "AccessibilityObjCFoundation", 3 | dependencies: []) 4 | -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Sources/AppError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Sources/AppError.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Sources/Bundle+Build.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Sources/Bundle+Build.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Sources/Collection+helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Sources/Collection+helpers.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Sources/DoubleOptional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Sources/DoubleOptional.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Sources/EmptyObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Sources/EmptyObject.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Sources/KeyModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Sources/KeyModifier.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Sources/ProcessInfo+helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Sources/ProcessInfo+helpers.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Sources/String+helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Sources/String+helpers.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Sources/URL+helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Sources/URL+helpers.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Tests/AppFoundationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Tests/AppFoundationTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/AppFoundation/Tests/ErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/AppFoundation/Tests/ErrorTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/ChatAppEvents/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ChatAppEvents/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/ChatAppEvents/Sources/ChatAppEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ChatAppEvents/Sources/ChatAppEvents.swift -------------------------------------------------------------------------------- /app/modules/foundations/ChatFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ChatFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/ChatFoundation/Sources/ChatMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ChatFoundation/Sources/ChatMode.swift -------------------------------------------------------------------------------- /app/modules/foundations/ChatFoundation/Tests/ChatFoundationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ChatFoundation/Tests/ChatFoundationTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/CodeCompletionFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/CodeCompletionFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/CodeCompletionFoundation/Sources/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/CodeCompletionFoundation/Sources/Types.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/Sources/Atomic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/Sources/Atomic.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/Sources/Bindable+helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/Sources/Bindable+helpers.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/Sources/Future+extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/Sources/Future+extension.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/Sources/ObservableValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/Sources/ObservableValue.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/Sources/ReplayStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/Sources/ReplayStrategy.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/Sources/TaskQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/Sources/TaskQueue.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/Sources/helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/Sources/helpers.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/Tests/TaskQueueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/Tests/TaskQueueTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/Tests/helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/Tests/helpers.swift -------------------------------------------------------------------------------- /app/modules/foundations/ConcurrencyFoundation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ConcurrencyFoundation/readme.md -------------------------------------------------------------------------------- /app/modules/foundations/DependencyFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/DependencyFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/FileDiffFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FileDiffFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/FileDiffFoundation/Sources/FileDiff+getGitDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FileDiffFoundation/Sources/FileDiff+getGitDiff.swift -------------------------------------------------------------------------------- /app/modules/foundations/FileDiffFoundation/Sources/FileDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FileDiffFoundation/Sources/FileDiff.swift -------------------------------------------------------------------------------- /app/modules/foundations/FileDiffFoundation/Sources/XCSourceTextBufferI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FileDiffFoundation/Sources/XCSourceTextBufferI.swift -------------------------------------------------------------------------------- /app/modules/foundations/FileDiffFoundation/Tests/getColoredDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FileDiffFoundation/Tests/getColoredDiffTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/FileDiffFoundation/Tests/getGitDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FileDiffFoundation/Tests/getGitDiffTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/FileDiffFoundation/Tests/rebaseChangesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FileDiffFoundation/Tests/rebaseChangesTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/FileDiffTypesFoundation/Module.swift: -------------------------------------------------------------------------------- 1 | Target.module( 2 | name: "FileDiffTypesFoundation", 3 | dependencies: []) 4 | -------------------------------------------------------------------------------- /app/modules/foundations/FileDiffTypesFoundation/Sources/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FileDiffTypesFoundation/Sources/Types.swift -------------------------------------------------------------------------------- /app/modules/foundations/FoundationInterfaces/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FoundationInterfaces/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/FoundationInterfaces/Sources/FSEventsWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FoundationInterfaces/Sources/FSEventsWatcher.swift -------------------------------------------------------------------------------- /app/modules/foundations/FoundationInterfaces/Sources/FileManager+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FoundationInterfaces/Sources/FileManager+Mock.swift -------------------------------------------------------------------------------- /app/modules/foundations/FoundationInterfaces/Sources/FileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FoundationInterfaces/Sources/FileManager.swift -------------------------------------------------------------------------------- /app/modules/foundations/FoundationInterfaces/Sources/UserDefaultsI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FoundationInterfaces/Sources/UserDefaultsI.swift -------------------------------------------------------------------------------- /app/modules/foundations/FoundationInterfaces/Tests/FileManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FoundationInterfaces/Tests/FileManagerTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/FoundationInterfaces/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/FoundationInterfaces/readme.md -------------------------------------------------------------------------------- /app/modules/foundations/JSONFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/JSONFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/JSONFoundation/Sources/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/JSONFoundation/Sources/JSON.swift -------------------------------------------------------------------------------- /app/modules/foundations/JSONFoundation/Sources/JSONCoder+helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/JSONFoundation/Sources/JSONCoder+helpers.swift -------------------------------------------------------------------------------- /app/modules/foundations/JSONFoundation/Tests/JSONTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/JSONFoundation/Tests/JSONTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/AIModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/AIModel.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/AIProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/AIProvider.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/ExternalAgent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/ExternalAgent.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/ModelPricing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/ModelPricing.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/providers/Anthropic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/providers/Anthropic.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/providers/ClaudeCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/providers/ClaudeCode.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/providers/Codex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/providers/Codex.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/providers/Gemini.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/providers/Gemini.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/providers/Groq.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/providers/Groq.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/providers/Inception.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/providers/Inception.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/providers/Mistral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/providers/Mistral.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/providers/OpenAI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/providers/OpenAI.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Sources/providers/OpenRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Sources/providers/OpenRouter.swift -------------------------------------------------------------------------------- /app/modules/foundations/LLMFoundation/Tests/LLMFoundationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/LLMFoundation/Tests/LLMFoundationTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/RoutingFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/RoutingFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/RoutingFoundation/Sources/InternalHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/RoutingFoundation/Sources/InternalHelpers.swift -------------------------------------------------------------------------------- /app/modules/foundations/RoutingFoundation/Sources/Route.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/RoutingFoundation/Sources/Route.swift -------------------------------------------------------------------------------- /app/modules/foundations/RoutingFoundation/Sources/Router+Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/RoutingFoundation/Sources/Router+Previews.swift -------------------------------------------------------------------------------- /app/modules/foundations/RoutingFoundation/Tests/RouteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/RoutingFoundation/Tests/RouteTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/SharedUtilsFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/SharedUtilsFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/SharedUtilsFoundation/Sources/OpenHostApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/SharedUtilsFoundation/Sources/OpenHostApp.swift -------------------------------------------------------------------------------- /app/modules/foundations/SharedValuesFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/SharedValuesFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/SwiftTesting/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/SwiftTesting/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/SwiftTesting/Sources/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/SwiftTesting/Sources/Expectation.swift -------------------------------------------------------------------------------- /app/modules/foundations/SwiftTesting/Sources/JSONTestHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/SwiftTesting/Sources/JSONTestHelpers.swift -------------------------------------------------------------------------------- /app/modules/foundations/SwiftTesting/Sources/Observable+onchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/SwiftTesting/Sources/Observable+onchange.swift -------------------------------------------------------------------------------- /app/modules/foundations/SwiftTesting/Sources/TestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/SwiftTesting/Sources/TestError.swift -------------------------------------------------------------------------------- /app/modules/foundations/SwiftTesting/Sources/nextTick.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/SwiftTesting/Sources/nextTick.swift -------------------------------------------------------------------------------- /app/modules/foundations/SwiftTesting/Tests/Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/SwiftTesting/Tests/Test.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolFoundation/Sources/DefaultTool/UnknownTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolFoundation/Sources/DefaultTool/UnknownTool.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolFoundation/Sources/Encoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolFoundation/Sources/Encoding.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolFoundation/Sources/TestTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolFoundation/Sources/TestTool.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolFoundation/Sources/Tool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolFoundation/Sources/Tool.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolFoundation/Sources/ToolsPlugin+Dependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolFoundation/Sources/ToolsPlugin+Dependency.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolFoundation/Sources/ToolsPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolFoundation/Sources/ToolsPlugin.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolFoundation/Tests/ToolErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolFoundation/Tests/ToolErrorTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolFoundation/Tests/ToolsPluginTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolFoundation/Tests/ToolsPluginTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolFoundation/Tests/UnknownToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolFoundation/Tests/UnknownToolTests.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolTypesFoundation/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolTypesFoundation/Module.swift -------------------------------------------------------------------------------- /app/modules/foundations/ToolTypesFoundation/Sources/tools.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/ToolTypesFoundation/Sources/tools.generated.swift -------------------------------------------------------------------------------- /app/modules/foundations/XcodeThemeFoundation/Module.swift: -------------------------------------------------------------------------------- 1 | Target.module( 2 | name: "XcodeThemeFoundation", 3 | dependencies: []) 4 | -------------------------------------------------------------------------------- /app/modules/foundations/XcodeThemeFoundation/Sources/XcodeThemeParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/foundations/XcodeThemeFoundation/Sources/XcodeThemeParser.swift -------------------------------------------------------------------------------- /app/modules/macros/ThreadSafe/Macro/MacroPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/macros/ThreadSafe/Macro/MacroPlugin.swift -------------------------------------------------------------------------------- /app/modules/macros/ThreadSafe/Macro/ThreadSafe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/macros/ThreadSafe/Macro/ThreadSafe.swift -------------------------------------------------------------------------------- /app/modules/macros/ThreadSafe/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/macros/ThreadSafe/Module.swift -------------------------------------------------------------------------------- /app/modules/macros/ThreadSafe/Sources/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/macros/ThreadSafe/Sources/Plugin.swift -------------------------------------------------------------------------------- /app/modules/macros/ThreadSafe/Tests/ThreadSafeInitializerMacroTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/macros/ThreadSafe/Tests/ThreadSafeInitializerMacroTests.swift -------------------------------------------------------------------------------- /app/modules/macros/ThreadSafe/Tests/ThreadSafeMacroIntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/macros/ThreadSafe/Tests/ThreadSafeMacroIntegrationTests.swift -------------------------------------------------------------------------------- /app/modules/macros/ThreadSafe/Tests/ThreadSafeMacroTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/macros/ThreadSafe/Tests/ThreadSafeMacroTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/ExtensionCommandHandler/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/ExtensionCommandHandler/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ACPTool/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ACPTool/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ACPTool/Sources/ACPTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ACPTool/Sources/ACPTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ACPTool/Sources/ACPToolView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ACPTool/Sources/ACPToolView+Preview.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ACPTool/Sources/ACPToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ACPTool/Sources/ACPToolView.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ACPTool/Sources/ACPToolViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ACPTool/Sources/ACPToolViewModel.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/AskFollowUpTool/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/AskFollowUpTool/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/AskFollowUpTool/Sources/AskFollowUpTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/AskFollowUpTool/Sources/AskFollowUpTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/AskFollowUpTool/Sources/AskFollowUpToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/AskFollowUpTool/Sources/AskFollowUpToolView.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/AskFollowUpTool/Tests/AskFollowUpToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/AskFollowUpTool/Tests/AskFollowUpToolTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/BuildTool/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/BuildTool/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/BuildTool/Sources/BuildTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/BuildTool/Sources/BuildTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/BuildTool/Sources/BuildToolView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/BuildTool/Sources/BuildToolView+Preview.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/BuildTool/Sources/BuildToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/BuildTool/Sources/BuildToolView.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/BuildTool/Tests/BuildToolEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/BuildTool/Tests/BuildToolEncodingTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ClaudeCodeTools/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ClaudeCodeTools/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ClaudeCodeTools/Sources/Glob/GlobContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ClaudeCodeTools/Sources/Glob/GlobContent.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ClaudeCodeTools/Sources/Glob/GlobTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ClaudeCodeTools/Sources/Glob/GlobTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ClaudeCodeTools/Sources/TodoWrite/PlanTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ClaudeCodeTools/Sources/TodoWrite/PlanTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/EditFilesTool/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/EditFilesTool/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/EditFilesTool/Sources/ClaudeCodeEditTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/EditFilesTool/Sources/ClaudeCodeEditTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/EditFilesTool/Sources/ClaudeCodeWriteTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/EditFilesTool/Sources/ClaudeCodeWriteTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/EditFilesTool/Sources/EditFilesTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/EditFilesTool/Sources/EditFilesTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/EditFilesTool/Sources/EditFilesToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/EditFilesTool/Sources/EditFilesToolView.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/EditFilesTool/Sources/helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/EditFilesTool/Sources/helpers.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/EditFilesTool/Tests/EditFileToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/EditFilesTool/Tests/EditFileToolTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/EditFilesTool/Tests/ToolUseViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/EditFilesTool/Tests/ToolUseViewModelTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ExecuteCommandTool/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ExecuteCommandTool/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/LSTool/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/LSTool/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/LSTool/Sources/ClaudeCodeLSTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/LSTool/Sources/ClaudeCodeLSTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/LSTool/Sources/LSTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/LSTool/Sources/LSTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/LSTool/Sources/LSToolView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/LSTool/Sources/LSToolView+Preview.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/LSTool/Sources/LSToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/LSTool/Sources/LSToolView.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/LSTool/Sources/LSToolViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/LSTool/Sources/LSToolViewModel.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/LSTool/Tests/ClaudeCodeLSToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/LSTool/Tests/ClaudeCodeLSToolTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/LSTool/Tests/LSTool+EncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/LSTool/Tests/LSTool+EncodingTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/LSTool/Tests/LSToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/LSTool/Tests/LSToolTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ReadFileTool/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ReadFileTool/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ReadFileTool/Sources/ClaudeCodeReadTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ReadFileTool/Sources/ClaudeCodeReadTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ReadFileTool/Sources/Content.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ReadFileTool/Sources/Content.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ReadFileTool/Sources/ReadFileTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ReadFileTool/Sources/ReadFileTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ReadFileTool/Sources/ReadFileToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ReadFileTool/Sources/ReadFileToolView.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ReadFileTool/Sources/ReadFileToolViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ReadFileTool/Sources/ReadFileToolViewModel.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ReadFileTool/Tests/ArraySafeSubscriptTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ReadFileTool/Tests/ArraySafeSubscriptTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ReadFileTool/Tests/ClaudeCodeReadToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ReadFileTool/Tests/ClaudeCodeReadToolTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/ReadFileTool/Tests/ReadFileToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/ReadFileTool/Tests/ReadFileToolTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/SearchFilesTool/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/SearchFilesTool/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/SearchFilesTool/Sources/ClaudeCodeGrepTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/SearchFilesTool/Sources/ClaudeCodeGrepTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/SearchFilesTool/Sources/SearchFilesTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/SearchFilesTool/Sources/SearchFilesTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/SearchFilesTool/Sources/SearchFilesToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/SearchFilesTool/Sources/SearchFilesToolView.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/SearchFilesTool/Tests/SearchFilesToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/SearchFilesTool/Tests/SearchFilesToolTests.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/WebFetchTool/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/WebFetchTool/Module.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/WebFetchTool/Sources/ClaudeCodeWebFetchTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/WebFetchTool/Sources/ClaudeCodeWebFetchTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/WebFetchTool/Sources/HTMLToMarkdownConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/WebFetchTool/Sources/HTMLToMarkdownConverter.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/WebFetchTool/Sources/WebContentFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/WebFetchTool/Sources/WebContentFetcher.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/WebFetchTool/Sources/WebFetchTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/WebFetchTool/Sources/WebFetchTool.swift -------------------------------------------------------------------------------- /app/modules/plugins/tools/WebFetchTool/Sources/WebFetchToolUseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/plugins/tools/WebFetchTool/Sources/WebFetchToolUseView.swift -------------------------------------------------------------------------------- /app/modules/serviceAdapters/SettingsServiceToolsAdapter/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceAdapters/SettingsServiceToolsAdapter/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceAdapters/XcodeObserverWindowsAdapter/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceAdapters/XcodeObserverWindowsAdapter/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/AppEventServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/AppEventServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/AppUpdateServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/AppUpdateServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/AppUpdateServiceInterface/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/AppUpdateServiceInterface/Readme.md -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/ChatCompletionServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/ChatCompletionServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/ChatHistoryServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/ChatHistoryServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/ChatServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/ChatServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/ChatServiceInterface/Sources/ChatService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/ChatServiceInterface/Sources/ChatService.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/CheckpointServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/CheckpointServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/CheckpointServiceInterface/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/CheckpointServiceInterface/readme.md -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/CodeCompletionServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/CodeCompletionServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/ExtensionEventsInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/ExtensionEventsInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/FileSuggestionServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/FileSuggestionServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/GithubCopilotServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/GithubCopilotServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/HighlighterServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/HighlighterServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/JRPCServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/JRPCServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/JRPCServiceInterface/Sources/JRPCService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/JRPCServiceInterface/Sources/JRPCService.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/KeyboardShortcutServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/KeyboardShortcutServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/LLMServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/LLMServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/LLMServiceInterface/Sources/LLMService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/LLMServiceInterface/Sources/LLMService.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/LLMServiceInterface/Sources/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/LLMServiceInterface/Sources/Types.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/LocalServerServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/LocalServerServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/LoggingServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/LoggingServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/LoggingServiceInterface/Sources/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/LoggingServiceInterface/Sources/Logger.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/MCPServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/MCPServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/MCPServiceInterface/Sources/MCPService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/MCPServiceInterface/Sources/MCPService.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/PermissionsServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/PermissionsServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/PushNotificationServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/PushNotificationServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/SettingsServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/SettingsServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/ShellServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/ShellServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/XPCServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/XPCServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/XPCServiceInterface/Sources/XPCError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/XPCServiceInterface/Sources/XPCError.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/XcodeControllerServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/XcodeControllerServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/serviceInterfaces/XcodeObserverServiceInterface/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/serviceInterfaces/XcodeObserverServiceInterface/Module.swift -------------------------------------------------------------------------------- /app/modules/services/AppEventService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/AppEventService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/AppEventService/Sources/DefaultAppEventRegistry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/AppEventService/Sources/DefaultAppEventRegistry.swift -------------------------------------------------------------------------------- /app/modules/services/AppUpdateService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/AppUpdateService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/AppUpdateService/Sources/DefaultAppUpdateService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/AppUpdateService/Sources/DefaultAppUpdateService.swift -------------------------------------------------------------------------------- /app/modules/services/AppUpdateService/Tests/AppUpdateServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/AppUpdateService/Tests/AppUpdateServiceTests.swift -------------------------------------------------------------------------------- /app/modules/services/ChatCompletionService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatCompletionService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/ChatCompletionService/Sources/helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatCompletionService/Sources/helpers.swift -------------------------------------------------------------------------------- /app/modules/services/ChatCompletionService/Sources/models/ChatQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatCompletionService/Sources/models/ChatQuery.swift -------------------------------------------------------------------------------- /app/modules/services/ChatCompletionService/Sources/models/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatCompletionService/Sources/models/Model.swift -------------------------------------------------------------------------------- /app/modules/services/ChatCompletionService/Sources/models/ModelResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatCompletionService/Sources/models/ModelResult.swift -------------------------------------------------------------------------------- /app/modules/services/ChatCompletionService/Sources/models/ModelsResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatCompletionService/Sources/models/ModelsResult.swift -------------------------------------------------------------------------------- /app/modules/services/ChatCompletionService/Tests/decodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatCompletionService/Tests/decodingTests.swift -------------------------------------------------------------------------------- /app/modules/services/ChatCompletionService/Tests/helpersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatCompletionService/Tests/helpersTests.swift -------------------------------------------------------------------------------- /app/modules/services/ChatService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/ChatService/Sources/AttachmentSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatService/Sources/AttachmentSerializer.swift -------------------------------------------------------------------------------- /app/modules/services/ChatService/Sources/ChatThreadRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatService/Sources/ChatThreadRecord.swift -------------------------------------------------------------------------------- /app/modules/services/ChatService/Sources/DefaultChatHistoryService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatService/Sources/DefaultChatHistoryService.swift -------------------------------------------------------------------------------- /app/modules/services/ChatService/Sources/DefaultChatService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatService/Sources/DefaultChatService.swift -------------------------------------------------------------------------------- /app/modules/services/ChatService/Sources/Serialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatService/Sources/Serialization.swift -------------------------------------------------------------------------------- /app/modules/services/ChatService/Tests/ChatHistoryServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatService/Tests/ChatHistoryServiceTests.swift -------------------------------------------------------------------------------- /app/modules/services/ChatService/Tests/DefaultChatServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ChatService/Tests/DefaultChatServiceTests.swift -------------------------------------------------------------------------------- /app/modules/services/CheckpointService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/CheckpointService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/CodeCompletionService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/CodeCompletionService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/CodeCompletionService/Sources/CompletionCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/CodeCompletionService/Sources/CompletionCache.swift -------------------------------------------------------------------------------- /app/modules/services/CodeCompletionService/Sources/LRUQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/CodeCompletionService/Sources/LRUQueue.swift -------------------------------------------------------------------------------- /app/modules/services/CodeCompletionService/Sources/RecentEditsTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/CodeCompletionService/Sources/RecentEditsTracker.swift -------------------------------------------------------------------------------- /app/modules/services/CodeCompletionService/Sources/WorkspaceIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/CodeCompletionService/Sources/WorkspaceIndex.swift -------------------------------------------------------------------------------- /app/modules/services/CodeCompletionService/Tests/CompletionCacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/CodeCompletionService/Tests/CompletionCacheTests.swift -------------------------------------------------------------------------------- /app/modules/services/CodeCompletionService/Tests/FileWatcherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/CodeCompletionService/Tests/FileWatcherTests.swift -------------------------------------------------------------------------------- /app/modules/services/CodeCompletionService/Tests/LRUQueueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/CodeCompletionService/Tests/LRUQueueTests.swift -------------------------------------------------------------------------------- /app/modules/services/FileSuggestionService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/FileSuggestionService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/FileSuggestionService/Sources/textFileExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/FileSuggestionService/Sources/textFileExtensions.swift -------------------------------------------------------------------------------- /app/modules/services/GithubCopilotService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/GithubCopilotService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/GithubCopilotService/Sources/GithubCopilotServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/GithubCopilotService/Sources/GithubCopilotServer.swift -------------------------------------------------------------------------------- /app/modules/services/GithubCopilotService/Sources/JSONRPC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/GithubCopilotService/Sources/JSONRPC.swift -------------------------------------------------------------------------------- /app/modules/services/GithubCopilotService/Sources/LSPTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/GithubCopilotService/Sources/LSPTypes.swift -------------------------------------------------------------------------------- /app/modules/services/GithubCopilotService/Sources/LanguageIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/GithubCopilotService/Sources/LanguageIdentifier.swift -------------------------------------------------------------------------------- /app/modules/services/JRPCService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/JRPCService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/JRPCService/Sources/DefaultJRPCService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/JRPCService/Sources/DefaultJRPCService.swift -------------------------------------------------------------------------------- /app/modules/services/JRPCService/Sources/DefaultStdioConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/JRPCService/Sources/DefaultStdioConnection.swift -------------------------------------------------------------------------------- /app/modules/services/JRPCService/Tests/JSONStreamingParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/JRPCService/Tests/JSONStreamingParserTests.swift -------------------------------------------------------------------------------- /app/modules/services/KeyboardShortcutService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/KeyboardShortcutService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Sources/DefaultLLMService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Sources/DefaultLLMService.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Sources/FailedTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Sources/FailedTool.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Sources/JSON+partialParsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Sources/JSON+partialParsing.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Sources/LLMModelManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Sources/LLMModelManager.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Sources/RepeatDebugHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Sources/RepeatDebugHelper.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Sources/RequestStreamingHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Sources/RequestStreamingHelper.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Sources/helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Sources/helpers.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Sources/prompts/Prompt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Sources/prompts/Prompt.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Tests/APIs/SendMessageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Tests/APIs/SendMessageTests.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Tests/APIs/SendOneMessageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Tests/APIs/SendOneMessageTests.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Tests/APIs/SummarizeConversationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Tests/APIs/SummarizeConversationTests.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Tests/APIs/helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Tests/APIs/helpers.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Tests/APIsSerializationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Tests/APIsSerializationTests.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Tests/HelpersReasoningTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Tests/HelpersReasoningTests.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Tests/JSONPartialParsingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Tests/JSONPartialParsingTests.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Tests/LLMModelManager+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Tests/LLMModelManager+Mock.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Tests/LLMModelManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Tests/LLMModelManagerTests.swift -------------------------------------------------------------------------------- /app/modules/services/LLMService/Tests/RequestStreamingHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LLMService/Tests/RequestStreamingHelperTests.swift -------------------------------------------------------------------------------- /app/modules/services/LocalServerService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LocalServerService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/LocalServerService/Sources/Data+extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LocalServerService/Sources/Data+extension.swift -------------------------------------------------------------------------------- /app/modules/services/LocalServerService/Sources/DefaultLocalServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LocalServerService/Sources/DefaultLocalServer.swift -------------------------------------------------------------------------------- /app/modules/services/LocalServerService/Sources/Resources/launch-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LocalServerService/Sources/Resources/launch-server.sh -------------------------------------------------------------------------------- /app/modules/services/LocalServerService/Tests/Data+extensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LocalServerService/Tests/Data+extensionTests.swift -------------------------------------------------------------------------------- /app/modules/services/LoggingService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LoggingService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/LoggingService/Sources/DefaultLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LoggingService/Sources/DefaultLogger.swift -------------------------------------------------------------------------------- /app/modules/services/LoggingService/Tests/DefaultLoggerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/LoggingService/Tests/DefaultLoggerTests.swift -------------------------------------------------------------------------------- /app/modules/services/MCPService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/MCPService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/MCPService/Sources/DefaultMCPServerConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/MCPService/Sources/DefaultMCPServerConnection.swift -------------------------------------------------------------------------------- /app/modules/services/MCPService/Sources/DefaultMCPService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/MCPService/Sources/DefaultMCPService.swift -------------------------------------------------------------------------------- /app/modules/services/MCPService/Sources/MCPTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/MCPService/Sources/MCPTool.swift -------------------------------------------------------------------------------- /app/modules/services/MCPService/Sources/StdioTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/MCPService/Sources/StdioTransport.swift -------------------------------------------------------------------------------- /app/modules/services/MCPService/Tests/DefaultMCPServerConnectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/MCPService/Tests/DefaultMCPServerConnectionTests.swift -------------------------------------------------------------------------------- /app/modules/services/MCPService/Tests/DefaultMCPServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/MCPService/Tests/DefaultMCPServiceTests.swift -------------------------------------------------------------------------------- /app/modules/services/MCPService/Tests/MCPToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/MCPService/Tests/MCPToolTests.swift -------------------------------------------------------------------------------- /app/modules/services/MCPService/Tests/StringSanitizedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/MCPService/Tests/StringSanitizedTests.swift -------------------------------------------------------------------------------- /app/modules/services/PermissionsService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/PermissionsService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/PushNotificationService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/PushNotificationService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/SettingsService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/SettingsService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/SettingsService/Sources/DefaultSettingsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/SettingsService/Sources/DefaultSettingsService.swift -------------------------------------------------------------------------------- /app/modules/services/SettingsService/Sources/ExternalSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/SettingsService/Sources/ExternalSettings.swift -------------------------------------------------------------------------------- /app/modules/services/SettingsService/Sources/Settings+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/SettingsService/Sources/Settings+Codable.swift -------------------------------------------------------------------------------- /app/modules/services/SettingsService/Sources/Types+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/SettingsService/Sources/Types+Codable.swift -------------------------------------------------------------------------------- /app/modules/services/SettingsService/Tests/DefaultSettingsServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/SettingsService/Tests/DefaultSettingsServiceTests.swift -------------------------------------------------------------------------------- /app/modules/services/SettingsService/Tests/PartialEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/SettingsService/Tests/PartialEncodingTests.swift -------------------------------------------------------------------------------- /app/modules/services/SettingsService/Tests/Settings+CodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/SettingsService/Tests/Settings+CodableTests.swift -------------------------------------------------------------------------------- /app/modules/services/SettingsService/Tests/SettingsMigrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/SettingsService/Tests/SettingsMigrationTests.swift -------------------------------------------------------------------------------- /app/modules/services/ShellService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ShellService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/ShellService/Sources/DefaultShellService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ShellService/Sources/DefaultShellService.swift -------------------------------------------------------------------------------- /app/modules/services/ShellService/Tests/DefaultShellServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/ShellService/Tests/DefaultShellServiceTests.swift -------------------------------------------------------------------------------- /app/modules/services/XcodeControllerService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/XcodeControllerService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/XcodeObserverService/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/XcodeObserverService/Module.swift -------------------------------------------------------------------------------- /app/modules/services/XcodeObserverService/Sources/AXCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/XcodeObserverService/Sources/AXCache.swift -------------------------------------------------------------------------------- /app/modules/services/XcodeObserverService/Sources/AXElementObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/XcodeObserverService/Sources/AXElementObserver.swift -------------------------------------------------------------------------------- /app/modules/services/XcodeObserverService/Sources/AppsActivationState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/XcodeObserverService/Sources/AppsActivationState.swift -------------------------------------------------------------------------------- /app/modules/services/XcodeObserverService/Sources/FileLister.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/XcodeObserverService/Sources/FileLister.swift -------------------------------------------------------------------------------- /app/modules/services/XcodeObserverService/Sources/InternalState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/XcodeObserverService/Sources/InternalState.swift -------------------------------------------------------------------------------- /app/modules/services/XcodeObserverService/Tests/resources/SPM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/modules/services/XcodeObserverService/Tests/resources/SPM/.gitignore -------------------------------------------------------------------------------- /app/modules/services/XcodeObserverService/Tests/resources/TestXcodeProjParsing/TestXcodeProjParsing/Config.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/modules/services/XcodeObserverService/Tests/resources/directory/.hidden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/modules/services/XcodeObserverService/Tests/resources/directory/subdirectory/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/rules-header.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/rules-header.swiftformat -------------------------------------------------------------------------------- /app/rules.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/rules.swiftformat -------------------------------------------------------------------------------- /app/tools/dependencies/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Package.resolved -------------------------------------------------------------------------------- /app/tools/dependencies/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Package.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Sources/Executable/command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Sources/Executable/command.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Sources/Library/DependencyInjection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Sources/Library/DependencyInjection.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Sources/Library/GenerateEntirePackage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Sources/Library/GenerateEntirePackage.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Sources/Library/GenerateModulePackage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Sources/Library/GenerateModulePackage.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Sources/Library/SwiftSyntax+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Sources/Library/SwiftSyntax+Extensions.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Sources/Library/TargetInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Sources/Library/TargetInfo.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Sources/Library/UpdateDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Sources/Library/UpdateDependencies.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Sources/Library/UpdateModuleFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Sources/Library/UpdateModuleFile.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Sources/Library/helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Sources/Library/helpers.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/HelpersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/HelpersTests.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/MockFileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/MockFileManager.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/README.md -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/SyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/SyncTests.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/resources/test-repo-1/ModuleA/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/resources/test-repo-1/ModuleA/Module.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/resources/test-repo-1/ModuleA/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/resources/test-repo-1/ModuleA/Package.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/resources/test-repo-1/ModuleB/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/resources/test-repo-1/ModuleB/Module.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/resources/test-repo-1/ModuleB/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/resources/test-repo-1/ModuleB/Package.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/resources/test-repo-1/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/resources/test-repo-1/Package.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/resources/test-repo-1/Package.template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/resources/test-repo-1/Package.template.swift -------------------------------------------------------------------------------- /app/tools/dependencies/Tests/resources/test-repo-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/Tests/resources/test-repo-1/README.md -------------------------------------------------------------------------------- /app/tools/dependencies/build-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/build-binary.sh -------------------------------------------------------------------------------- /app/tools/dependencies/focus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/focus.sh -------------------------------------------------------------------------------- /app/tools/dependencies/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/readme.md -------------------------------------------------------------------------------- /app/tools/dependencies/sync-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/sync-tests.sh -------------------------------------------------------------------------------- /app/tools/dependencies/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/dependencies/sync.sh -------------------------------------------------------------------------------- /app/tools/release/cleanup_xcodeproj_after_release_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/release/cleanup_xcodeproj_after_release_build.sh -------------------------------------------------------------------------------- /app/tools/release/configure_xcodeproj_for_release_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/release/configure_xcodeproj_for_release_build.sh -------------------------------------------------------------------------------- /app/tools/release/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/release/release.sh -------------------------------------------------------------------------------- /app/tools/sync-js-bundle-to-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/app/tools/sync-js-bundle-to-app.sh -------------------------------------------------------------------------------- /cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/cmd.sh -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/CLAUDE.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/checks-passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/checks-passed.png -------------------------------------------------------------------------------- /docs/assets/claude-code-in-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/claude-code-in-chat.png -------------------------------------------------------------------------------- /docs/assets/claude-code-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/claude-code-setting.png -------------------------------------------------------------------------------- /docs/assets/hero-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/hero-dark.png -------------------------------------------------------------------------------- /docs/assets/hero-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/hero-light.png -------------------------------------------------------------------------------- /docs/assets/proxy-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/proxy-setup.png -------------------------------------------------------------------------------- /docs/assets/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/sidebar.png -------------------------------------------------------------------------------- /docs/assets/videos/agent-mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/videos/agent-mode.jpg -------------------------------------------------------------------------------- /docs/assets/videos/chat-mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/videos/chat-mode.jpg -------------------------------------------------------------------------------- /docs/assets/videos/claude-code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/videos/claude-code.jpg -------------------------------------------------------------------------------- /docs/assets/videos/xcode26-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/videos/xcode26-demo.jpg -------------------------------------------------------------------------------- /docs/assets/xcode26-installation-prompt.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/xcode26-installation-prompt.jpeg -------------------------------------------------------------------------------- /docs/assets/xcode26-sidebar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/assets/xcode26-sidebar.jpeg -------------------------------------------------------------------------------- /docs/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/docs.json -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/index.mdx -------------------------------------------------------------------------------- /docs/logo/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/logo/dark.png -------------------------------------------------------------------------------- /docs/logo/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/logo/light.png -------------------------------------------------------------------------------- /docs/pages/ai-providers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/pages/ai-providers.mdx -------------------------------------------------------------------------------- /docs/pages/chat-modes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/pages/chat-modes.mdx -------------------------------------------------------------------------------- /docs/pages/claude-code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/pages/claude-code.mdx -------------------------------------------------------------------------------- /docs/pages/codex.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/pages/codex.mdx -------------------------------------------------------------------------------- /docs/pages/features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/pages/features.mdx -------------------------------------------------------------------------------- /docs/pages/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/pages/install.mdx -------------------------------------------------------------------------------- /docs/pages/mcp-servers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/pages/mcp-servers.mdx -------------------------------------------------------------------------------- /docs/pages/models.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/pages/models.mdx -------------------------------------------------------------------------------- /docs/pages/quick-start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/pages/quick-start.mdx -------------------------------------------------------------------------------- /docs/pages/xcode-shortcuts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/pages/xcode-shortcuts.mdx -------------------------------------------------------------------------------- /docs/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/quickstart.mdx -------------------------------------------------------------------------------- /docs/snippets/features-showcase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/snippets/features-showcase.mdx -------------------------------------------------------------------------------- /docs/snippets/snippet-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/docs/snippets/snippet-intro.mdx -------------------------------------------------------------------------------- /local-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/.gitignore -------------------------------------------------------------------------------- /local-server/.nvmrc: -------------------------------------------------------------------------------- 1 | 22.13.1 2 | -------------------------------------------------------------------------------- /local-server/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/.prettierignore -------------------------------------------------------------------------------- /local-server/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/.prettierrc.json -------------------------------------------------------------------------------- /local-server/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /local-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/README.md -------------------------------------------------------------------------------- /local-server/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/build.js -------------------------------------------------------------------------------- /local-server/build.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/build.sha256 -------------------------------------------------------------------------------- /local-server/build.size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/build.size -------------------------------------------------------------------------------- /local-server/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/eslint.config.js -------------------------------------------------------------------------------- /local-server/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/jest.config.js -------------------------------------------------------------------------------- /local-server/jest.globalsetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/jest.globalsetup.js -------------------------------------------------------------------------------- /local-server/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/jest.setup.js -------------------------------------------------------------------------------- /local-server/jest.teardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/jest.teardown.js -------------------------------------------------------------------------------- /local-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/package.json -------------------------------------------------------------------------------- /local-server/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/logger.ts -------------------------------------------------------------------------------- /local-server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/main.ts -------------------------------------------------------------------------------- /local-server/src/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/secrets.ts -------------------------------------------------------------------------------- /local-server/src/server/__tests__/errorHandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/__tests__/errorHandler.test.ts -------------------------------------------------------------------------------- /local-server/src/server/ai-context/system-prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/ai-context/system-prompts.ts -------------------------------------------------------------------------------- /local-server/src/server/api/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /local-server/src/server/endpoints/__tests__/checkpoint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/__tests__/checkpoint.test.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/__tests__/interProcessesBridge.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/__tests__/interProcessesBridge.test.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/checkpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/checkpoint.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/codeCompletion/__tests__/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/codeCompletion/__tests__/helpers.test.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/codeCompletion/codeCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/codeCompletion/codeCompletion.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/codeCompletion/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/codeCompletion/helpers.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/getFileIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/getFileIcon.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/interProcessesBridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/interProcessesBridge.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/listModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/listModels.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/acp/claude-code-acp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/acp/claude-code-acp/index.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/acp/claude-code-acp/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/acp/claude-code-acp/tools.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/acp/claude-code-acp/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/acp/claude-code-acp/utils.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/acp/clients/ACPClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/acp/clients/ACPClient.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/acp/clients/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/acp/clients/helper.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/acp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/acp/index.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/acp/sendMessageToCodex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/acp/sendMessageToCodex.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/errorParsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/errorParsing.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/helpers.test.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/helpers.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/sendMessage/sendMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/sendMessage/sendMessage.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/tools/listFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/tools/listFiles.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/tools/searchFiles/endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/tools/searchFiles/endpoint.ts -------------------------------------------------------------------------------- /local-server/src/server/endpoints/tools/searchFiles/searchFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/endpoints/tools/searchFiles/searchFiles.ts -------------------------------------------------------------------------------- /local-server/src/server/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/errorHandler.ts -------------------------------------------------------------------------------- /local-server/src/server/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/errors.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/__tests__/inception.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/__tests__/inception.test.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/__tests__/openai.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/__tests__/openai.test.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/anthropic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/anthropic.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/gemini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/gemini.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/groq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/groq.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/inception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/inception.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/mistral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/mistral.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/open-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/open-router.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/openai.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/provider-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/provider-utils.ts -------------------------------------------------------------------------------- /local-server/src/server/providers/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/providers/provider.ts -------------------------------------------------------------------------------- /local-server/src/server/schemas/checkpointSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/schemas/checkpointSchema.ts -------------------------------------------------------------------------------- /local-server/src/server/schemas/codeCompletionSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/schemas/codeCompletionSchema.ts -------------------------------------------------------------------------------- /local-server/src/server/schemas/listFilesSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/schemas/listFilesSchema.ts -------------------------------------------------------------------------------- /local-server/src/server/schemas/listModelsSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/schemas/listModelsSchema.ts -------------------------------------------------------------------------------- /local-server/src/server/schemas/searchFileSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/schemas/searchFileSchema.ts -------------------------------------------------------------------------------- /local-server/src/server/schemas/sendMessageSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/schemas/sendMessageSchema.ts -------------------------------------------------------------------------------- /local-server/src/server/schemas/toolApprovalSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/schemas/toolApprovalSchema.ts -------------------------------------------------------------------------------- /local-server/src/server/schemas/toolsSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/schemas/toolsSchema.ts -------------------------------------------------------------------------------- /local-server/src/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/server/server.ts -------------------------------------------------------------------------------- /local-server/src/services/checkpoints/RepoPerTaskCheckpointService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/services/checkpoints/RepoPerTaskCheckpointService.ts -------------------------------------------------------------------------------- /local-server/src/services/checkpoints/ShadowCheckpointService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/services/checkpoints/ShadowCheckpointService.ts -------------------------------------------------------------------------------- /local-server/src/services/checkpoints/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/services/checkpoints/constants.ts -------------------------------------------------------------------------------- /local-server/src/services/checkpoints/excludes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/services/checkpoints/excludes.ts -------------------------------------------------------------------------------- /local-server/src/services/checkpoints/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/services/checkpoints/index.ts -------------------------------------------------------------------------------- /local-server/src/services/checkpoints/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/services/checkpoints/types.ts -------------------------------------------------------------------------------- /local-server/src/services/glob/list-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/services/glob/list-files.ts -------------------------------------------------------------------------------- /local-server/src/services/ripgrep/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/services/ripgrep/index.ts -------------------------------------------------------------------------------- /local-server/src/services/search/file-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/services/search/file-search.ts -------------------------------------------------------------------------------- /local-server/src/utils/__tests__/asyncStream.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/__tests__/asyncStream.test.ts -------------------------------------------------------------------------------- /local-server/src/utils/__tests__/jsonl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/__tests__/jsonl.test.ts -------------------------------------------------------------------------------- /local-server/src/utils/__tests__/streamingJSONParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/__tests__/streamingJSONParser.test.ts -------------------------------------------------------------------------------- /local-server/src/utils/asyncStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/asyncStream.ts -------------------------------------------------------------------------------- /local-server/src/utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/fs.ts -------------------------------------------------------------------------------- /local-server/src/utils/instrument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/instrument.ts -------------------------------------------------------------------------------- /local-server/src/utils/jsonl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/jsonl.ts -------------------------------------------------------------------------------- /local-server/src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/path.ts -------------------------------------------------------------------------------- /local-server/src/utils/spawn-promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/spawn-promise.ts -------------------------------------------------------------------------------- /local-server/src/utils/streamingJSONParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/streamingJSONParser.ts -------------------------------------------------------------------------------- /local-server/src/utils/tests/mockFs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/tests/mockFs.ts -------------------------------------------------------------------------------- /local-server/src/utils/tests/mockResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/tests/mockResponse.ts -------------------------------------------------------------------------------- /local-server/src/utils/tests/mockSpawn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/tests/mockSpawn.ts -------------------------------------------------------------------------------- /local-server/src/utils/typeChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/src/utils/typeChecks.ts -------------------------------------------------------------------------------- /local-server/test-input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/test-input.txt -------------------------------------------------------------------------------- /local-server/tools/__tests__/keepSorted.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/__tests__/keepSorted.test.ts -------------------------------------------------------------------------------- /local-server/tools/copy-to-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/copy-to-app.ts -------------------------------------------------------------------------------- /local-server/tools/generateSwiftSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/generateSwiftSchema.ts -------------------------------------------------------------------------------- /local-server/tools/hot-server-reload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/hot-server-reload.ts -------------------------------------------------------------------------------- /local-server/tools/keepSorted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/keepSorted.ts -------------------------------------------------------------------------------- /local-server/tools/parseAnthropicResponse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/parseAnthropicResponse.test.ts -------------------------------------------------------------------------------- /local-server/tools/parseAnthropicResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/parseAnthropicResponse.ts -------------------------------------------------------------------------------- /local-server/tools/parseOpenAIResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/parseOpenAIResponse.ts -------------------------------------------------------------------------------- /local-server/tools/pkg-watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/pkg-watch.ts -------------------------------------------------------------------------------- /local-server/tools/schema-generation/__tests__/__snapshots__/json_object/schema.ts: -------------------------------------------------------------------------------- 1 | export interface Wrapper { 2 | properties: Record; 3 | } 4 | -------------------------------------------------------------------------------- /local-server/tools/schema-generation/__tests__/__snapshots__/nested_optional_value_types/schema.ts: -------------------------------------------------------------------------------- 1 | export interface ValueType { 2 | array?: (string | undefined)[]; 3 | } 4 | -------------------------------------------------------------------------------- /local-server/tools/schema-generation/__tests__/codegen.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/schema-generation/__tests__/codegen.test.ts -------------------------------------------------------------------------------- /local-server/tools/schema-generation/jsonSchemaToSwift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/schema-generation/jsonSchemaToSwift.ts -------------------------------------------------------------------------------- /local-server/tools/schema-generation/templates/enumType.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/schema-generation/templates/enumType.hbs -------------------------------------------------------------------------------- /local-server/tools/schema-generation/templates/file.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/schema-generation/templates/file.hbs -------------------------------------------------------------------------------- /local-server/tools/schema-generation/templates/objectType.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/schema-generation/templates/objectType.hbs -------------------------------------------------------------------------------- /local-server/tools/schema-generation/templates/oneOfType.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/schema-generation/templates/oneOfType.hbs -------------------------------------------------------------------------------- /local-server/tools/schema-generation/tsToJSONSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/schema-generation/tsToJSONSchema.ts -------------------------------------------------------------------------------- /local-server/tools/schema-generation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tools/schema-generation/utils.ts -------------------------------------------------------------------------------- /local-server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tsconfig.build.json -------------------------------------------------------------------------------- /local-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/tsconfig.json -------------------------------------------------------------------------------- /local-server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/local-server/yarn.lock -------------------------------------------------------------------------------- /tools/githooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/tools/githooks/README.md -------------------------------------------------------------------------------- /tools/githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/tools/githooks/pre-commit -------------------------------------------------------------------------------- /tools/githooks/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcmd-dev/cmd/HEAD/tools/githooks/setup.sh --------------------------------------------------------------------------------