├── .gitignore ├── LICENSE ├── README.md ├── assets ├── brain_module.png ├── general_preview.gif ├── recorder_module.png ├── tasks_module.png └── templates_module.png ├── esbuild.config.mjs ├── main.css ├── manifest.json ├── package.json ├── src ├── api │ ├── AIService.ts │ ├── Model.ts │ ├── UnifiedAIService.ts │ ├── providers │ │ ├── AnthropicAIProvider.ts │ │ ├── BaseAIProvider.ts │ │ ├── GroqAIProvider.ts │ │ ├── LocalAIProvider.ts │ │ ├── OpenAIProvider.ts │ │ └── OpenRouterAIProvider.ts │ └── types.ts ├── css │ ├── about.css │ ├── alpha-ribbon.css │ ├── api-key-status.css │ ├── blank-template-modal.css │ ├── builder.css │ ├── button.css │ ├── chat-view.css │ ├── custom-notice.css │ ├── info-box.css │ ├── licensed-member-settings.css │ ├── links-container.css │ ├── modal.css │ ├── modals.css │ ├── recording-notice.css │ ├── root.css │ ├── section-link.css │ ├── settings.css │ ├── spinner.css │ ├── status-bar.css │ ├── task-modal.css │ ├── template-list.css │ ├── text-area.css │ └── version-info.css ├── docs │ ├── brain-module-docs │ │ ├── brain-features.md │ │ ├── brain-models.md │ │ ├── brain-overview.md │ │ ├── brain-settings.md │ │ └── brain-troubleshooting.md │ ├── chat-module-docs │ │ ├── chat-advanced-features.md │ │ ├── chat-features.md │ │ ├── chat-overview.md │ │ └── chat-usage-and-tips.md │ ├── features.md │ ├── getting-started.md │ ├── installation.md │ ├── recorder-module-docs │ │ ├── recorder-features.md │ │ ├── recorder-overview.md │ │ ├── recorder-settings.md │ │ ├── recorder-troubleshooting.md │ │ └── recorder-usage-tips.md │ ├── tasks-module-docs │ │ ├── tasks-customization.md │ │ ├── tasks-features.md │ │ ├── tasks-overview.md │ │ ├── tasks-troubleshooting.md │ │ └── tasks-usage.md │ ├── templates-module-docs │ │ ├── templates-customization.md │ │ ├── templates-features.md │ │ ├── templates-overview.md │ │ ├── templates-troubleshooting.md │ │ └── templates-usage.md │ └── troubleshooting.md ├── events.ts ├── interfaces │ └── IGenerationModule.ts ├── main.ts ├── modals.ts ├── modules │ ├── about │ │ ├── AboutData.ts │ │ └── AboutModule.ts │ ├── anki │ │ ├── AnkiModule.ts │ │ ├── functions │ │ │ ├── createAnkiCard.ts │ │ │ └── studyAnkiCard.ts │ │ ├── settings │ │ │ ├── AnkiDirectorySetting.ts │ │ │ ├── AnkiSettingTab.ts │ │ │ └── AnkiSettings.ts │ │ └── views │ │ │ └── AnkiStudyModal.ts │ ├── brain │ │ ├── BrainModule.ts │ │ ├── functions │ │ │ ├── checkForUpdate.ts │ │ │ ├── displayVersionInfo.ts │ │ │ ├── generateContinuation.ts │ │ │ ├── generateTitle.ts │ │ │ ├── generateTitleForCurrentNote.ts │ │ │ ├── stopGeneration.ts │ │ │ └── toggleGeneration.ts │ │ ├── settings │ │ │ ├── BrainSettingTab.ts │ │ │ ├── BrainSettings.ts │ │ │ ├── EndpointManager.ts │ │ │ ├── GeneralGenerationPromptSetting.ts │ │ │ ├── GenerateTitlePromptSetting.ts │ │ │ ├── ModelSetting.ts │ │ │ ├── ShowDefaultModelOnStatusBarSetting.ts │ │ │ └── renderTemperatureSetting.ts │ │ └── views │ │ │ └── ModelSelectionModal.ts │ ├── builder │ │ ├── BuilderModule.ts │ │ ├── CanvasViewportManager.ts │ │ ├── DirectoryChooserModal.ts │ │ ├── FileChooserModal.ts │ │ ├── NodeCreator.ts │ │ ├── NodeOverlay.ts │ │ ├── NodeSettings.ts │ │ ├── edge │ │ │ ├── EdgeColors.ts │ │ │ └── EdgeStyleManager.ts │ │ ├── settings │ │ │ ├── BuilderSettingTab.ts │ │ │ └── BuilderSettings.ts │ │ └── ui │ │ │ ├── BuilderMenu.ts │ │ │ ├── NodeModelSelectionModal.ts │ │ │ └── SystemPromptModal.ts │ ├── chat │ │ ├── ChatFileManager.ts │ │ ├── ChatHistoryManager.ts │ │ ├── ChatHistorySearcher.ts │ │ ├── ChatMessage.ts │ │ ├── ChatModule.ts │ │ ├── ChatTemplate.ts │ │ ├── ChatView.ts │ │ ├── ContextFileManager.ts │ │ ├── DocumentExtractor.ts │ │ ├── FileSearcher.ts │ │ ├── TokenManager.ts │ │ ├── functions │ │ │ ├── EventListeners.ts │ │ │ ├── generateTitleForChat.ts │ │ │ ├── handleDeleteMessage.ts │ │ │ ├── handleRetryMessage.ts │ │ │ ├── handleStreamingResponse.ts │ │ │ ├── renderMessages.ts │ │ │ └── sendMessage.ts │ │ ├── settings │ │ │ ├── ChatSettingTab.ts │ │ │ ├── ChatSettings.ts │ │ │ ├── ChatsPathSetting.ts │ │ │ └── SystemPromptSetting.ts │ │ ├── utils.ts │ │ └── views │ │ │ ├── ActionsModal.ts │ │ │ ├── SaveChatAsNoteModal.ts │ │ │ └── TitleEditModal.ts │ ├── data │ │ └── DataModule.ts │ ├── recorder │ │ ├── RecorderModule.ts │ │ ├── functions │ │ │ ├── getMicrophones.ts │ │ │ ├── getSelectedMicrophone.ts │ │ │ ├── handleTranscription.ts │ │ │ ├── saveRecording.ts │ │ │ ├── startRecording.ts │ │ │ ├── stopRecording.ts │ │ │ ├── transcribeRecording.ts │ │ │ ├── transcribeSelectedFile.ts │ │ │ └── updateRecorderButtonStatusBar.ts │ │ ├── settings │ │ │ ├── RecorderSettingTab.ts │ │ │ ├── RecorderSettings.ts │ │ │ ├── autoTranscriptionSetting.ts │ │ │ ├── copyToClipboardSetting.ts │ │ │ ├── customWhisperPromptSetting.ts │ │ │ ├── includeLinkToRecordingSetting.ts │ │ │ ├── languageSetting.ts │ │ │ ├── microphoneSetting.ts │ │ │ ├── pasteOnTranscriptionSetting.ts │ │ │ ├── postProcessingPromptSetting.ts │ │ │ ├── recordingsPathSetting.ts │ │ │ ├── saveAudioClipsSetting.ts │ │ │ ├── saveTranscriptionToFileSetting.ts │ │ │ ├── transcriptionsPathSetting.ts │ │ │ └── whisperProviderSetting.ts │ │ └── views │ │ │ └── RecordingNotice.ts │ ├── tasks │ │ ├── TasksModule.ts │ │ ├── functions │ │ │ ├── generateTask.ts │ │ │ ├── insertGeneratedTask.ts │ │ │ ├── updateTaskButtonStatusBar.ts │ │ │ └── viewTasks.ts │ │ ├── settings │ │ │ ├── TaskPromptSetting.ts │ │ │ ├── TasksLocationSetting.ts │ │ │ ├── TasksSettingTab.ts │ │ │ └── TasksSettings.ts │ │ └── views │ │ │ └── TaskModal.ts │ └── templates │ │ ├── TemplatesModule.ts │ │ ├── TemplatesSuggest.ts │ │ ├── functions │ │ ├── checkLicenseValidity.ts │ │ ├── downloadTemplatesFromServer.ts │ │ └── handleStreamingResponse.ts │ │ ├── settings │ │ └── LicenseKeySetting.ts │ │ └── views │ │ └── BlankTemplateModal.ts ├── settings.ts ├── types.ts └── utils │ ├── MultiSuggest.ts │ └── timing.ts ├── styles.css └── versions.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/README.md -------------------------------------------------------------------------------- /assets/brain_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/assets/brain_module.png -------------------------------------------------------------------------------- /assets/general_preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/assets/general_preview.gif -------------------------------------------------------------------------------- /assets/recorder_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/assets/recorder_module.png -------------------------------------------------------------------------------- /assets/tasks_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/assets/tasks_module.png -------------------------------------------------------------------------------- /assets/templates_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/assets/templates_module.png -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/main.css -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/package.json -------------------------------------------------------------------------------- /src/api/AIService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/api/AIService.ts -------------------------------------------------------------------------------- /src/api/Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/api/Model.ts -------------------------------------------------------------------------------- /src/api/UnifiedAIService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/api/UnifiedAIService.ts -------------------------------------------------------------------------------- /src/api/providers/AnthropicAIProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/api/providers/AnthropicAIProvider.ts -------------------------------------------------------------------------------- /src/api/providers/BaseAIProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/api/providers/BaseAIProvider.ts -------------------------------------------------------------------------------- /src/api/providers/GroqAIProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/api/providers/GroqAIProvider.ts -------------------------------------------------------------------------------- /src/api/providers/LocalAIProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/api/providers/LocalAIProvider.ts -------------------------------------------------------------------------------- /src/api/providers/OpenAIProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/api/providers/OpenAIProvider.ts -------------------------------------------------------------------------------- /src/api/providers/OpenRouterAIProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/api/providers/OpenRouterAIProvider.ts -------------------------------------------------------------------------------- /src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/api/types.ts -------------------------------------------------------------------------------- /src/css/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/about.css -------------------------------------------------------------------------------- /src/css/alpha-ribbon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/alpha-ribbon.css -------------------------------------------------------------------------------- /src/css/api-key-status.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/api-key-status.css -------------------------------------------------------------------------------- /src/css/blank-template-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/blank-template-modal.css -------------------------------------------------------------------------------- /src/css/builder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/builder.css -------------------------------------------------------------------------------- /src/css/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/button.css -------------------------------------------------------------------------------- /src/css/chat-view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/chat-view.css -------------------------------------------------------------------------------- /src/css/custom-notice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/custom-notice.css -------------------------------------------------------------------------------- /src/css/info-box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/info-box.css -------------------------------------------------------------------------------- /src/css/licensed-member-settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/licensed-member-settings.css -------------------------------------------------------------------------------- /src/css/links-container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/links-container.css -------------------------------------------------------------------------------- /src/css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/modal.css -------------------------------------------------------------------------------- /src/css/modals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/modals.css -------------------------------------------------------------------------------- /src/css/recording-notice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/recording-notice.css -------------------------------------------------------------------------------- /src/css/root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/root.css -------------------------------------------------------------------------------- /src/css/section-link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/section-link.css -------------------------------------------------------------------------------- /src/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/settings.css -------------------------------------------------------------------------------- /src/css/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/spinner.css -------------------------------------------------------------------------------- /src/css/status-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/status-bar.css -------------------------------------------------------------------------------- /src/css/task-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/task-modal.css -------------------------------------------------------------------------------- /src/css/template-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/template-list.css -------------------------------------------------------------------------------- /src/css/text-area.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/text-area.css -------------------------------------------------------------------------------- /src/css/version-info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/css/version-info.css -------------------------------------------------------------------------------- /src/docs/brain-module-docs/brain-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/brain-module-docs/brain-features.md -------------------------------------------------------------------------------- /src/docs/brain-module-docs/brain-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/brain-module-docs/brain-models.md -------------------------------------------------------------------------------- /src/docs/brain-module-docs/brain-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/brain-module-docs/brain-overview.md -------------------------------------------------------------------------------- /src/docs/brain-module-docs/brain-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/brain-module-docs/brain-settings.md -------------------------------------------------------------------------------- /src/docs/brain-module-docs/brain-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/brain-module-docs/brain-troubleshooting.md -------------------------------------------------------------------------------- /src/docs/chat-module-docs/chat-advanced-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/chat-module-docs/chat-advanced-features.md -------------------------------------------------------------------------------- /src/docs/chat-module-docs/chat-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/chat-module-docs/chat-features.md -------------------------------------------------------------------------------- /src/docs/chat-module-docs/chat-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/chat-module-docs/chat-overview.md -------------------------------------------------------------------------------- /src/docs/chat-module-docs/chat-usage-and-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/chat-module-docs/chat-usage-and-tips.md -------------------------------------------------------------------------------- /src/docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/features.md -------------------------------------------------------------------------------- /src/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/getting-started.md -------------------------------------------------------------------------------- /src/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/installation.md -------------------------------------------------------------------------------- /src/docs/recorder-module-docs/recorder-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/recorder-module-docs/recorder-features.md -------------------------------------------------------------------------------- /src/docs/recorder-module-docs/recorder-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/recorder-module-docs/recorder-overview.md -------------------------------------------------------------------------------- /src/docs/recorder-module-docs/recorder-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/recorder-module-docs/recorder-settings.md -------------------------------------------------------------------------------- /src/docs/recorder-module-docs/recorder-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/recorder-module-docs/recorder-troubleshooting.md -------------------------------------------------------------------------------- /src/docs/recorder-module-docs/recorder-usage-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/recorder-module-docs/recorder-usage-tips.md -------------------------------------------------------------------------------- /src/docs/tasks-module-docs/tasks-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/tasks-module-docs/tasks-customization.md -------------------------------------------------------------------------------- /src/docs/tasks-module-docs/tasks-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/tasks-module-docs/tasks-features.md -------------------------------------------------------------------------------- /src/docs/tasks-module-docs/tasks-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/tasks-module-docs/tasks-overview.md -------------------------------------------------------------------------------- /src/docs/tasks-module-docs/tasks-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/tasks-module-docs/tasks-troubleshooting.md -------------------------------------------------------------------------------- /src/docs/tasks-module-docs/tasks-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/tasks-module-docs/tasks-usage.md -------------------------------------------------------------------------------- /src/docs/templates-module-docs/templates-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/templates-module-docs/templates-customization.md -------------------------------------------------------------------------------- /src/docs/templates-module-docs/templates-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/templates-module-docs/templates-features.md -------------------------------------------------------------------------------- /src/docs/templates-module-docs/templates-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/templates-module-docs/templates-overview.md -------------------------------------------------------------------------------- /src/docs/templates-module-docs/templates-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/templates-module-docs/templates-troubleshooting.md -------------------------------------------------------------------------------- /src/docs/templates-module-docs/templates-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/templates-module-docs/templates-usage.md -------------------------------------------------------------------------------- /src/docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/docs/troubleshooting.md -------------------------------------------------------------------------------- /src/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/events.ts -------------------------------------------------------------------------------- /src/interfaces/IGenerationModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/interfaces/IGenerationModule.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/modals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modals.ts -------------------------------------------------------------------------------- /src/modules/about/AboutData.ts: -------------------------------------------------------------------------------- 1 | export const members: { name: string }[] = []; 2 | -------------------------------------------------------------------------------- /src/modules/about/AboutModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/about/AboutModule.ts -------------------------------------------------------------------------------- /src/modules/anki/AnkiModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/anki/AnkiModule.ts -------------------------------------------------------------------------------- /src/modules/anki/functions/createAnkiCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/anki/functions/createAnkiCard.ts -------------------------------------------------------------------------------- /src/modules/anki/functions/studyAnkiCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/anki/functions/studyAnkiCard.ts -------------------------------------------------------------------------------- /src/modules/anki/settings/AnkiDirectorySetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/anki/settings/AnkiDirectorySetting.ts -------------------------------------------------------------------------------- /src/modules/anki/settings/AnkiSettingTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/anki/settings/AnkiSettingTab.ts -------------------------------------------------------------------------------- /src/modules/anki/settings/AnkiSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/anki/settings/AnkiSettings.ts -------------------------------------------------------------------------------- /src/modules/anki/views/AnkiStudyModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/anki/views/AnkiStudyModal.ts -------------------------------------------------------------------------------- /src/modules/brain/BrainModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/BrainModule.ts -------------------------------------------------------------------------------- /src/modules/brain/functions/checkForUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/functions/checkForUpdate.ts -------------------------------------------------------------------------------- /src/modules/brain/functions/displayVersionInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/functions/displayVersionInfo.ts -------------------------------------------------------------------------------- /src/modules/brain/functions/generateContinuation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/functions/generateContinuation.ts -------------------------------------------------------------------------------- /src/modules/brain/functions/generateTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/functions/generateTitle.ts -------------------------------------------------------------------------------- /src/modules/brain/functions/generateTitleForCurrentNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/functions/generateTitleForCurrentNote.ts -------------------------------------------------------------------------------- /src/modules/brain/functions/stopGeneration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/functions/stopGeneration.ts -------------------------------------------------------------------------------- /src/modules/brain/functions/toggleGeneration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/functions/toggleGeneration.ts -------------------------------------------------------------------------------- /src/modules/brain/settings/BrainSettingTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/settings/BrainSettingTab.ts -------------------------------------------------------------------------------- /src/modules/brain/settings/BrainSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/settings/BrainSettings.ts -------------------------------------------------------------------------------- /src/modules/brain/settings/EndpointManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/settings/EndpointManager.ts -------------------------------------------------------------------------------- /src/modules/brain/settings/GeneralGenerationPromptSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/settings/GeneralGenerationPromptSetting.ts -------------------------------------------------------------------------------- /src/modules/brain/settings/GenerateTitlePromptSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/settings/GenerateTitlePromptSetting.ts -------------------------------------------------------------------------------- /src/modules/brain/settings/ModelSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/settings/ModelSetting.ts -------------------------------------------------------------------------------- /src/modules/brain/settings/ShowDefaultModelOnStatusBarSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/settings/ShowDefaultModelOnStatusBarSetting.ts -------------------------------------------------------------------------------- /src/modules/brain/settings/renderTemperatureSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/settings/renderTemperatureSetting.ts -------------------------------------------------------------------------------- /src/modules/brain/views/ModelSelectionModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/brain/views/ModelSelectionModal.ts -------------------------------------------------------------------------------- /src/modules/builder/BuilderModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/BuilderModule.ts -------------------------------------------------------------------------------- /src/modules/builder/CanvasViewportManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/CanvasViewportManager.ts -------------------------------------------------------------------------------- /src/modules/builder/DirectoryChooserModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/DirectoryChooserModal.ts -------------------------------------------------------------------------------- /src/modules/builder/FileChooserModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/FileChooserModal.ts -------------------------------------------------------------------------------- /src/modules/builder/NodeCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/NodeCreator.ts -------------------------------------------------------------------------------- /src/modules/builder/NodeOverlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/NodeOverlay.ts -------------------------------------------------------------------------------- /src/modules/builder/NodeSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/NodeSettings.ts -------------------------------------------------------------------------------- /src/modules/builder/edge/EdgeColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/edge/EdgeColors.ts -------------------------------------------------------------------------------- /src/modules/builder/edge/EdgeStyleManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/edge/EdgeStyleManager.ts -------------------------------------------------------------------------------- /src/modules/builder/settings/BuilderSettingTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/settings/BuilderSettingTab.ts -------------------------------------------------------------------------------- /src/modules/builder/settings/BuilderSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/settings/BuilderSettings.ts -------------------------------------------------------------------------------- /src/modules/builder/ui/BuilderMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/ui/BuilderMenu.ts -------------------------------------------------------------------------------- /src/modules/builder/ui/NodeModelSelectionModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/ui/NodeModelSelectionModal.ts -------------------------------------------------------------------------------- /src/modules/builder/ui/SystemPromptModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/builder/ui/SystemPromptModal.ts -------------------------------------------------------------------------------- /src/modules/chat/ChatFileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/ChatFileManager.ts -------------------------------------------------------------------------------- /src/modules/chat/ChatHistoryManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/ChatHistoryManager.ts -------------------------------------------------------------------------------- /src/modules/chat/ChatHistorySearcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/ChatHistorySearcher.ts -------------------------------------------------------------------------------- /src/modules/chat/ChatMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/ChatMessage.ts -------------------------------------------------------------------------------- /src/modules/chat/ChatModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/ChatModule.ts -------------------------------------------------------------------------------- /src/modules/chat/ChatTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/ChatTemplate.ts -------------------------------------------------------------------------------- /src/modules/chat/ChatView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/ChatView.ts -------------------------------------------------------------------------------- /src/modules/chat/ContextFileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/ContextFileManager.ts -------------------------------------------------------------------------------- /src/modules/chat/DocumentExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/DocumentExtractor.ts -------------------------------------------------------------------------------- /src/modules/chat/FileSearcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/FileSearcher.ts -------------------------------------------------------------------------------- /src/modules/chat/TokenManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/TokenManager.ts -------------------------------------------------------------------------------- /src/modules/chat/functions/EventListeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/functions/EventListeners.ts -------------------------------------------------------------------------------- /src/modules/chat/functions/generateTitleForChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/functions/generateTitleForChat.ts -------------------------------------------------------------------------------- /src/modules/chat/functions/handleDeleteMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/functions/handleDeleteMessage.ts -------------------------------------------------------------------------------- /src/modules/chat/functions/handleRetryMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/functions/handleRetryMessage.ts -------------------------------------------------------------------------------- /src/modules/chat/functions/handleStreamingResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/functions/handleStreamingResponse.ts -------------------------------------------------------------------------------- /src/modules/chat/functions/renderMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/functions/renderMessages.ts -------------------------------------------------------------------------------- /src/modules/chat/functions/sendMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/functions/sendMessage.ts -------------------------------------------------------------------------------- /src/modules/chat/settings/ChatSettingTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/settings/ChatSettingTab.ts -------------------------------------------------------------------------------- /src/modules/chat/settings/ChatSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/settings/ChatSettings.ts -------------------------------------------------------------------------------- /src/modules/chat/settings/ChatsPathSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/settings/ChatsPathSetting.ts -------------------------------------------------------------------------------- /src/modules/chat/settings/SystemPromptSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/settings/SystemPromptSetting.ts -------------------------------------------------------------------------------- /src/modules/chat/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/utils.ts -------------------------------------------------------------------------------- /src/modules/chat/views/ActionsModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/views/ActionsModal.ts -------------------------------------------------------------------------------- /src/modules/chat/views/SaveChatAsNoteModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/views/SaveChatAsNoteModal.ts -------------------------------------------------------------------------------- /src/modules/chat/views/TitleEditModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/chat/views/TitleEditModal.ts -------------------------------------------------------------------------------- /src/modules/data/DataModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/data/DataModule.ts -------------------------------------------------------------------------------- /src/modules/recorder/RecorderModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/RecorderModule.ts -------------------------------------------------------------------------------- /src/modules/recorder/functions/getMicrophones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/functions/getMicrophones.ts -------------------------------------------------------------------------------- /src/modules/recorder/functions/getSelectedMicrophone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/functions/getSelectedMicrophone.ts -------------------------------------------------------------------------------- /src/modules/recorder/functions/handleTranscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/functions/handleTranscription.ts -------------------------------------------------------------------------------- /src/modules/recorder/functions/saveRecording.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/functions/saveRecording.ts -------------------------------------------------------------------------------- /src/modules/recorder/functions/startRecording.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/functions/startRecording.ts -------------------------------------------------------------------------------- /src/modules/recorder/functions/stopRecording.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/functions/stopRecording.ts -------------------------------------------------------------------------------- /src/modules/recorder/functions/transcribeRecording.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/functions/transcribeRecording.ts -------------------------------------------------------------------------------- /src/modules/recorder/functions/transcribeSelectedFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/functions/transcribeSelectedFile.ts -------------------------------------------------------------------------------- /src/modules/recorder/functions/updateRecorderButtonStatusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/functions/updateRecorderButtonStatusBar.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/RecorderSettingTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/RecorderSettingTab.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/RecorderSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/RecorderSettings.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/autoTranscriptionSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/autoTranscriptionSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/copyToClipboardSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/copyToClipboardSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/customWhisperPromptSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/customWhisperPromptSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/includeLinkToRecordingSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/includeLinkToRecordingSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/languageSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/languageSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/microphoneSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/microphoneSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/pasteOnTranscriptionSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/pasteOnTranscriptionSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/postProcessingPromptSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/postProcessingPromptSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/recordingsPathSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/recordingsPathSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/saveAudioClipsSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/saveAudioClipsSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/saveTranscriptionToFileSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/saveTranscriptionToFileSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/transcriptionsPathSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/transcriptionsPathSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/settings/whisperProviderSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/settings/whisperProviderSetting.ts -------------------------------------------------------------------------------- /src/modules/recorder/views/RecordingNotice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/recorder/views/RecordingNotice.ts -------------------------------------------------------------------------------- /src/modules/tasks/TasksModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/tasks/TasksModule.ts -------------------------------------------------------------------------------- /src/modules/tasks/functions/generateTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/tasks/functions/generateTask.ts -------------------------------------------------------------------------------- /src/modules/tasks/functions/insertGeneratedTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/tasks/functions/insertGeneratedTask.ts -------------------------------------------------------------------------------- /src/modules/tasks/functions/updateTaskButtonStatusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/tasks/functions/updateTaskButtonStatusBar.ts -------------------------------------------------------------------------------- /src/modules/tasks/functions/viewTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/tasks/functions/viewTasks.ts -------------------------------------------------------------------------------- /src/modules/tasks/settings/TaskPromptSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/tasks/settings/TaskPromptSetting.ts -------------------------------------------------------------------------------- /src/modules/tasks/settings/TasksLocationSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/tasks/settings/TasksLocationSetting.ts -------------------------------------------------------------------------------- /src/modules/tasks/settings/TasksSettingTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/tasks/settings/TasksSettingTab.ts -------------------------------------------------------------------------------- /src/modules/tasks/settings/TasksSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/tasks/settings/TasksSettings.ts -------------------------------------------------------------------------------- /src/modules/tasks/views/TaskModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/tasks/views/TaskModal.ts -------------------------------------------------------------------------------- /src/modules/templates/TemplatesModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/templates/TemplatesModule.ts -------------------------------------------------------------------------------- /src/modules/templates/TemplatesSuggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/templates/TemplatesSuggest.ts -------------------------------------------------------------------------------- /src/modules/templates/functions/checkLicenseValidity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/templates/functions/checkLicenseValidity.ts -------------------------------------------------------------------------------- /src/modules/templates/functions/downloadTemplatesFromServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/templates/functions/downloadTemplatesFromServer.ts -------------------------------------------------------------------------------- /src/modules/templates/functions/handleStreamingResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/templates/functions/handleStreamingResponse.ts -------------------------------------------------------------------------------- /src/modules/templates/settings/LicenseKeySetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/templates/settings/LicenseKeySetting.ts -------------------------------------------------------------------------------- /src/modules/templates/views/BlankTemplateModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/modules/templates/views/BlankTemplateModal.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/MultiSuggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/utils/MultiSuggest.ts -------------------------------------------------------------------------------- /src/utils/timing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/src/utils/timing.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/styles.css -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystemSculpt/obsidian-systemsculpt-ai/HEAD/versions.json --------------------------------------------------------------------------------