├── .claude └── settings.local.json ├── .gitignore ├── AiStudio4 ├── AiServices │ ├── AiServiceBase.cs │ ├── AiServiceResolver.cs │ ├── Claude.cs │ ├── Gemini.cs │ ├── LlamaCpp.cs │ ├── LoremIpsumService.cs │ ├── MessageBuilder.cs │ ├── MockAiService.cs │ ├── NetOpenAi.cs │ ├── OpenAI.cs │ ├── RequestPayloadBuilder.cs │ ├── ToolFormat.cs │ └── ToolResponseProcessor.cs ├── AiStudio4.csproj ├── AiStudioClient │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── components.json │ ├── cypress.config.mjs │ ├── cypress │ │ ├── README.md │ │ ├── e2e │ │ │ ├── basic_tests_1.cy.ts │ │ │ └── lorem_ipsum_messaging.cy.ts │ │ └── support │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.js │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.tsx │ │ ├── CommandInitializationPlugin.tsx │ │ ├── FeatureDesigns │ │ │ ├── ComponentTheming.md │ │ │ └── CustomPropertyRemovalFeatureDesign.md │ │ ├── commands │ │ │ ├── appearanceCommands.ts │ │ │ ├── coreCommands.ts │ │ │ ├── mcpServerCommands.ts │ │ │ ├── modelCommands.ts │ │ │ ├── settingsCommands.ts │ │ │ ├── shortcutPromptExecutor.ts │ │ │ ├── systemPromptCommands.ts │ │ │ ├── themeCommands.ts │ │ │ ├── toolCommands.ts │ │ │ ├── types.ts │ │ │ ├── userPromptCommands.ts │ │ │ └── voiceInputCommand.ts │ │ ├── components │ │ │ ├── AppHeader.tsx │ │ │ ├── AttachmentPreview.tsx │ │ │ ├── AudioAttachment.tsx │ │ │ ├── ChatContainer.tsx │ │ │ ├── ChatSpace.tsx │ │ │ ├── CommandBar.tsx │ │ │ ├── ConvTreeView.tsx │ │ │ ├── ConvTreeView │ │ │ │ ├── ConvTreeView.tsx │ │ │ │ ├── EmptyTreeView.tsx │ │ │ │ ├── TreeControls.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ ├── useMessageTree.ts │ │ │ │ └── useTreeVisualization.ts │ │ │ ├── ConvView.tsx │ │ │ ├── ConvView │ │ │ │ ├── AnimatedStreamingContent.tsx │ │ │ │ ├── BlockEditor.tsx │ │ │ │ ├── ConvView.css │ │ │ │ ├── ConvView.tsx │ │ │ │ ├── MessageActions.tsx │ │ │ │ ├── MessageEditor.tsx │ │ │ │ ├── MessageItem.tsx │ │ │ │ ├── ScrollToBottomButton.tsx │ │ │ │ └── index.ts │ │ │ ├── DragDropZone.tsx │ │ │ ├── FileAttachment.tsx │ │ │ ├── FontSizeProvider.tsx │ │ │ ├── HistoricalConvTree.tsx │ │ │ ├── HistoricalConvTreeList.tsx │ │ │ ├── IconSelector.tsx │ │ │ ├── InputBar.tsx │ │ │ ├── InputBar │ │ │ │ ├── ActionButtons.tsx │ │ │ │ ├── AttachmentSection.tsx │ │ │ │ ├── InputBar.tsx │ │ │ │ ├── MCPServersButton.tsx │ │ │ │ ├── MessageInputArea.tsx │ │ │ │ ├── ModelPrimary.tsx │ │ │ │ ├── ModelSecondary.tsx │ │ │ │ ├── ModelStatusSection.tsx │ │ │ │ ├── PrimaryModelButton.tsx │ │ │ │ ├── SecondaryModelButton.tsx │ │ │ │ ├── SystemPromptSection.tsx │ │ │ │ ├── TemperatureControl.tsx │ │ │ │ ├── ToolsButton.tsx │ │ │ │ ├── ToolsSection.tsx │ │ │ │ ├── TopPControl.tsx │ │ │ │ └── index.ts │ │ │ ├── LiveStreamToken.tsx │ │ │ ├── LoadingTimer.tsx │ │ │ ├── MarkdownPane.tsx │ │ │ ├── MarkdownPane │ │ │ │ ├── CodeBlock.tsx │ │ │ │ ├── CodeBlockHeader.tsx │ │ │ │ └── CodeBlockScrollButton.tsx │ │ │ ├── MessageAttachments.tsx │ │ │ ├── ModelStatusBar.tsx │ │ │ ├── PanelContainerLayout.tsx │ │ │ ├── PanelManager.tsx │ │ │ ├── PinnedShortcutButton.tsx │ │ │ ├── PinnedShortcutDropdown.tsx │ │ │ ├── PinnedShortcutRow.tsx │ │ │ ├── PinnedShortcuts.tsx │ │ │ ├── RenameShortcutDialog.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── SlashDropdown.tsx │ │ │ ├── StatusMessage.tsx │ │ │ ├── SystemPrompt │ │ │ │ ├── SystemPromptCard.tsx │ │ │ │ ├── SystemPromptCollapsedDisplay.tsx │ │ │ │ ├── SystemPromptComponent.tsx │ │ │ │ ├── SystemPromptEditor.tsx │ │ │ │ ├── SystemPromptLibrary.tsx │ │ │ │ └── SystemPromptPortal.tsx │ │ │ ├── TipOfTheDayOverlay.tsx │ │ │ ├── UserPrompt │ │ │ │ ├── UserPromptCard.tsx │ │ │ │ ├── UserPromptEditor.tsx │ │ │ │ └── UserPromptLibrary.tsx │ │ │ ├── commands │ │ │ │ └── CommandInitializer.tsx │ │ │ ├── common │ │ │ │ └── GenericForm.tsx │ │ │ ├── content │ │ │ │ ├── AiHiddenContentRenderer.tsx │ │ │ │ ├── SystemContentRenderer.tsx │ │ │ │ ├── TextContentRenderer.tsx │ │ │ │ ├── ToolContentRenderer.tsx │ │ │ │ ├── ToolResponseContentRenderer.tsx │ │ │ │ └── contentBlockRendererRegistry.ts │ │ │ ├── diagrams │ │ │ │ ├── abc-renderer.tsx │ │ │ │ ├── codeBlockRendererRegistry.ts │ │ │ │ ├── codeDiff-renderer.tsx │ │ │ │ ├── dot-renderer.tsx │ │ │ │ ├── gitCommit-renderer.tsx │ │ │ │ ├── html-renderer.tsx │ │ │ │ ├── json-renderer.tsx │ │ │ │ ├── markdown-marp-renderer.tsx │ │ │ │ ├── mermaid-renderer.tsx │ │ │ │ ├── modifyFiles-renderer.tsx │ │ │ │ ├── thinkAndAwaitUserInput-renderer.tsx │ │ │ │ ├── txt-renderer.tsx │ │ │ │ └── types.ts │ │ │ ├── modals │ │ │ │ ├── AppearanceModal.tsx │ │ │ │ ├── ConfirmationDialog.tsx │ │ │ │ ├── ConfirmationModal.tsx │ │ │ │ ├── FormModal.tsx │ │ │ │ ├── InfoModal.tsx │ │ │ │ ├── ModalManager.tsx │ │ │ │ ├── ModelFormModal.tsx │ │ │ │ ├── ModelsModal.tsx │ │ │ │ ├── OpenRouterModelModal.tsx │ │ │ │ ├── ProviderFormModal.tsx │ │ │ │ ├── ProvidersModal.tsx │ │ │ │ ├── ServerModal.tsx │ │ │ │ ├── SystemPromptModal.tsx │ │ │ │ ├── ThemeFormModal.tsx │ │ │ │ ├── ThemeModal.tsx │ │ │ │ ├── ToolEditorModal.tsx │ │ │ │ ├── ToolModal.tsx │ │ │ │ └── UserPromptModal.tsx │ │ │ ├── navigation │ │ │ │ └── NavigationContainer.tsx │ │ │ ├── pinnedShortcutsUtils.tsx │ │ │ ├── renderers │ │ │ │ ├── marp-controls.tsx │ │ │ │ ├── marp-presenter-view.tsx │ │ │ │ ├── marp-renderer.tsx │ │ │ │ ├── marp-styles.tsx │ │ │ │ └── marp-thumbnails.tsx │ │ │ ├── servers │ │ │ │ ├── DeleteServerDialog.tsx │ │ │ │ ├── ServerForm.tsx │ │ │ │ └── ServerFormDialog.tsx │ │ │ ├── settings │ │ │ │ ├── AppearanceTab.tsx │ │ │ │ ├── FontSizeControl.tsx │ │ │ │ ├── IconSelector.tsx │ │ │ │ ├── ModelForm.tsx │ │ │ │ ├── ModelManagement.tsx │ │ │ │ ├── ServiceProviderForm.tsx │ │ │ │ ├── ServiceProviderManagement.tsx │ │ │ │ ├── ThemeForm.tsx │ │ │ │ └── ThemeManagement.tsx │ │ │ ├── tools │ │ │ │ ├── ToolEditor.tsx │ │ │ │ ├── ToolPanel.tsx │ │ │ │ └── ToolSelector.tsx │ │ │ └── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── alert-dialog.tsx │ │ │ │ ├── alert.tsx │ │ │ │ ├── aspect-ratio.tsx │ │ │ │ ├── avatar.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── breadcrumb.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── carousel.tsx │ │ │ │ ├── chart.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── collapsible.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── context-menu.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── drawer.tsx │ │ │ │ ├── dropdown-menu.tsx │ │ │ │ ├── form.tsx │ │ │ │ ├── hover-card.tsx │ │ │ │ ├── input-otp.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── menubar.tsx │ │ │ │ ├── navigation-menu.tsx │ │ │ │ ├── pagination.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── radio-group.tsx │ │ │ │ ├── resizable.tsx │ │ │ │ ├── scroll-area.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── sheet.tsx │ │ │ │ ├── sidebar.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── sonner.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── table.tsx │ │ │ │ ├── tabs.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ ├── toast.tsx │ │ │ │ ├── toaster.tsx │ │ │ │ ├── toggle-group.tsx │ │ │ │ ├── toggle.tsx │ │ │ │ ├── tooltip.tsx │ │ │ │ └── unified-modal-dialog │ │ │ │ ├── README.md │ │ │ │ ├── UnifiedModalContent.tsx │ │ │ │ ├── UnifiedModalContext.tsx │ │ │ │ ├── UnifiedModalDialog.tsx │ │ │ │ ├── UnifiedModalFooter.tsx │ │ │ │ ├── UnifiedModalHeader.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── variants.ts │ │ ├── hooks │ │ │ ├── use-toast.ts │ │ │ ├── useAppearanceManagement.ts │ │ │ ├── useAttachmentManager.ts │ │ │ ├── useChatManagement.ts │ │ │ ├── useConfirmationDialog.ts │ │ │ ├── useDragDrop.ts │ │ │ ├── useFileSystemManagement.ts │ │ │ ├── useFormDialog.ts │ │ │ ├── useMediaQuery.ts │ │ │ ├── useMessageGraph.ts │ │ │ ├── useMessageSelection.ts │ │ │ ├── useMessageStream.ts │ │ │ ├── useOpenRouterModels.ts │ │ │ ├── useResourceFactory.ts │ │ │ ├── useResourceManagement.ts │ │ │ ├── useSystemPromptSelection.ts │ │ │ ├── useThemeManagement.ts │ │ │ ├── useToolCommands.ts │ │ │ ├── useToolsManagement.ts │ │ │ ├── useUserPromptManagement.ts │ │ │ ├── useVoiceInput.tsx │ │ │ └── useWebSocket.ts │ │ ├── index.css │ │ ├── lib │ │ │ ├── ThemeManager.ts │ │ │ └── utils.ts │ │ ├── main.tsx │ │ ├── removeComments2.ps1 │ │ ├── removeJsxComments.ps1 │ │ ├── services │ │ │ ├── api │ │ │ │ ├── apiClient.ts │ │ │ │ └── openRouterApi.ts │ │ │ ├── commandRegistry.ts │ │ │ ├── providers │ │ │ │ ├── fileNameProvider.ts │ │ │ │ └── userPromptProvider.ts │ │ │ ├── slashItemRegistry.ts │ │ │ ├── websocket │ │ │ │ ├── WebSocketService.ts │ │ │ │ └── websocketEvents.ts │ │ │ └── windowEvents.ts │ │ ├── stores │ │ │ ├── useAppearanceStore.ts │ │ │ ├── useAttachmentStore.ts │ │ │ ├── useCodeBlockStore.ts │ │ │ ├── useCommandStore.ts │ │ │ ├── useConvStore.ts │ │ │ ├── useDebugStore.ts │ │ │ ├── useFileSystemStore.ts │ │ │ ├── useGeneralSettingsStore.ts │ │ │ ├── useHistoricalConvsStore.ts │ │ │ ├── useInputBarStore.ts │ │ │ ├── useMcpServerStore.ts │ │ │ ├── useModalStore.ts │ │ │ ├── useModelStore.ts │ │ │ ├── usePanelStore.ts │ │ │ ├── usePinnedCommandsStore.ts │ │ │ ├── useProjectStore.ts │ │ │ ├── useSearchStore.ts │ │ │ ├── useStatusMessageStore.ts │ │ │ ├── useSystemPromptStore.ts │ │ │ ├── useThemeStore.ts │ │ │ ├── useTipOfTheDayStore.ts │ │ │ ├── useToolStore.ts │ │ │ ├── useUserPromptStore.ts │ │ │ ├── useVoiceInputStore.ts │ │ │ └── useWebSocketStore.ts │ │ ├── types │ │ │ ├── attachment.ts │ │ │ ├── conv.ts │ │ │ ├── modelTypes.ts │ │ │ ├── project.ts │ │ │ ├── settings.ts │ │ │ ├── systemPrompt.ts │ │ │ ├── theme.ts │ │ │ ├── tipOfTheDay.ts │ │ │ ├── toolTypes.ts │ │ │ ├── ui.ts │ │ │ ├── userPrompt.ts │ │ │ └── websocket.ts │ │ ├── utils │ │ │ ├── apiUtils.ts │ │ │ ├── attachmentUtils.ts │ │ │ ├── debugUtils.ts │ │ │ ├── hookUtils.ts │ │ │ ├── messageGraph.ts │ │ │ ├── messageUtils.ts │ │ │ ├── modelUtils.ts │ │ │ ├── promptUtils.ts │ │ │ ├── textAreaUtils.ts │ │ │ └── webSocketUtils.ts │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vite.config.ts │ └── vite.config.ts.broken ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Controls │ └── AiStudioWebView2.cs ├── Conversations │ ├── LinearConversation.cs │ └── LinearConversationMessage.cs ├── Core │ ├── DependencyInjection.cs │ ├── Exceptions │ │ ├── ChatProcessingException.cs │ │ ├── ConversationStorageException.cs │ │ ├── ConversationTreeException.cs │ │ ├── McpCommunicationException.cs │ │ ├── PinnedCommandException.cs │ │ ├── UserPromptException.cs │ │ └── WebSocketNotificationException.cs │ ├── Interfaces │ │ ├── IBuiltInToolExtraPropertiesService.cs │ │ ├── IBuiltinToolService.cs │ │ ├── IChatService.cs │ │ ├── IConversationArchivingService.cs │ │ ├── IConversationStorage.cs │ │ ├── IDialogService.cs │ │ ├── IGitHubReleaseService.cs │ │ ├── IGoogleDriveService.cs │ │ ├── IInterjectionService.cs │ │ ├── IMcpService.cs │ │ ├── IPinnedCommandService.cs │ │ ├── IProjectService.cs │ │ ├── IRequestHandler.cs │ │ ├── ISecondaryAiService.cs │ │ ├── IStatusMessageService.cs │ │ ├── ISystemPromptService.cs │ │ ├── IThemeService.cs │ │ ├── ITipOfTheDayService.cs │ │ ├── ITokenCostStrategy.cs │ │ ├── ITool.cs │ │ ├── IToolExecutor.cs │ │ ├── IToolProcessorService.cs │ │ ├── IToolService.cs │ │ ├── IUpdateNotificationService.cs │ │ ├── IUserPromptService.cs │ │ └── IWebSocketNotificationService.cs │ ├── Models │ │ ├── BuiltinToolResult.cs │ │ ├── ChatRequest.cs │ │ ├── ChatResponse.cs │ │ ├── ContentBlock.cs │ │ ├── ContentType.cs │ │ ├── ConvUpdateDto.cs │ │ ├── ConversationListDto.cs │ │ ├── FileSystemChangedEventArgs.cs │ │ ├── GitHubReleaseInfo.cs │ │ ├── GoogleDriveFileInfo.cs │ │ ├── McpServerDefinition.cs │ │ ├── MessageHistoryItem.cs │ │ ├── PInnedCommandModel.cs │ │ ├── PathHelper.cs │ │ ├── Project.cs │ │ ├── SimpleChatResponse.cs │ │ ├── StreamingUpdateDto.cs │ │ ├── SystemPrompt.cs │ │ ├── Theme.cs │ │ ├── TipOfTheDaySettings.cs │ │ ├── TokenCost.cs │ │ ├── ToolModels.cs │ │ ├── ToolResponse.cs │ │ ├── ToolResponseItem.cs │ │ ├── UpdateCheckResult.cs │ │ └── UserPrompt.cs │ ├── Services │ │ └── ProjectPackager.cs │ └── Tools │ │ ├── AzureDevOps │ │ ├── AzureDevOpsCreateOrUpdateWikiPageTool.cs │ │ ├── AzureDevOpsGetCommitDiffsTool.cs │ │ ├── AzureDevOpsGetCommitsTool.cs │ │ ├── AzureDevOpsGetItemContentTool.cs │ │ ├── AzureDevOpsGetPipelineDefinitionsTool.cs │ │ ├── AzureDevOpsGetPipelineResourcesTool.cs │ │ ├── AzureDevOpsGetPipelineRunsTool.cs │ │ ├── AzureDevOpsGetPullRequestByIdTool.cs │ │ ├── AzureDevOpsGetPullRequestChangesTool.cs │ │ ├── AzureDevOpsGetPullRequestIterationsTool.cs │ │ ├── AzureDevOpsGetPullRequestThreadsTool.cs │ │ ├── AzureDevOpsGetPullRequestsTool.cs │ │ ├── AzureDevOpsGetRepositoriesTool.cs │ │ ├── AzureDevOpsGetWikiPageContentTool.cs │ │ ├── AzureDevOpsGetWikiPagesTool.cs │ │ ├── AzureDevOpsGetWorkItemCommentsTool.cs │ │ ├── AzureDevOpsGetWorkItemUpdatesTool.cs │ │ ├── AzureDevOpsGetWorkItemsTool.cs │ │ ├── AzureDevOpsQueryWorkItemsTool.cs │ │ └── AzureDevOpsSearchWikiTool.cs │ │ ├── BaseToolImplementation.cs │ │ ├── CodeDiff │ │ ├── ChangesetPreprocessor.cs │ │ ├── CodeDiffValidator.cs │ │ ├── FileOperationHandlers │ │ │ ├── BaseFileOperationHandler.cs │ │ │ ├── CreateFileHandler.cs │ │ │ ├── DeleteFileHandler.cs │ │ │ ├── ModifyFileHandler.cs │ │ │ ├── RenameFileHandler.cs │ │ │ └── ReplaceFileHandler.cs │ │ ├── Models │ │ │ ├── FileOperationResult.cs │ │ │ └── PathValidationDetails.cs │ │ ├── PathSecurityManager.cs │ │ └── ProgrammaticModifier.cs │ │ ├── CreateNewFileTool.cs │ │ ├── DeleteFileTool.cs │ │ ├── DirectoryTreeTool.cs │ │ ├── FileRegExSearchTool.cs │ │ ├── FileSearchTool.cs │ │ ├── FindAndReplaceTool.cs │ │ ├── GeminiGoogleSearchTool.cs │ │ ├── Git │ │ ├── GitBranchTool.cs │ │ ├── GitCommitTool.cs │ │ ├── GitLogTool.cs │ │ └── GitStatusTool.cs │ │ ├── GitHub │ │ ├── GitHubCreateIssueCommentTool.cs │ │ ├── GitHubCreateIssueTool.cs │ │ ├── GitHubCreatePullRequestTool.cs │ │ ├── GitHubGetContentTool.cs │ │ ├── GitHubGetIssueTool.cs │ │ ├── GitHubListContentsTool.cs │ │ ├── GitHubListIssueCommentsTool.cs │ │ ├── GitHubListIssuesTool.cs │ │ ├── GitHubListPullRequestsTool.cs │ │ ├── GitHubRepoInfoTool.cs │ │ ├── GitHubSearchCodeTool.cs │ │ ├── GitHubUpdateIssueTool.cs │ │ └── GitHubUpdatePullRequestTool.cs │ │ ├── GoogleCustomSearchApiTool.cs │ │ ├── LaunchUrlTool.cs │ │ ├── ModifyFileModernTool.cs │ │ ├── ModifyFilesTool.cs │ │ ├── ModifyFilesUsingMorphTool.cs │ │ ├── PresentResultsAndAwaitUserInputTool.cs │ │ ├── ReadDatabaseSchemaTool.cs │ │ ├── ReadFilesTool.cs │ │ ├── ReadPartialFilesTool.cs │ │ ├── RecordMistakeTool.cs │ │ ├── RenameFileTool.cs │ │ ├── ReplaceFileTool.cs │ │ ├── RetrieveTextFromUrlTool.cs │ │ ├── RunDuckDuckGoSearchTool.cs │ │ ├── SecondAiOpinionTool.cs │ │ ├── Sentry │ │ └── SentryTool.cs │ │ ├── StopTool.cs │ │ ├── ThinkAndAwaitUserInputTool.cs │ │ ├── ThinkAndContinueTool.cs │ │ ├── ToolGuids.cs │ │ ├── ToolRequestBuilder.cs │ │ ├── Vite │ │ ├── CheckNodeVersionTool.cs │ │ ├── GetViteProjectInfoTool.cs │ │ ├── InstallVitePluginTool.cs │ │ ├── ModifyViteConfigTool.cs │ │ ├── NpmCreateViteTool.cs │ │ ├── NpmInstallTool.cs │ │ ├── NpmRunScriptTool.cs │ │ ├── OpenBrowserTool.cs │ │ ├── StartViteDevServerTool.cs │ │ └── ViteCommandHelper.cs │ │ ├── WindowsSandboxTool.cs │ │ └── YouTube │ │ └── YouTubeSearchTool.cs ├── Data │ └── tips.json ├── DataModels │ ├── AiRequestOptions.cs │ ├── AiResponse.cs │ └── Attachment.cs ├── DelegatingServiceProviderFactory.cs ├── Dialogs │ ├── ConfigureWikiSyncDialog.xaml │ ├── ConfigureWikiSyncDialog.xaml.cs │ ├── GoogleDriveFileSelectionDialog.xaml │ ├── GoogleDriveFileSelectionDialog.xaml.cs │ ├── LicensesWindow.xaml │ ├── LicensesWindow.xaml.cs │ ├── LogViewerViewModel.cs │ ├── LogViewerWindow.xaml │ ├── LogViewerWindow.xaml.cs │ ├── ManageProjectsDialog.xaml │ ├── ManageProjectsDialog.xaml.cs │ ├── MessageSelectionDialog.xaml │ ├── MessageSelectionDialog.xaml.cs │ ├── ProjectEditorDialog.xaml │ ├── ProjectEditorDialog.xaml.cs │ ├── ProtectedMcpServerWindow.xaml │ ├── ProtectedMcpServerWindow.xaml.cs │ ├── WpfConfirmationDialog.xaml │ ├── WpfConfirmationDialog.xaml.cs │ ├── WpfInputDialog.xaml │ └── WpfInputDialog.xaml.cs ├── Docs │ └── MaxCode prompt.txt ├── Extensions │ └── ServiceCollectionExtensions.cs ├── GlobalUsings.cs ├── Icon │ └── icon.ico ├── InjectedDependencies │ ├── AppearanceSettings.cs │ ├── AppearanceSettingsDictionary.cs │ ├── AppearanceSettingsService.cs │ ├── BuiltInToolExtraPropertiesService.cs │ ├── ChatManager.cs │ ├── ClientRequestCancellationService.cs │ ├── DefaultSettings.cs │ ├── FileServer.cs │ ├── FileSystemChangeHandler.cs │ ├── GeneralSettings.cs │ ├── GeneralSettingsService.cs │ ├── IAppearanceSettingsService.cs │ ├── IGeneralSettingsService.cs │ ├── IProjectFileWatcherService.cs │ ├── IProjectHistoryService.cs │ ├── ProjectFileWatcherService.cs │ ├── RequestHandlers │ │ ├── AppearanceRequestHandler.cs │ │ ├── BaseRequestHandler.cs │ │ ├── ChatRequestHandler.cs │ │ ├── ClipboardImageRequestHandler.cs │ │ ├── ConfigRequestHandler.cs │ │ ├── FileSystemRequestHandler.cs │ │ ├── McpRequestHandler.cs │ │ ├── MiscRequestHandler.cs │ │ ├── ModelRequestHandler.cs │ │ ├── PinnedCommandRequestHandler.cs │ │ ├── ProjectRequestHandler.cs │ │ ├── SystemPromptRequestHandler.cs │ │ ├── ThemeRequestHandler.cs │ │ ├── TipOfTheDayRequestHandler.cs │ │ ├── ToolRequestHandler.cs │ │ └── UserPromptRequestHandler.cs │ ├── StartupService.cs │ ├── UiRequestBroker.cs │ ├── UiRequestRouter.cs │ ├── WebServer.cs │ ├── WebSocket │ │ ├── WebSocketConnectionManager.cs │ │ └── WebSocketMessageHandler.cs │ ├── WebSocketServer.cs │ ├── WindowManager.cs │ ├── v4BranchedConversation.cs │ ├── v4BranchedConversationMessage.cs │ └── v4BranchedConversationMessageRole.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models │ ├── LogEntry.cs │ └── RequestMessage.cs ├── Retheme.md ├── Services │ ├── AiStudioToGoogleConverter.cs │ ├── AutoStartOAuthServerService.cs │ ├── BuiltinToolService.cs │ ├── ChatProcessingService.cs │ ├── ConversationArchivingService.cs │ ├── ConversationService.cs │ ├── CostingStrategies │ │ ├── ClaudeCachingTokenCostStrategy.cs │ │ ├── GeminiCachingTokenCostStrategy.cs │ │ ├── NoCachingTokenCostStrategy.cs │ │ ├── OpenAICachingTokenCostStrategy.cs │ │ └── TokenCostStrategyFactory.cs │ ├── DefaultChatService.cs │ ├── DotNetProjectAnalyzerService.cs │ ├── FileSystemConversationStorage.cs │ ├── GitHubReleaseService.cs │ ├── GoogleAiStudioConverter.cs │ ├── GoogleDriveService.cs │ ├── Interfaces │ │ ├── IAiService.cs │ │ ├── IAutoStartOAuthServerService.cs │ │ ├── IDotNetProjectAnalyzerService.cs │ │ ├── ILlamaServerService.cs │ │ ├── ILogViewerService.cs │ │ └── INotificationFacade.cs │ ├── InterjectionService.cs │ ├── LicenseService.cs │ ├── LlamaServerService.cs │ ├── LogViewerService.cs │ ├── Logging │ │ ├── InMemoryLogger.cs │ │ └── InMemoryLoggerProvider.cs │ ├── McpService.cs │ ├── NotificationFacade.cs │ ├── PinnedCommandService.cs │ ├── ProjectService.cs │ ├── ProtectedMcpServer │ │ ├── CustomSchemaProvider.cs │ │ ├── HttpClientExt.cs │ │ ├── McpToolWrapper.cs │ │ ├── SchemaBasedMcpMethodGenerator.cs │ │ └── WeatherTools.cs │ ├── ProtectedMcpServerService.cs │ ├── SecondaryAiService.cs │ ├── StatusMessageService.cs │ ├── SystemPromptService.cs │ ├── ThemeService.cs │ ├── TipOfTheDayService.cs │ ├── ToolExecutor.cs │ ├── ToolProcessorService.cs │ ├── ToolService.cs │ ├── UpdateNotificationService.cs │ ├── UserPromptService.cs │ ├── WebSocketNotificationService.cs │ └── WpfDialogService.cs ├── Theming.md ├── app-nuget-license.txt ├── nuget-license.txt ├── package.json └── pnpm-lock.yaml ├── AiTool3.sln ├── AzureDevOpsWikiViaLocalDesign.md ├── ChromeExtension ├── ChromeExtension.csproj └── MaxAiStudioChromeExtension │ ├── background.js │ ├── icons │ ├── icon128.png │ ├── icon16.png │ └── icon48.png │ ├── manifest.json │ ├── sidepanel.html │ └── sidepanel.js ├── ClaudeCode.md ├── ContentBlocks-Refactor-Documentation.md ├── Cypress-Testing-Guide.md ├── Documentation-Tips-Extraction-Checklist.md ├── GEMINI.md ├── LICENSE ├── MCP_SERVER_EXTRACTION_GUIDE.md ├── MCP_TOOL_CONVERSION_GUIDE.md ├── MCP_TOOL_EXTRA_PROPERTIES_GUIDE.md ├── ModelContextProtocol.TestOAuthServer ├── AuthorizationCodeInfo.cs ├── AuthorizationServerMetadata.cs ├── ClientInfo.cs ├── ClientRegistrationRequest.cs ├── ClientRegistrationResponse.cs ├── ConsoleHost.cs ├── JsonWebKey.cs ├── JsonWebKeySet.cs ├── ModelContextProtocol.TestOAuthServer.csproj ├── OAuthErrorResponse.cs ├── OAuthJsonContext.cs ├── OAuthServerManager.cs ├── OAuthServerMetadata.cs ├── Persistence │ ├── OAuthPersistenceManager.cs │ └── PersistentModels.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── TokenInfo.cs ├── TokenIntrospectionResponse.cs └── TokenResponse.cs ├── Privacy.md ├── SharedClasses ├── Git │ └── GitIgnoreFilter.cs ├── Helpers │ ├── AssemblyHelper.cs │ └── HtmlTextExtractor.cs ├── Models │ ├── CodeFragment.cs │ ├── CodeSnippet.cs │ ├── MessagePrompt.cs │ ├── Model.cs │ ├── ResourceDetails.cs │ └── VsixCompletionRequestResult.cs ├── Providers │ ├── ApiSettings.cs │ ├── ChargingStrategyType.cs │ ├── ChargingStrategyTypeConverter.cs │ ├── ServiceProvider.cs │ └── TokenUsage.cs ├── RoslynHelper.cs ├── SharedClasses.csproj ├── Ticks.cs ├── VsixOutgoingMessage.cs └── sharedclasses-nuget-license.txt ├── SystemPrompt.txt ├── VSIXTest ├── ChangesetManager.cs ├── CodeAnalysis │ └── MethodFinder.cs ├── Communications │ ├── SimpleClient.cs │ └── VsixMessageHandler.cs ├── Embeddings │ ├── Fragmenters │ │ ├── RoslynHelper.cs │ │ ├── VsixCsFragmenter.cs │ │ └── VsixLineFragmenter.cs │ ├── VsixEmbedding.cs │ ├── VsixEmbeddingManager.cs │ └── VsixEmbeddingsHelper.cs ├── Helpers │ ├── GitDiffHelper.cs │ └── MessageFormatHelper.cs ├── Managers │ ├── AutocompleteManager.cs │ ├── ButtonManager.cs │ ├── ResourceManager.cs │ └── ShortcutManager.cs ├── Models │ ├── MethodInfo.cs │ ├── OptionTemplate.cs │ ├── OptionWithParameter.cs │ ├── VsixResourceDetails.cs │ └── VsixUiMessage.cs ├── PaneDebug │ ├── DebugWindowControl.xaml │ ├── DebugWindowControl.xaml.cs │ ├── DebugWindowPane.cs │ ├── OpenDebugWindow.cs │ └── VsixDebugLog.cs ├── PaneWebBrowser │ ├── OpenWebBrowserWindowCommand.cs │ ├── WebBrowserWindowControl.xaml │ ├── WebBrowserWindowControl.xaml.cs │ └── WebBrowserWindowPane.cs ├── Properties │ └── AssemblyInfo.cs ├── TextReplacer.cs ├── UI │ ├── ChangesetReviewPane.cs │ ├── ChatControl.xaml │ ├── ChatControl.xaml.cs │ ├── ChatWindowControl.xaml │ ├── ChatWindowControl.xaml.cs │ ├── ChatWindowPane.cs │ ├── ContentFormatter.cs │ ├── FileGroups │ │ ├── FileGroup.cs │ │ ├── FileGroupEditWindow.cs │ │ ├── FileGroupManager.cs │ │ ├── FileWithMembersSelectionWindow.cs │ │ └── SolutionInfo.cs │ ├── FileWithMembersSelectionControl.xaml │ ├── FileWithMembersSelectionControl.xaml.cs │ ├── OpenChatWindow.cs │ ├── QuickButtonManager.cs │ ├── QuickButtonOptionsControl.xaml │ ├── QuickButtonOptionsControl.xaml.cs │ ├── QuickButtonOptionsWindow.cs │ ├── TreeViewWindow.cs │ └── VsixWebViewManager.cs ├── VSIXTest.csproj ├── VSIXTestPackage.cs ├── VSIXTestPackage.vsct ├── VsixChat.cs ├── VsixMessageProcessor.cs └── source.extension.vsixmanifest ├── aistudio4.cer ├── create-release.bat ├── docs ├── Feature Designs │ ├── AzureDevOpsIntegrationDesign.md │ ├── CodeBlockStateManagementRefactor.md │ ├── Complete │ │ ├── InterjectButtonImplementation.md │ │ ├── InterjectDuringToolLoopImplementation.md │ │ └── SplitActionButtonsImplementation.md │ ├── DefaultPromptToolsImplementation.md │ ├── FileSystemInitializationImplementation.md │ ├── FileSystemMonitoringImplementation.md │ ├── InterjectDuringToolLoopImplementation.md │ ├── ModelAssociationWithSystemPrompt.md │ ├── ProviderManagedToolLoopImplementation.md │ ├── ProviderManagedToolLoopWithBranchedConversations.md │ ├── SentryToolImplementation.md │ ├── SlashCommandDropdownImplementation.md │ ├── TipOfTheDayImplementation.md │ └── marp-design.md └── readme │ ├── 01-introduction.md │ ├── 02-getting-started.md │ ├── 03-core-concepts.md │ ├── 04-using-aistudio4.md │ ├── 05-key-features-in-detail.md │ ├── 06-advanced-configuration.md │ ├── 07-troubleshooting.md │ ├── 08-technical-stack.md │ ├── 09-contributing.md │ ├── 10-license.md │ ├── 11-author-acknowledgements.md │ ├── 12-further-reading-links.md │ ├── FrontendBestPractices.md │ ├── main.png │ ├── tools │ ├── azure-dev-ops-get-commit-diffs-tool.md │ ├── azure-dev-ops-get-commits-tool.md │ ├── azure-dev-ops-get-item-content-tool.md │ ├── azure-dev-ops-get-pipeline-definitions-tool.md │ ├── azure-dev-ops-get-pipeline-resources-tool.md │ ├── azure-dev-ops-get-pipeline-runs-tool.md │ ├── azure-dev-ops-get-pull-request-by-id-tool.md │ ├── azure-dev-ops-get-pull-request-changes-tool.md │ ├── azure-dev-ops-get-pull-request-iterations-tool.md │ ├── azure-dev-ops-get-pull-request-threads-tool.md │ ├── azure-dev-ops-get-pull-requests-tool.md │ ├── azure-dev-ops-get-repositories-tool.md │ ├── azure-dev-ops-get-wiki-page-content-tool.md │ ├── azure-dev-ops-get-wiki-pages-tool.md │ ├── azure-dev-ops-get-work-item-comments-tool.md │ ├── azure-dev-ops-get-work-item-updates-tool.md │ ├── azure-dev-ops-get-work-items-tool.md │ ├── azure-dev-ops-query-work-items-tool.md │ ├── azure-dev-ops-search-wiki-tool.md │ ├── check-node-version-tool.md │ ├── create-new-file-tool.md │ ├── delete-file-tool.md │ ├── directory-tree-tool.md │ ├── file-reg-ex-search.md │ ├── file-search-tool.md │ ├── find-and-replace-tool.md │ ├── gemini-google-search-tool.md │ ├── get-vite-project-info-tool.md │ ├── git-branch-tool.md │ ├── git-commit-tool.md │ ├── git-hub-create-issue-comment-tool.md │ ├── git-hub-create-issue-tool.md │ ├── git-hub-get-content-tool.md │ ├── git-hub-get-issue-tool.md │ ├── git-hub-list-contents-tool.md │ ├── git-hub-list-issue-comments-tool.md │ ├── git-hub-list-issues-tool.md │ ├── git-hub-repo-info-tool.md │ ├── git-hub-search-code-tool.md │ ├── git-hub-update-issue-tool.md │ ├── git-log-tool.md │ ├── git-status-tool.md │ ├── github-create-pull-request-tool.md │ ├── github-list-pull-requests-tool.md │ ├── github-update-pull-request-tool.md │ ├── google-custom-search-api-tool.md │ ├── info-request-tool.md │ ├── install-vite-plugin-tool.md │ ├── launch-url-tool.md │ ├── modify-file-modern-tool.md │ ├── modify-file-using-morph.md │ ├── modify-files-tool.md │ ├── modify-vite-config-tool.md │ ├── npm-create-vite-tool.md │ ├── npm-install-tool.md │ ├── npm-run-script-tool.md │ ├── open-browser-tool.md │ ├── present-results-and-await-user-input-tool.md │ ├── read-database-schema-tool.md │ ├── read-files-tool.md │ ├── read-partial-files-tool.md │ ├── record-mistake-tool.md │ ├── rename-file-tool.md │ ├── replace-file-tool.md │ ├── retrieve-text-from-url-tool.md │ ├── run-duck-duck-go-search-tool.md │ ├── second-ai-opinion-tool.md │ ├── sentry-tool.md │ ├── start-vite-dev-server-tool.md │ ├── stop-tool.md │ ├── think-and-await-user-input-tool.md │ ├── think-and-continue-tool.md │ └── you-tube-search-tool.md │ └── wiki-sync-examples.md ├── installVsix.bat ├── nuget-license.txt ├── readme.md ├── reinstallVsix.bat └── uninstallVsix.bat /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /AiStudio4/AiServices/AiServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/AiServiceBase.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/AiServiceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/AiServiceResolver.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/Claude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/Claude.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/Gemini.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/Gemini.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/LlamaCpp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/LlamaCpp.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/LoremIpsumService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/LoremIpsumService.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/MessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/MessageBuilder.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/MockAiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/MockAiService.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/NetOpenAi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/NetOpenAi.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/OpenAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/OpenAI.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/RequestPayloadBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/RequestPayloadBuilder.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/ToolFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/ToolFormat.cs -------------------------------------------------------------------------------- /AiStudio4/AiServices/ToolResponseProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiServices/ToolResponseProcessor.cs -------------------------------------------------------------------------------- /AiStudio4/AiStudio4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudio4.csproj -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/.gitignore -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/.prettierrc -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/README.md -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/components.json -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/cypress.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/cypress.config.mjs -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/cypress/README.md -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/cypress/e2e/basic_tests_1.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/cypress/e2e/basic_tests_1.cy.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/cypress/e2e/lorem_ipsum_messaging.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/cypress/e2e/lorem_ipsum_messaging.cy.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/cypress/support/commands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/cypress/support/e2e.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/eslint.config.js -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/index.html -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/package.json -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/pnpm-lock.yaml -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/postcss.config.js -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/public/vite.svg -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/App.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/CommandInitializationPlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/CommandInitializationPlugin.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/FeatureDesigns/ComponentTheming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/FeatureDesigns/ComponentTheming.md -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/appearanceCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/appearanceCommands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/coreCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/coreCommands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/mcpServerCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/mcpServerCommands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/modelCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/modelCommands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/settingsCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/settingsCommands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/shortcutPromptExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/shortcutPromptExecutor.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/systemPromptCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/systemPromptCommands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/themeCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/themeCommands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/toolCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/toolCommands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/types.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/userPromptCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/userPromptCommands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/commands/voiceInputCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/commands/voiceInputCommand.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/AppHeader.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/AttachmentPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/AttachmentPreview.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/AudioAttachment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/AudioAttachment.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ChatContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ChatContainer.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ChatSpace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ChatSpace.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/CommandBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/CommandBar.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvTreeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvTreeView.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvTreeView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvTreeView/index.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvTreeView/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvTreeView/types.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvView.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvView/BlockEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvView/BlockEditor.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvView/ConvView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvView/ConvView.css -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvView/ConvView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvView/ConvView.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvView/MessageActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvView/MessageActions.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvView/MessageEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvView/MessageEditor.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvView/MessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvView/MessageItem.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ConvView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ConvView/index.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/DragDropZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/DragDropZone.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/FileAttachment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/FileAttachment.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/FontSizeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/FontSizeProvider.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/HistoricalConvTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/HistoricalConvTree.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/HistoricalConvTreeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/HistoricalConvTreeList.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/IconSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/IconSelector.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/InputBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/InputBar.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/InputBar/ActionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/InputBar/ActionButtons.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/InputBar/InputBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/InputBar/InputBar.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/InputBar/ModelPrimary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/InputBar/ModelPrimary.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/InputBar/ModelSecondary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/InputBar/ModelSecondary.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/InputBar/ToolsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/InputBar/ToolsButton.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/InputBar/ToolsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/InputBar/ToolsSection.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/InputBar/TopPControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/InputBar/TopPControl.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/InputBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/InputBar/index.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/LiveStreamToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/LiveStreamToken.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/LoadingTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/LoadingTimer.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/MarkdownPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/MarkdownPane.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/MarkdownPane/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/MarkdownPane/CodeBlock.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/MessageAttachments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/MessageAttachments.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ModelStatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ModelStatusBar.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/PanelContainerLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/PanelContainerLayout.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/PanelManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/PanelManager.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/PinnedShortcutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/PinnedShortcutButton.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/PinnedShortcutDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/PinnedShortcutDropdown.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/PinnedShortcutRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/PinnedShortcutRow.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/PinnedShortcuts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/PinnedShortcuts.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/RenameShortcutDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/RenameShortcutDialog.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/SlashDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/SlashDropdown.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/StatusMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/StatusMessage.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/TipOfTheDayOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/TipOfTheDayOverlay.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/common/GenericForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/common/GenericForm.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/diagrams/abc-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/diagrams/abc-renderer.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/diagrams/dot-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/diagrams/dot-renderer.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/diagrams/html-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/diagrams/html-renderer.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/diagrams/json-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/diagrams/json-renderer.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/diagrams/txt-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/diagrams/txt-renderer.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/diagrams/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/diagrams/types.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/AppearanceModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/AppearanceModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/FormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/FormModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/InfoModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/InfoModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/ModalManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/ModalManager.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/ModelFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/ModelFormModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/ModelsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/ModelsModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/ProvidersModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/ProvidersModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/ServerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/ServerModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/ThemeFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/ThemeFormModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/ThemeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/ThemeModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/ToolEditorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/ToolEditorModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/ToolModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/ToolModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/modals/UserPromptModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/modals/UserPromptModal.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/pinnedShortcutsUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/pinnedShortcutsUtils.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/renderers/marp-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/renderers/marp-controls.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/renderers/marp-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/renderers/marp-renderer.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/renderers/marp-styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/renderers/marp-styles.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/servers/ServerForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/servers/ServerForm.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/settings/AppearanceTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/settings/AppearanceTab.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/settings/IconSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/settings/IconSelector.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/settings/ModelForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/settings/ModelForm.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/settings/ThemeForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/settings/ThemeForm.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/tools/ToolEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/tools/ToolEditor.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/tools/ToolPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/tools/ToolPanel.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/tools/ToolSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/tools/ToolSelector.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/button.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/card.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/command.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/form.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/input.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/label.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/select.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/table.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useAppearanceManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useAppearanceManagement.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useAttachmentManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useAttachmentManager.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useChatManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useChatManagement.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useConfirmationDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useConfirmationDialog.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useDragDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useDragDrop.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useFileSystemManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useFileSystemManagement.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useFormDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useFormDialog.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useMediaQuery.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useMessageGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useMessageGraph.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useMessageSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useMessageSelection.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useMessageStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useMessageStream.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useOpenRouterModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useOpenRouterModels.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useResourceFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useResourceFactory.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useResourceManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useResourceManagement.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useSystemPromptSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useSystemPromptSelection.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useThemeManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useThemeManagement.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useToolCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useToolCommands.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useToolsManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useToolsManagement.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useUserPromptManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useUserPromptManagement.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useVoiceInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useVoiceInput.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/hooks/useWebSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/hooks/useWebSocket.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/index.css -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/lib/ThemeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/lib/ThemeManager.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/lib/utils.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/main.tsx -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/removeComments2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/removeComments2.ps1 -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/removeJsxComments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/removeJsxComments.ps1 -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/services/api/apiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/services/api/apiClient.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/services/api/openRouterApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/services/api/openRouterApi.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/services/commandRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/services/commandRegistry.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/services/providers/fileNameProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/services/providers/fileNameProvider.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/services/slashItemRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/services/slashItemRegistry.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/services/websocket/WebSocketService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/services/websocket/WebSocketService.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/services/websocket/websocketEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/services/websocket/websocketEvents.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/services/windowEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/services/windowEvents.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useAppearanceStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useAppearanceStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useAttachmentStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useAttachmentStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useCodeBlockStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useCodeBlockStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useCommandStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useCommandStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useConvStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useConvStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useDebugStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useDebugStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useFileSystemStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useFileSystemStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useGeneralSettingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useGeneralSettingsStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useHistoricalConvsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useHistoricalConvsStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useInputBarStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useInputBarStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useMcpServerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useMcpServerStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useModalStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useModalStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useModelStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useModelStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/usePanelStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/usePanelStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/usePinnedCommandsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/usePinnedCommandsStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useProjectStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useProjectStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useSearchStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useSearchStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useStatusMessageStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useStatusMessageStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useSystemPromptStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useSystemPromptStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useThemeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useThemeStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useTipOfTheDayStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useTipOfTheDayStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useToolStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useToolStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useUserPromptStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useUserPromptStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useVoiceInputStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useVoiceInputStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/stores/useWebSocketStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/stores/useWebSocketStore.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/attachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/attachment.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/conv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/conv.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/modelTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/modelTypes.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/project.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/settings.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/systemPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/systemPrompt.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/theme.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/tipOfTheDay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/tipOfTheDay.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/toolTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/toolTypes.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/ui.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/userPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/userPrompt.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/types/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/types/websocket.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/utils/apiUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/utils/apiUtils.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/utils/attachmentUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/utils/attachmentUtils.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/utils/debugUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/utils/debugUtils.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/utils/hookUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/utils/hookUtils.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/utils/messageGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/utils/messageGraph.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/utils/messageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/utils/messageUtils.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/utils/modelUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/utils/modelUtils.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/utils/promptUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/utils/promptUtils.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/utils/textAreaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/utils/textAreaUtils.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/utils/webSocketUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/src/utils/webSocketUtils.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/tailwind.config.js -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/tsconfig.app.json -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/tsconfig.json -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/tsconfig.node.json -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/vite.config.ts -------------------------------------------------------------------------------- /AiStudio4/AiStudioClient/vite.config.ts.broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AiStudioClient/vite.config.ts.broken -------------------------------------------------------------------------------- /AiStudio4/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/App.xaml -------------------------------------------------------------------------------- /AiStudio4/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/App.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/AssemblyInfo.cs -------------------------------------------------------------------------------- /AiStudio4/Controls/AiStudioWebView2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Controls/AiStudioWebView2.cs -------------------------------------------------------------------------------- /AiStudio4/Conversations/LinearConversation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Conversations/LinearConversation.cs -------------------------------------------------------------------------------- /AiStudio4/Conversations/LinearConversationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Conversations/LinearConversationMessage.cs -------------------------------------------------------------------------------- /AiStudio4/Core/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/DependencyInjection.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Exceptions/ChatProcessingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Exceptions/ChatProcessingException.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Exceptions/ConversationStorageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Exceptions/ConversationStorageException.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Exceptions/ConversationTreeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Exceptions/ConversationTreeException.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Exceptions/McpCommunicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Exceptions/McpCommunicationException.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Exceptions/PinnedCommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Exceptions/PinnedCommandException.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Exceptions/UserPromptException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Exceptions/UserPromptException.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Exceptions/WebSocketNotificationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Exceptions/WebSocketNotificationException.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IBuiltInToolExtraPropertiesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IBuiltInToolExtraPropertiesService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IBuiltinToolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IBuiltinToolService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IChatService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IConversationArchivingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IConversationArchivingService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IConversationStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IConversationStorage.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IDialogService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IGitHubReleaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IGitHubReleaseService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IGoogleDriveService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IGoogleDriveService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IInterjectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IInterjectionService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IMcpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IMcpService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IPinnedCommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IPinnedCommandService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IProjectService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IRequestHandler.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/ISecondaryAiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/ISecondaryAiService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IStatusMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IStatusMessageService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/ISystemPromptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/ISystemPromptService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IThemeService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/ITipOfTheDayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/ITipOfTheDayService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/ITokenCostStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/ITokenCostStrategy.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/ITool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/ITool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IToolExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IToolExecutor.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IToolProcessorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IToolProcessorService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IToolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IToolService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IUpdateNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IUpdateNotificationService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IUserPromptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IUserPromptService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Interfaces/IWebSocketNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Interfaces/IWebSocketNotificationService.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/BuiltinToolResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/BuiltinToolResult.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/ChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/ChatRequest.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/ChatResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/ChatResponse.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/ContentBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/ContentBlock.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/ContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/ContentType.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/ConvUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/ConvUpdateDto.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/ConversationListDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/ConversationListDto.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/FileSystemChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/FileSystemChangedEventArgs.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/GitHubReleaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/GitHubReleaseInfo.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/GoogleDriveFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/GoogleDriveFileInfo.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/McpServerDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/McpServerDefinition.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/MessageHistoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/MessageHistoryItem.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/PInnedCommandModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/PInnedCommandModel.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/PathHelper.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/Project.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/SimpleChatResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/SimpleChatResponse.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/StreamingUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/StreamingUpdateDto.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/SystemPrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/SystemPrompt.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/Theme.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/TipOfTheDaySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/TipOfTheDaySettings.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/TokenCost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/TokenCost.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/ToolModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/ToolModels.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/ToolResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/ToolResponse.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/ToolResponseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/ToolResponseItem.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/UpdateCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/UpdateCheckResult.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Models/UserPrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Models/UserPrompt.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Services/ProjectPackager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Services/ProjectPackager.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetCommitDiffsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetCommitDiffsTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetCommitsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetCommitsTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetItemContentTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetItemContentTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetPipelineRunsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetPipelineRunsTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetPullRequestsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetPullRequestsTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetRepositoriesTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetRepositoriesTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetWikiPagesTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetWikiPagesTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetWorkItemsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsGetWorkItemsTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsQueryWorkItemsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsQueryWorkItemsTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsSearchWikiTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/AzureDevOps/AzureDevOpsSearchWikiTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/BaseToolImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/BaseToolImplementation.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/CodeDiff/ChangesetPreprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/CodeDiff/ChangesetPreprocessor.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/CodeDiff/CodeDiffValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/CodeDiff/CodeDiffValidator.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/CodeDiff/Models/FileOperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/CodeDiff/Models/FileOperationResult.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/CodeDiff/Models/PathValidationDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/CodeDiff/Models/PathValidationDetails.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/CodeDiff/PathSecurityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/CodeDiff/PathSecurityManager.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/CodeDiff/ProgrammaticModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/CodeDiff/ProgrammaticModifier.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/CreateNewFileTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/CreateNewFileTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/DeleteFileTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/DeleteFileTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/DirectoryTreeTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/DirectoryTreeTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/FileRegExSearchTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/FileRegExSearchTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/FileSearchTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/FileSearchTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/FindAndReplaceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/FindAndReplaceTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GeminiGoogleSearchTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GeminiGoogleSearchTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Git/GitBranchTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Git/GitBranchTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Git/GitCommitTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Git/GitCommitTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Git/GitLogTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Git/GitLogTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Git/GitStatusTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Git/GitStatusTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubCreateIssueCommentTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubCreateIssueCommentTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubCreateIssueTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubCreateIssueTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubCreatePullRequestTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubCreatePullRequestTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubGetContentTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubGetContentTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubGetIssueTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubGetIssueTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubListContentsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubListContentsTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubListIssueCommentsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubListIssueCommentsTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubListIssuesTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubListIssuesTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubListPullRequestsTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubListPullRequestsTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubRepoInfoTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubRepoInfoTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubSearchCodeTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubSearchCodeTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubUpdateIssueTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubUpdateIssueTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GitHub/GitHubUpdatePullRequestTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GitHub/GitHubUpdatePullRequestTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/GoogleCustomSearchApiTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/GoogleCustomSearchApiTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/LaunchUrlTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/LaunchUrlTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ModifyFileModernTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ModifyFileModernTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ModifyFilesTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ModifyFilesTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ModifyFilesUsingMorphTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ModifyFilesUsingMorphTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/PresentResultsAndAwaitUserInputTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/PresentResultsAndAwaitUserInputTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ReadDatabaseSchemaTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ReadDatabaseSchemaTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ReadFilesTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ReadFilesTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ReadPartialFilesTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ReadPartialFilesTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/RecordMistakeTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/RecordMistakeTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/RenameFileTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/RenameFileTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ReplaceFileTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ReplaceFileTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/RetrieveTextFromUrlTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/RetrieveTextFromUrlTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/RunDuckDuckGoSearchTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/RunDuckDuckGoSearchTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/SecondAiOpinionTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/SecondAiOpinionTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Sentry/SentryTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Sentry/SentryTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/StopTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/StopTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ThinkAndAwaitUserInputTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ThinkAndAwaitUserInputTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ThinkAndContinueTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ThinkAndContinueTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ToolGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ToolGuids.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/ToolRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/ToolRequestBuilder.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Vite/CheckNodeVersionTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Vite/CheckNodeVersionTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Vite/GetViteProjectInfoTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Vite/GetViteProjectInfoTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Vite/InstallVitePluginTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Vite/InstallVitePluginTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Vite/ModifyViteConfigTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Vite/ModifyViteConfigTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Vite/NpmCreateViteTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Vite/NpmCreateViteTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Vite/NpmInstallTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Vite/NpmInstallTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Vite/NpmRunScriptTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Vite/NpmRunScriptTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Vite/OpenBrowserTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Vite/OpenBrowserTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Vite/StartViteDevServerTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Vite/StartViteDevServerTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/Vite/ViteCommandHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/Vite/ViteCommandHelper.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/WindowsSandboxTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/WindowsSandboxTool.cs -------------------------------------------------------------------------------- /AiStudio4/Core/Tools/YouTube/YouTubeSearchTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Core/Tools/YouTube/YouTubeSearchTool.cs -------------------------------------------------------------------------------- /AiStudio4/Data/tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Data/tips.json -------------------------------------------------------------------------------- /AiStudio4/DataModels/AiRequestOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/DataModels/AiRequestOptions.cs -------------------------------------------------------------------------------- /AiStudio4/DataModels/AiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/DataModels/AiResponse.cs -------------------------------------------------------------------------------- /AiStudio4/DataModels/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/DataModels/Attachment.cs -------------------------------------------------------------------------------- /AiStudio4/DelegatingServiceProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/DelegatingServiceProviderFactory.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/ConfigureWikiSyncDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/ConfigureWikiSyncDialog.xaml -------------------------------------------------------------------------------- /AiStudio4/Dialogs/ConfigureWikiSyncDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/ConfigureWikiSyncDialog.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/GoogleDriveFileSelectionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/GoogleDriveFileSelectionDialog.xaml -------------------------------------------------------------------------------- /AiStudio4/Dialogs/GoogleDriveFileSelectionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/GoogleDriveFileSelectionDialog.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/LicensesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/LicensesWindow.xaml -------------------------------------------------------------------------------- /AiStudio4/Dialogs/LicensesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/LicensesWindow.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/LogViewerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/LogViewerViewModel.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/LogViewerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/LogViewerWindow.xaml -------------------------------------------------------------------------------- /AiStudio4/Dialogs/LogViewerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/LogViewerWindow.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/ManageProjectsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/ManageProjectsDialog.xaml -------------------------------------------------------------------------------- /AiStudio4/Dialogs/ManageProjectsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/ManageProjectsDialog.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/MessageSelectionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/MessageSelectionDialog.xaml -------------------------------------------------------------------------------- /AiStudio4/Dialogs/MessageSelectionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/MessageSelectionDialog.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/ProjectEditorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/ProjectEditorDialog.xaml -------------------------------------------------------------------------------- /AiStudio4/Dialogs/ProjectEditorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/ProjectEditorDialog.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/ProtectedMcpServerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/ProtectedMcpServerWindow.xaml -------------------------------------------------------------------------------- /AiStudio4/Dialogs/ProtectedMcpServerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/ProtectedMcpServerWindow.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/WpfConfirmationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/WpfConfirmationDialog.xaml -------------------------------------------------------------------------------- /AiStudio4/Dialogs/WpfConfirmationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/WpfConfirmationDialog.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Dialogs/WpfInputDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/WpfInputDialog.xaml -------------------------------------------------------------------------------- /AiStudio4/Dialogs/WpfInputDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Dialogs/WpfInputDialog.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Docs/MaxCode prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Docs/MaxCode prompt.txt -------------------------------------------------------------------------------- /AiStudio4/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /AiStudio4/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/GlobalUsings.cs -------------------------------------------------------------------------------- /AiStudio4/Icon/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Icon/icon.ico -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/AppearanceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/AppearanceSettings.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/AppearanceSettingsDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/AppearanceSettingsDictionary.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/AppearanceSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/AppearanceSettingsService.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/BuiltInToolExtraPropertiesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/BuiltInToolExtraPropertiesService.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/ChatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/ChatManager.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/ClientRequestCancellationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/ClientRequestCancellationService.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/DefaultSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/DefaultSettings.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/FileServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/FileServer.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/FileSystemChangeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/FileSystemChangeHandler.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/GeneralSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/GeneralSettings.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/GeneralSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/GeneralSettingsService.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/IAppearanceSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/IAppearanceSettingsService.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/IGeneralSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/IGeneralSettingsService.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/IProjectFileWatcherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/IProjectFileWatcherService.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/IProjectHistoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/IProjectHistoryService.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/ProjectFileWatcherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/ProjectFileWatcherService.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/RequestHandlers/McpRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/RequestHandlers/McpRequestHandler.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/StartupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/StartupService.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/UiRequestBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/UiRequestBroker.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/UiRequestRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/UiRequestRouter.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/WebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/WebServer.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/WebSocket/WebSocketMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/WebSocket/WebSocketMessageHandler.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/WebSocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/WebSocketServer.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/WindowManager.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/v4BranchedConversation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/v4BranchedConversation.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/v4BranchedConversationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/v4BranchedConversationMessage.cs -------------------------------------------------------------------------------- /AiStudio4/InjectedDependencies/v4BranchedConversationMessageRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/InjectedDependencies/v4BranchedConversationMessageRole.cs -------------------------------------------------------------------------------- /AiStudio4/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/MainWindow.xaml -------------------------------------------------------------------------------- /AiStudio4/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/MainWindow.xaml.cs -------------------------------------------------------------------------------- /AiStudio4/Models/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Models/LogEntry.cs -------------------------------------------------------------------------------- /AiStudio4/Models/RequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Models/RequestMessage.cs -------------------------------------------------------------------------------- /AiStudio4/Retheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Retheme.md -------------------------------------------------------------------------------- /AiStudio4/Services/AiStudioToGoogleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/AiStudioToGoogleConverter.cs -------------------------------------------------------------------------------- /AiStudio4/Services/AutoStartOAuthServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/AutoStartOAuthServerService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/BuiltinToolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/BuiltinToolService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ChatProcessingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ChatProcessingService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ConversationArchivingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ConversationArchivingService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ConversationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ConversationService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/CostingStrategies/NoCachingTokenCostStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/CostingStrategies/NoCachingTokenCostStrategy.cs -------------------------------------------------------------------------------- /AiStudio4/Services/CostingStrategies/TokenCostStrategyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/CostingStrategies/TokenCostStrategyFactory.cs -------------------------------------------------------------------------------- /AiStudio4/Services/DefaultChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/DefaultChatService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/DotNetProjectAnalyzerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/DotNetProjectAnalyzerService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/FileSystemConversationStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/FileSystemConversationStorage.cs -------------------------------------------------------------------------------- /AiStudio4/Services/GitHubReleaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/GitHubReleaseService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/GoogleAiStudioConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/GoogleAiStudioConverter.cs -------------------------------------------------------------------------------- /AiStudio4/Services/GoogleDriveService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/GoogleDriveService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/Interfaces/IAiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/Interfaces/IAiService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/Interfaces/IAutoStartOAuthServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/Interfaces/IAutoStartOAuthServerService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/Interfaces/IDotNetProjectAnalyzerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/Interfaces/IDotNetProjectAnalyzerService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/Interfaces/ILlamaServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/Interfaces/ILlamaServerService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/Interfaces/ILogViewerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/Interfaces/ILogViewerService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/Interfaces/INotificationFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/Interfaces/INotificationFacade.cs -------------------------------------------------------------------------------- /AiStudio4/Services/InterjectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/InterjectionService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/LicenseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/LicenseService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/LlamaServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/LlamaServerService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/LogViewerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/LogViewerService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/Logging/InMemoryLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/Logging/InMemoryLogger.cs -------------------------------------------------------------------------------- /AiStudio4/Services/Logging/InMemoryLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/Logging/InMemoryLoggerProvider.cs -------------------------------------------------------------------------------- /AiStudio4/Services/McpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/McpService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/NotificationFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/NotificationFacade.cs -------------------------------------------------------------------------------- /AiStudio4/Services/PinnedCommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/PinnedCommandService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ProjectService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ProtectedMcpServer/CustomSchemaProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ProtectedMcpServer/CustomSchemaProvider.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ProtectedMcpServer/HttpClientExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ProtectedMcpServer/HttpClientExt.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ProtectedMcpServer/McpToolWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ProtectedMcpServer/McpToolWrapper.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ProtectedMcpServer/WeatherTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ProtectedMcpServer/WeatherTools.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ProtectedMcpServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ProtectedMcpServerService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/SecondaryAiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/SecondaryAiService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/StatusMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/StatusMessageService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/SystemPromptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/SystemPromptService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ThemeService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/TipOfTheDayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/TipOfTheDayService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ToolExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ToolExecutor.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ToolProcessorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ToolProcessorService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/ToolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/ToolService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/UpdateNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/UpdateNotificationService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/UserPromptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/UserPromptService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/WebSocketNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/WebSocketNotificationService.cs -------------------------------------------------------------------------------- /AiStudio4/Services/WpfDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Services/WpfDialogService.cs -------------------------------------------------------------------------------- /AiStudio4/Theming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/Theming.md -------------------------------------------------------------------------------- /AiStudio4/app-nuget-license.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AiStudio4/nuget-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/nuget-license.txt -------------------------------------------------------------------------------- /AiStudio4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/package.json -------------------------------------------------------------------------------- /AiStudio4/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiStudio4/pnpm-lock.yaml -------------------------------------------------------------------------------- /AiTool3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AiTool3.sln -------------------------------------------------------------------------------- /AzureDevOpsWikiViaLocalDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/AzureDevOpsWikiViaLocalDesign.md -------------------------------------------------------------------------------- /ChromeExtension/ChromeExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ChromeExtension/ChromeExtension.csproj -------------------------------------------------------------------------------- /ChromeExtension/MaxAiStudioChromeExtension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ChromeExtension/MaxAiStudioChromeExtension/background.js -------------------------------------------------------------------------------- /ChromeExtension/MaxAiStudioChromeExtension/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ChromeExtension/MaxAiStudioChromeExtension/icons/icon128.png -------------------------------------------------------------------------------- /ChromeExtension/MaxAiStudioChromeExtension/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ChromeExtension/MaxAiStudioChromeExtension/icons/icon16.png -------------------------------------------------------------------------------- /ChromeExtension/MaxAiStudioChromeExtension/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ChromeExtension/MaxAiStudioChromeExtension/icons/icon48.png -------------------------------------------------------------------------------- /ChromeExtension/MaxAiStudioChromeExtension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ChromeExtension/MaxAiStudioChromeExtension/manifest.json -------------------------------------------------------------------------------- /ChromeExtension/MaxAiStudioChromeExtension/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ChromeExtension/MaxAiStudioChromeExtension/sidepanel.html -------------------------------------------------------------------------------- /ChromeExtension/MaxAiStudioChromeExtension/sidepanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ChromeExtension/MaxAiStudioChromeExtension/sidepanel.js -------------------------------------------------------------------------------- /ClaudeCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ClaudeCode.md -------------------------------------------------------------------------------- /ContentBlocks-Refactor-Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ContentBlocks-Refactor-Documentation.md -------------------------------------------------------------------------------- /Cypress-Testing-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/Cypress-Testing-Guide.md -------------------------------------------------------------------------------- /Documentation-Tips-Extraction-Checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/Documentation-Tips-Extraction-Checklist.md -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/GEMINI.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/LICENSE -------------------------------------------------------------------------------- /MCP_SERVER_EXTRACTION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/MCP_SERVER_EXTRACTION_GUIDE.md -------------------------------------------------------------------------------- /MCP_TOOL_CONVERSION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/MCP_TOOL_CONVERSION_GUIDE.md -------------------------------------------------------------------------------- /MCP_TOOL_EXTRA_PROPERTIES_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/MCP_TOOL_EXTRA_PROPERTIES_GUIDE.md -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/AuthorizationCodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/AuthorizationCodeInfo.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/AuthorizationServerMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/AuthorizationServerMetadata.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/ClientInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/ClientInfo.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/ClientRegistrationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/ClientRegistrationRequest.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/ConsoleHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/ConsoleHost.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/JsonWebKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/JsonWebKey.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/JsonWebKeySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/JsonWebKeySet.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/OAuthErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/OAuthErrorResponse.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/OAuthJsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/OAuthJsonContext.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/OAuthServerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/OAuthServerManager.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/OAuthServerMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/OAuthServerMetadata.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/Program.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/TokenInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/TokenInfo.cs -------------------------------------------------------------------------------- /ModelContextProtocol.TestOAuthServer/TokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/ModelContextProtocol.TestOAuthServer/TokenResponse.cs -------------------------------------------------------------------------------- /Privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/Privacy.md -------------------------------------------------------------------------------- /SharedClasses/Git/GitIgnoreFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Git/GitIgnoreFilter.cs -------------------------------------------------------------------------------- /SharedClasses/Helpers/AssemblyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Helpers/AssemblyHelper.cs -------------------------------------------------------------------------------- /SharedClasses/Helpers/HtmlTextExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Helpers/HtmlTextExtractor.cs -------------------------------------------------------------------------------- /SharedClasses/Models/CodeFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Models/CodeFragment.cs -------------------------------------------------------------------------------- /SharedClasses/Models/CodeSnippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Models/CodeSnippet.cs -------------------------------------------------------------------------------- /SharedClasses/Models/MessagePrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Models/MessagePrompt.cs -------------------------------------------------------------------------------- /SharedClasses/Models/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Models/Model.cs -------------------------------------------------------------------------------- /SharedClasses/Models/ResourceDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Models/ResourceDetails.cs -------------------------------------------------------------------------------- /SharedClasses/Models/VsixCompletionRequestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Models/VsixCompletionRequestResult.cs -------------------------------------------------------------------------------- /SharedClasses/Providers/ApiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Providers/ApiSettings.cs -------------------------------------------------------------------------------- /SharedClasses/Providers/ChargingStrategyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Providers/ChargingStrategyType.cs -------------------------------------------------------------------------------- /SharedClasses/Providers/ChargingStrategyTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Providers/ChargingStrategyTypeConverter.cs -------------------------------------------------------------------------------- /SharedClasses/Providers/ServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Providers/ServiceProvider.cs -------------------------------------------------------------------------------- /SharedClasses/Providers/TokenUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Providers/TokenUsage.cs -------------------------------------------------------------------------------- /SharedClasses/RoslynHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/RoslynHelper.cs -------------------------------------------------------------------------------- /SharedClasses/SharedClasses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/SharedClasses.csproj -------------------------------------------------------------------------------- /SharedClasses/Ticks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/Ticks.cs -------------------------------------------------------------------------------- /SharedClasses/VsixOutgoingMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SharedClasses/VsixOutgoingMessage.cs -------------------------------------------------------------------------------- /SharedClasses/sharedclasses-nuget-license.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SystemPrompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/SystemPrompt.txt -------------------------------------------------------------------------------- /VSIXTest/ChangesetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/ChangesetManager.cs -------------------------------------------------------------------------------- /VSIXTest/CodeAnalysis/MethodFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/CodeAnalysis/MethodFinder.cs -------------------------------------------------------------------------------- /VSIXTest/Communications/SimpleClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Communications/SimpleClient.cs -------------------------------------------------------------------------------- /VSIXTest/Communications/VsixMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Communications/VsixMessageHandler.cs -------------------------------------------------------------------------------- /VSIXTest/Embeddings/Fragmenters/RoslynHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Embeddings/Fragmenters/RoslynHelper.cs -------------------------------------------------------------------------------- /VSIXTest/Embeddings/Fragmenters/VsixCsFragmenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Embeddings/Fragmenters/VsixCsFragmenter.cs -------------------------------------------------------------------------------- /VSIXTest/Embeddings/Fragmenters/VsixLineFragmenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Embeddings/Fragmenters/VsixLineFragmenter.cs -------------------------------------------------------------------------------- /VSIXTest/Embeddings/VsixEmbedding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Embeddings/VsixEmbedding.cs -------------------------------------------------------------------------------- /VSIXTest/Embeddings/VsixEmbeddingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Embeddings/VsixEmbeddingManager.cs -------------------------------------------------------------------------------- /VSIXTest/Embeddings/VsixEmbeddingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Embeddings/VsixEmbeddingsHelper.cs -------------------------------------------------------------------------------- /VSIXTest/Helpers/GitDiffHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Helpers/GitDiffHelper.cs -------------------------------------------------------------------------------- /VSIXTest/Helpers/MessageFormatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Helpers/MessageFormatHelper.cs -------------------------------------------------------------------------------- /VSIXTest/Managers/AutocompleteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Managers/AutocompleteManager.cs -------------------------------------------------------------------------------- /VSIXTest/Managers/ButtonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Managers/ButtonManager.cs -------------------------------------------------------------------------------- /VSIXTest/Managers/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Managers/ResourceManager.cs -------------------------------------------------------------------------------- /VSIXTest/Managers/ShortcutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Managers/ShortcutManager.cs -------------------------------------------------------------------------------- /VSIXTest/Models/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Models/MethodInfo.cs -------------------------------------------------------------------------------- /VSIXTest/Models/OptionTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Models/OptionTemplate.cs -------------------------------------------------------------------------------- /VSIXTest/Models/OptionWithParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Models/OptionWithParameter.cs -------------------------------------------------------------------------------- /VSIXTest/Models/VsixResourceDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Models/VsixResourceDetails.cs -------------------------------------------------------------------------------- /VSIXTest/Models/VsixUiMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Models/VsixUiMessage.cs -------------------------------------------------------------------------------- /VSIXTest/PaneDebug/DebugWindowControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/PaneDebug/DebugWindowControl.xaml -------------------------------------------------------------------------------- /VSIXTest/PaneDebug/DebugWindowControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/PaneDebug/DebugWindowControl.xaml.cs -------------------------------------------------------------------------------- /VSIXTest/PaneDebug/DebugWindowPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/PaneDebug/DebugWindowPane.cs -------------------------------------------------------------------------------- /VSIXTest/PaneDebug/OpenDebugWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/PaneDebug/OpenDebugWindow.cs -------------------------------------------------------------------------------- /VSIXTest/PaneDebug/VsixDebugLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/PaneDebug/VsixDebugLog.cs -------------------------------------------------------------------------------- /VSIXTest/PaneWebBrowser/OpenWebBrowserWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/PaneWebBrowser/OpenWebBrowserWindowCommand.cs -------------------------------------------------------------------------------- /VSIXTest/PaneWebBrowser/WebBrowserWindowControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/PaneWebBrowser/WebBrowserWindowControl.xaml -------------------------------------------------------------------------------- /VSIXTest/PaneWebBrowser/WebBrowserWindowControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/PaneWebBrowser/WebBrowserWindowControl.xaml.cs -------------------------------------------------------------------------------- /VSIXTest/PaneWebBrowser/WebBrowserWindowPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/PaneWebBrowser/WebBrowserWindowPane.cs -------------------------------------------------------------------------------- /VSIXTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSIXTest/TextReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/TextReplacer.cs -------------------------------------------------------------------------------- /VSIXTest/UI/ChangesetReviewPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/ChangesetReviewPane.cs -------------------------------------------------------------------------------- /VSIXTest/UI/ChatControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/ChatControl.xaml -------------------------------------------------------------------------------- /VSIXTest/UI/ChatControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/ChatControl.xaml.cs -------------------------------------------------------------------------------- /VSIXTest/UI/ChatWindowControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/ChatWindowControl.xaml -------------------------------------------------------------------------------- /VSIXTest/UI/ChatWindowControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/ChatWindowControl.xaml.cs -------------------------------------------------------------------------------- /VSIXTest/UI/ChatWindowPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/ChatWindowPane.cs -------------------------------------------------------------------------------- /VSIXTest/UI/ContentFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/ContentFormatter.cs -------------------------------------------------------------------------------- /VSIXTest/UI/FileGroups/FileGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/FileGroups/FileGroup.cs -------------------------------------------------------------------------------- /VSIXTest/UI/FileGroups/FileGroupEditWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/FileGroups/FileGroupEditWindow.cs -------------------------------------------------------------------------------- /VSIXTest/UI/FileGroups/FileGroupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/FileGroups/FileGroupManager.cs -------------------------------------------------------------------------------- /VSIXTest/UI/FileGroups/FileWithMembersSelectionWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/FileGroups/FileWithMembersSelectionWindow.cs -------------------------------------------------------------------------------- /VSIXTest/UI/FileGroups/SolutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/FileGroups/SolutionInfo.cs -------------------------------------------------------------------------------- /VSIXTest/UI/FileWithMembersSelectionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/FileWithMembersSelectionControl.xaml -------------------------------------------------------------------------------- /VSIXTest/UI/FileWithMembersSelectionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/FileWithMembersSelectionControl.xaml.cs -------------------------------------------------------------------------------- /VSIXTest/UI/OpenChatWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/OpenChatWindow.cs -------------------------------------------------------------------------------- /VSIXTest/UI/QuickButtonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/QuickButtonManager.cs -------------------------------------------------------------------------------- /VSIXTest/UI/QuickButtonOptionsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/QuickButtonOptionsControl.xaml -------------------------------------------------------------------------------- /VSIXTest/UI/QuickButtonOptionsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/QuickButtonOptionsControl.xaml.cs -------------------------------------------------------------------------------- /VSIXTest/UI/QuickButtonOptionsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/QuickButtonOptionsWindow.cs -------------------------------------------------------------------------------- /VSIXTest/UI/TreeViewWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/TreeViewWindow.cs -------------------------------------------------------------------------------- /VSIXTest/UI/VsixWebViewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/UI/VsixWebViewManager.cs -------------------------------------------------------------------------------- /VSIXTest/VSIXTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/VSIXTest.csproj -------------------------------------------------------------------------------- /VSIXTest/VSIXTestPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/VSIXTestPackage.cs -------------------------------------------------------------------------------- /VSIXTest/VSIXTestPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/VSIXTestPackage.vsct -------------------------------------------------------------------------------- /VSIXTest/VsixChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/VsixChat.cs -------------------------------------------------------------------------------- /VSIXTest/VsixMessageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/VsixMessageProcessor.cs -------------------------------------------------------------------------------- /VSIXTest/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/VSIXTest/source.extension.vsixmanifest -------------------------------------------------------------------------------- /aistudio4.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/aistudio4.cer -------------------------------------------------------------------------------- /create-release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/create-release.bat -------------------------------------------------------------------------------- /docs/Feature Designs/AzureDevOpsIntegrationDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/AzureDevOpsIntegrationDesign.md -------------------------------------------------------------------------------- /docs/Feature Designs/CodeBlockStateManagementRefactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/CodeBlockStateManagementRefactor.md -------------------------------------------------------------------------------- /docs/Feature Designs/Complete/InterjectButtonImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/Complete/InterjectButtonImplementation.md -------------------------------------------------------------------------------- /docs/Feature Designs/Complete/SplitActionButtonsImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/Complete/SplitActionButtonsImplementation.md -------------------------------------------------------------------------------- /docs/Feature Designs/DefaultPromptToolsImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/DefaultPromptToolsImplementation.md -------------------------------------------------------------------------------- /docs/Feature Designs/FileSystemInitializationImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/FileSystemInitializationImplementation.md -------------------------------------------------------------------------------- /docs/Feature Designs/FileSystemMonitoringImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/FileSystemMonitoringImplementation.md -------------------------------------------------------------------------------- /docs/Feature Designs/InterjectDuringToolLoopImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/InterjectDuringToolLoopImplementation.md -------------------------------------------------------------------------------- /docs/Feature Designs/ModelAssociationWithSystemPrompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/ModelAssociationWithSystemPrompt.md -------------------------------------------------------------------------------- /docs/Feature Designs/ProviderManagedToolLoopImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/ProviderManagedToolLoopImplementation.md -------------------------------------------------------------------------------- /docs/Feature Designs/SentryToolImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/SentryToolImplementation.md -------------------------------------------------------------------------------- /docs/Feature Designs/SlashCommandDropdownImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/SlashCommandDropdownImplementation.md -------------------------------------------------------------------------------- /docs/Feature Designs/TipOfTheDayImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/TipOfTheDayImplementation.md -------------------------------------------------------------------------------- /docs/Feature Designs/marp-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/Feature Designs/marp-design.md -------------------------------------------------------------------------------- /docs/readme/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/01-introduction.md -------------------------------------------------------------------------------- /docs/readme/02-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/02-getting-started.md -------------------------------------------------------------------------------- /docs/readme/03-core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/03-core-concepts.md -------------------------------------------------------------------------------- /docs/readme/04-using-aistudio4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/04-using-aistudio4.md -------------------------------------------------------------------------------- /docs/readme/05-key-features-in-detail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/05-key-features-in-detail.md -------------------------------------------------------------------------------- /docs/readme/06-advanced-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/06-advanced-configuration.md -------------------------------------------------------------------------------- /docs/readme/07-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/07-troubleshooting.md -------------------------------------------------------------------------------- /docs/readme/08-technical-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/08-technical-stack.md -------------------------------------------------------------------------------- /docs/readme/09-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/09-contributing.md -------------------------------------------------------------------------------- /docs/readme/10-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/10-license.md -------------------------------------------------------------------------------- /docs/readme/11-author-acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/11-author-acknowledgements.md -------------------------------------------------------------------------------- /docs/readme/12-further-reading-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/12-further-reading-links.md -------------------------------------------------------------------------------- /docs/readme/FrontendBestPractices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/FrontendBestPractices.md -------------------------------------------------------------------------------- /docs/readme/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/main.png -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-commit-diffs-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-commit-diffs-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-commits-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-commits-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-item-content-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-item-content-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-pipeline-definitions-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-pipeline-definitions-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-pipeline-resources-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-pipeline-resources-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-pipeline-runs-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-pipeline-runs-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-pull-request-by-id-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-pull-request-by-id-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-pull-request-changes-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-pull-request-changes-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-pull-request-threads-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-pull-request-threads-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-pull-requests-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-pull-requests-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-repositories-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-repositories-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-wiki-page-content-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-wiki-page-content-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-wiki-pages-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-wiki-pages-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-work-item-comments-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-work-item-comments-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-work-item-updates-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-work-item-updates-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-get-work-items-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-get-work-items-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-query-work-items-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-query-work-items-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/azure-dev-ops-search-wiki-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/azure-dev-ops-search-wiki-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/check-node-version-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/check-node-version-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/create-new-file-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/create-new-file-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/delete-file-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/delete-file-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/directory-tree-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/directory-tree-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/file-reg-ex-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/file-reg-ex-search.md -------------------------------------------------------------------------------- /docs/readme/tools/file-search-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/file-search-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/find-and-replace-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/find-and-replace-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/gemini-google-search-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/gemini-google-search-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/get-vite-project-info-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/get-vite-project-info-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-branch-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-branch-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-commit-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-commit-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-hub-create-issue-comment-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-hub-create-issue-comment-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-hub-create-issue-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-hub-create-issue-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-hub-get-content-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-hub-get-content-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-hub-get-issue-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-hub-get-issue-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-hub-list-contents-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-hub-list-contents-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-hub-list-issue-comments-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-hub-list-issue-comments-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-hub-list-issues-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-hub-list-issues-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-hub-repo-info-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-hub-repo-info-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-hub-search-code-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-hub-search-code-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-hub-update-issue-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-hub-update-issue-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-log-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-log-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/git-status-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/git-status-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/github-create-pull-request-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/github-create-pull-request-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/github-list-pull-requests-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/github-list-pull-requests-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/github-update-pull-request-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/github-update-pull-request-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/google-custom-search-api-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/google-custom-search-api-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/info-request-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/info-request-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/install-vite-plugin-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/install-vite-plugin-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/launch-url-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/launch-url-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/modify-file-modern-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/modify-file-modern-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/modify-file-using-morph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/modify-file-using-morph.md -------------------------------------------------------------------------------- /docs/readme/tools/modify-files-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/modify-files-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/modify-vite-config-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/modify-vite-config-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/npm-create-vite-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/npm-create-vite-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/npm-install-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/npm-install-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/npm-run-script-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/npm-run-script-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/open-browser-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/open-browser-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/present-results-and-await-user-input-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/present-results-and-await-user-input-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/read-database-schema-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/read-database-schema-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/read-files-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/read-files-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/read-partial-files-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/read-partial-files-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/record-mistake-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/record-mistake-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/rename-file-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/rename-file-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/replace-file-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/replace-file-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/retrieve-text-from-url-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/retrieve-text-from-url-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/run-duck-duck-go-search-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/run-duck-duck-go-search-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/second-ai-opinion-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/second-ai-opinion-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/sentry-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/sentry-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/start-vite-dev-server-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/start-vite-dev-server-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/stop-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/stop-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/think-and-await-user-input-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/think-and-await-user-input-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/think-and-continue-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/think-and-continue-tool.md -------------------------------------------------------------------------------- /docs/readme/tools/you-tube-search-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/tools/you-tube-search-tool.md -------------------------------------------------------------------------------- /docs/readme/wiki-sync-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/docs/readme/wiki-sync-examples.md -------------------------------------------------------------------------------- /installVsix.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/installVsix.bat -------------------------------------------------------------------------------- /nuget-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/nuget-license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/readme.md -------------------------------------------------------------------------------- /reinstallVsix.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/reinstallVsix.bat -------------------------------------------------------------------------------- /uninstallVsix.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringandstickytape/MaxsAiStudio/HEAD/uninstallVsix.bat --------------------------------------------------------------------------------