obsidian-copilot
RepositoryFreeTHE Copilot in Obsidian
Capabilities15 decomposed
multi-provider llm chat with vault context injection
Medium confidenceEnables freeform conversational chat with LLM models from 15+ providers (OpenAI, Anthropic, Groq, DeepSeek, local Ollama, etc.) by maintaining a provider abstraction layer that normalizes API calls across different chat model interfaces. Context is injected from selected notes, folders, or tags via a context envelope system that prepares markdown content for inclusion in the prompt. The plugin streams responses token-by-token back to the chat UI, maintaining conversation history as persistent markdown notes in the vault.
Implements a provider abstraction layer (ChatModelProviders enum in src/constants.ts) that normalizes API calls across 15+ heterogeneous LLM providers, allowing users to swap providers without workflow disruption. Context envelope system selectively injects markdown from vault notes/folders/tags, avoiding token limit overflow. Responses streamed directly into Obsidian chat UI with conversation persistence as markdown files.
Supports more LLM providers natively than Copilot for VS Code (which is OpenAI-only) and maintains local-first option via Ollama, while keeping all chat history in user's vault rather than external cloud storage.
vault-wide semantic search with bm25+ lexical fallback
Medium confidenceProvides dual-mode search across the entire vault: BM25+ lexical search (free tier) for keyword-based retrieval and optional embedding-backed vector search (Orama or Miyo) for semantic similarity matching. The indexing system maintains an inverted index of vault notes and can optionally compute embeddings via external providers. When a user queries, the system retrieves relevant notes ranked by relevance and injects them as context into the LLM chat, enabling vault-wide question-answering without manual note selection.
Implements a hybrid search strategy combining BM25+ lexical indexing (free, fast, keyword-aware) with optional embedding-backed vector search (semantic, requires external API). The indexing system (src/indexing) maintains an inverted index and can optionally compute embeddings via Orama or Miyo. Retrieval results are automatically injected into chat context without user intervention.
Hybrid BM25+semantic approach is more robust than pure vector search (which fails on exact keyword matches) and more semantically aware than pure lexical search, while remaining free at the BM25 tier unlike competitors requiring embedding APIs.
self-hosted backend replacement for privacy-first deployments
Medium confidenceAllows users on the self-host tier to replace Brevilabs-hosted backend services with self-hosted alternatives: Miyo (embedding service), Firecrawl (web scraping and document conversion), and Perplexity (web search). This enables fully local deployments where no data leaves the user's infrastructure, addressing privacy and compliance requirements. Configuration is via settings UI where users provide URLs to their self-hosted services.
Implements a pluggable backend architecture where Brevilabs-hosted services (Miyo, Firecrawl, Perplexity) can be replaced with self-hosted alternatives via configuration URLs. Users on the self-host tier can deploy their own instances and point the plugin to them, enabling fully local deployments. No code changes required — configuration is via settings UI.
Enables fully local deployments unlike free/plus tiers which require Brevilabs backend. More flexible than single-provider solutions because users can mix self-hosted and cloud services. Requires premium subscription and operational overhead for self-hosting.
chat persistence and conversation history as markdown notes
Medium confidenceAutomatically saves chat conversations as markdown files in the vault, with each conversation stored as a separate note containing the full message history (user messages, AI responses, timestamps). Users can browse, search, and reference past conversations like any other vault note. Conversation files are stored in a designated folder and can be organized by date, project, or custom tags.
Implements automatic conversation persistence by appending each chat message to a markdown file in the vault. Conversations are stored as separate notes with timestamps and can be searched using Obsidian's native search. No external database required — all history is stored as markdown files in the vault.
More integrated than ChatGPT's conversation history because conversations are stored in the user's vault and searchable. More transparent than cloud-based chat history because users can directly edit and version-control conversation files. Simpler than external conversation databases because it leverages Obsidian's file system.
multi-model provider abstraction with unified api
Medium confidenceImplements a provider abstraction layer (ChatModelProviders enum in src/constants.ts) that normalizes API calls across 15+ heterogeneous LLM providers (OpenAI, Anthropic, Groq, DeepSeek, Mistral, Ollama, LM Studio, etc.). The abstraction handles provider-specific authentication, request/response formatting, streaming protocols, and error handling. Users can switch providers in settings without changing their workflow, and the plugin automatically adapts to each provider's capabilities (e.g., function calling, vision, etc.).
Implements a provider abstraction layer that normalizes API calls across 15+ providers by defining a common interface and provider-specific adapters. Each provider adapter handles authentication, request formatting, streaming, and error handling. The abstraction allows users to switch providers in settings without code changes. Supports both cloud (OpenAI, Anthropic, Groq) and local (Ollama, LM Studio) models.
Supports more providers natively than most competitors (15+ vs 2-3 for most tools). Includes local model support (Ollama, LM Studio) unlike cloud-only solutions. Abstraction is transparent to users — no code required to switch providers.
streaming response rendering with token-by-token ui updates
Medium confidenceStreams LLM responses token-by-token directly into the Obsidian chat UI, rendering each token as it arrives from the provider. This provides real-time feedback to users and reduces perceived latency compared to waiting for the full response. The streaming implementation handles provider-specific streaming protocols (Server-Sent Events for OpenAI, streaming for Anthropic, etc.) and gracefully handles network interruptions.
Implements token-by-token streaming by handling provider-specific streaming protocols (Server-Sent Events for OpenAI, streaming for Anthropic, etc.) and rendering each token to the chat UI as it arrives. Streaming is transparent to users — no configuration required. Supports cancellation of in-flight requests.
More responsive than batch response rendering because users see results in real-time. Supports multiple streaming protocols unlike single-provider solutions. Reduces perceived latency compared to waiting for full response.
settings ui with provider configuration and model selection
Medium confidenceProvides a comprehensive settings interface where users configure LLM providers (API keys, model names, endpoints), embedding providers, search settings, and plugin behavior. The settings UI includes dropdowns for provider selection, text fields for API keys, and toggles for optional features. Settings are persisted to Obsidian's local storage and validated on save. The UI dynamically shows provider-specific options (e.g., Azure OpenAI requires endpoint URL and deployment name).
Implements a settings UI that dynamically shows provider-specific options based on the selected provider. Settings are persisted to Obsidian's local storage and validated on save. The UI includes dropdowns for provider/model selection, text fields for API keys and URLs, and toggles for optional features. No code required to configure — all settings are UI-driven.
More user-friendly than environment variables or config files because settings are managed via UI. Supports provider-specific options (e.g., Azure OpenAI endpoint) unlike generic settings. Integrated into Obsidian's settings panel unlike external configuration tools.
ai-assisted note editing with diff preview and one-click apply
Medium confidenceAllows users to request AI-generated edits to notes via a 'Composer' mode that generates suggested changes, displays them as a side-by-side diff, and applies them back to the vault with a single click. The system uses the LLM to generate edited markdown content, compares it against the original note, and renders the diff in the UI. Users can accept or reject changes before they're written back to disk, providing a safety mechanism for AI-assisted writing.
Implements a Composer mode that generates AI edits, computes a diff against the original note, and renders it in the Obsidian UI with one-click apply/reject. This provides a safety layer between LLM generation and vault persistence — users see exactly what will change before committing. The diff is computed client-side, avoiding round-trips to the LLM.
Provides explicit diff preview before applying changes, unlike ChatGPT which requires manual copy-paste and comparison. More integrated than external editors because changes are applied directly to vault files with Obsidian's native file system integration.
markdown-based custom command templates with variable substitution
Medium confidenceEnables users to define reusable AI prompts as markdown files with variable placeholders (e.g., {{selectedText}}, {{fileName}}) that are substituted at runtime. When a user invokes a custom command, the plugin reads the markdown template, substitutes variables with current context (selected text, file name, date, etc.), and sends the resulting prompt to the LLM. This allows non-technical users to create domain-specific prompts without touching code.
Implements a markdown-based template system where users define prompts as markdown files with {{variable}} placeholders that are substituted at runtime. Variables include selectedText, fileName, currentDate, and vault context. Templates are stored in the vault itself, making them version-controllable and shareable. No code required — users edit markdown files to define custom commands.
More accessible than prompt engineering in ChatGPT because templates are stored in the vault and reusable. More flexible than hardcoded commands because users can modify templates without plugin updates. Simpler than full scripting languages (e.g., Templater) because it's focused on AI prompt generation.
react-style autonomous agent with tool-calling loop
Medium confidenceImplements a ReAct (Reasoning + Acting) agent that iteratively reasons about tasks, calls tools (vault search, web search, note composition), observes results, and decides next steps. The agent uses function calling (supported by OpenAI, Anthropic, Groq, etc.) to invoke tools like 'search_vault', 'search_web', 'compose_note', and 'read_memory'. The loop continues until the agent decides the task is complete or a max iteration limit is reached. This enables multi-step workflows like 'research a topic, find related notes, and draft a summary' without user intervention.
Implements a ReAct agent loop that uses function calling (native support in OpenAI, Anthropic, Groq APIs) to invoke tools like vault search, web search, and note composition. The agent reasons about which tool to call, observes results, and iterates until task completion. Tool registry is extensible — new tools can be added by defining their schema and handler. Agent state is maintained across iterations, enabling multi-step workflows.
More integrated than standalone agents (e.g., AutoGPT) because tools are tightly coupled to Obsidian vault operations. More controllable than pure LLM reasoning because tool calls are explicit and observable. Requires function-calling support from LLM, unlike agents that use prompt-based tool selection.
persistent memory notes for long-term agent context
Medium confidenceAllows the autonomous agent to read and write persistent memory notes stored in the vault, enabling it to maintain state across conversations and build long-term context. The agent can create new memory notes, update existing ones, and retrieve them in future sessions. This enables use cases like tracking project progress, maintaining a research log, or building a personal knowledge graph that the agent can reference and update autonomously.
Implements memory notes as a tool in the agent's function-calling registry, allowing the agent to read and write markdown files in a designated memory folder. Memory notes are stored in the vault alongside regular notes, making them version-controllable and accessible to the user. The agent can reference memory notes in future sessions, enabling multi-session context persistence without external databases.
Simpler than external vector databases (e.g., Pinecone) because memory is stored as markdown in the vault. More transparent than opaque agent memory because users can read and edit memory notes directly. Requires explicit agent prompting to use memory — no automatic memory injection like some frameworks.
image understanding and vision-capable model support
Medium confidenceEnables users to attach images to chat messages and send them to vision-capable LLM models (e.g., GPT-4V, Claude 3 Vision, Gemini Vision). The plugin handles image encoding (base64 or URL), constructs the appropriate API request for the chosen provider, and streams the model's response back to the chat. This allows users to ask questions about images, extract text via OCR, analyze diagrams, or get visual feedback without leaving Obsidian.
Integrates vision model support by detecting when the selected LLM provider supports image input (e.g., GPT-4V, Claude 3 Vision) and constructing the appropriate API request with base64-encoded or URL-referenced images. The plugin handles provider-specific image encoding requirements (OpenAI uses base64, Anthropic uses URL, etc.). Images are attached to chat messages but not persisted in markdown history.
More integrated than uploading images to ChatGPT separately because images are attached directly in Obsidian chat. Supports multiple vision providers (OpenAI, Anthropic, Google) unlike single-provider solutions. No external image hosting required — images are encoded inline in API requests.
relevant notes sidebar with link-graph and semantic suggestions
Medium confidenceDisplays a sidebar panel that shows notes semantically related to the current chat or selected note, combining two ranking signals: link-graph proximity (notes linked via backlinks/forward links) and semantic similarity (via embeddings). The sidebar updates dynamically as the user chats, surfacing notes that might be relevant to the conversation without explicit search. This provides passive discovery of related notes and helps users understand the structure of their knowledge base.
Combines two ranking signals: link-graph proximity (using Obsidian's native backlink/forward link data) and semantic similarity (via optional embeddings). The sidebar updates dynamically as the user chats, showing notes relevant to the current conversation. Link-graph ranking is free and fast; semantic ranking is optional and requires embeddings API. Sidebar is passive — no explicit search required.
Hybrid link-graph + semantic approach is more robust than pure semantic search (which fails in sparse vaults) and more semantically aware than pure link-graph (which misses non-linked relationships). Sidebar integration is more discoverable than search-based alternatives because suggestions appear passively.
project-scoped context with folder/tag/url boundaries
Medium confidenceAllows users to define 'projects' that scope the AI's context to specific folders, tags, or external URLs. When a project is active, the AI only searches and retrieves notes within the project's boundaries, preventing context pollution from unrelated notes. Projects can combine multiple context sources (e.g., 'folder: /research AND tag: #active') and can include external URLs for web-based documentation. This enables multi-project workflows where users switch between isolated contexts.
Implements project definitions as scoped contexts that combine folder paths, tag filters, and external URLs. When a project is active, search and retrieval operations are constrained to the project's boundaries, preventing context pollution. Projects are stored in settings and can be switched via UI. URL-based context requires external web scraping (Brevilabs or self-hosted Firecrawl).
More flexible than folder-only scoping because projects can combine multiple folders, tags, and URLs. More persistent than manual context selection because projects are saved and reusable. Requires Copilot Plus subscription, unlike free tier features.
document parsing and conversion (pdf/epub/docx to markdown)
Medium confidenceEnables users to upload PDF, EPUB, or DOCX files, which are converted to markdown via Brevilabs-hosted backend (or self-hosted Firecrawl for self-host tier). The converted markdown is stored in the vault and can be searched, referenced, and discussed with the AI. This allows users to import external documents into their knowledge base without manual transcription.
Integrates with Brevilabs-hosted document conversion backend (or self-hosted Firecrawl for self-host tier) to convert PDF, EPUB, and DOCX files to markdown. Converted markdown is stored in the vault and becomes searchable and referenceable. Conversion is triggered via UI and results are persisted as vault files.
More integrated than external PDF converters because results are stored directly in the vault. Supports multiple formats (PDF, EPUB, DOCX) unlike single-format tools. Requires paid subscription, unlike free PDF readers.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with obsidian-copilot, ranked by overlap. Discovered automatically through the match graph.
Obsidian Copilot
AI agent for Obsidian knowledge vault.
khoj
Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (gpt, claude, gemini, llama, qwen, mistral). Get started - free.
Vane
Vane is an AI-powered answering engine.
marvin
a simple and powerful tool to get things done with AI
ZeroTrusted.ai
Revolutionizes cybersecurity for LLMs with anonymity, encryption, and reliable AI...
MaxKB
🔥 MaxKB is an open-source platform for building enterprise-grade agents. 强大易用的开源企业级智能体平台。
Best For
- ✓knowledge workers using Obsidian as a personal knowledge management system
- ✓researchers wanting to query their notes with AI assistance
- ✓teams wanting local-first AI without cloud dependencies (via Ollama/LM Studio)
- ✓researchers with large note collections (100+ notes) needing semantic retrieval
- ✓knowledge workers wanting to query their vault without manual context selection
- ✓teams using Obsidian as a documentation system needing full-text + semantic search
- ✓enterprises with strict data residency requirements
- ✓teams handling sensitive information (legal, medical, financial)
Known Limitations
- ⚠Context window limited by chosen model's max tokens; large vaults require selective context injection
- ⚠No built-in context compression — long note collections may exceed token limits
- ⚠Streaming latency depends on provider response time; local models (Ollama) may be slower than cloud APIs
- ⚠Chat history stored as markdown files — no built-in full-text search across conversations
- ⚠BM25+ search is keyword-based and misses semantic relationships (e.g., 'vehicle' won't match 'car')
- ⚠Embedding-based search requires external API (Orama, Miyo, or self-hosted) — adds latency and cost
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 21, 2026
About
THE Copilot in Obsidian
Categories
Alternatives to obsidian-copilot
Are you the builder of obsidian-copilot?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →