diff --git a/README.md b/README.md index efebc649..01dd2cf5 100644 --- a/README.md +++ b/README.md @@ -22,20 +22,34 @@ The Ultimate AI Assistant for Your Second Brain

-Copilot for Obsidian is your best in‑vault AI assistant, designed to listen, act at the speed of thought, and keep you creating in flow—all within Obsidian’s integrated, tab‑free workspace. +Copilot for Obsidian is your ultimate in‑vault AI assistant with chat-based vault search, web and youtube support, powerful context processing and ever-expanding agentic capabilities—all within Obsidian’s highly customizable workspace. -- **🔒 Your data is 100% yours**: Local storage, no ads, and full control of your API keys. -- **🧠 Elevate your second brain**: Tap any OpenAI-compatible or local model to uncover insights, spark connections, and create powerful content. -- **🌐 Instant multimedia understanding**: Drop in webpages, YouTube videos, images, PDFs, or real-time web search for quick insights and summaries. -- **✍️ Create at the speed of thought**: Launch Prompt Palette or edit with AI in one click—your ideas, amplified effortlessly. +- **🔒 Your data is 100% yours**: Local search and storage, and full control of your data if you use self-hosted models. +- **🧠 Bring Your Own Model**: Tap any OpenAI-compatible or local model to uncover insights, spark connections, and create content. +- **🌐 Multimedia understanding**: Drop in webpages, YouTube videos, images, PDFs, EPUBS, or real-time web search for quick insights. +- **🔍 Smart Vault Search**: Search your vault with chat, no setup required. Embeddings are optional. Copilot delivers results right away. +- **✍️ Composer and Quick Commands**: Interact with your writing with chat, apply changes with 1 click. +- **🖼️ Multimedia Ready**: Drop in a webpage, YouTube link, image, or PDF. Copilot understands them and brings the right insights into your notes. +- **🗂️ Project Mode**: Create AI-ready context based on folders and tags. Think NotebookLM but inside your vault! +- **🤖 Agent Mode (Plus)**: Unlock an autonomous agent with built-in tool calling. No commands needed. Copilot automatically triggers vault, web searches or any other relevant tool when relevant.

- Your AI assistant in Obsidian—powerful yet intuitive, keeping you in the creative flow. + Copilot's Agent can call the proper tools on its own upon your request.

- Product UI screenshot + Product UI screenshot

+## Copilot V3 is a New Era 🔥 + +After months of hard work, we have revamped the codebase and adopted a new paradigm for our agentic infrastructure. It opens the door for easier addition of agentic tools (MCP support coming). We will provide a new version of the documentation soon. Here is a couple of new things that you cannot miss! + +- FOR ALL USERS: You can do vault search out-of-the-box **without building an index first** (Indexing is still available but optional behind the "Semantic Search" toggle in QA settings). +- FOR FREE USERS: Image support and chat context menu are available to all users starting from v3.0.0! +- FOR PLUS USERS: Autonomous agent is available with vault search, web search, youtube, composer and soon a lot other tools! + +Read the [Changelog](https://github.com/logancyang/obsidian-copilot/releases/tag/3.0.0). + ## Why People Love It ❤️ - *"Copilot is the missing link that turns Obsidian into a true second brain. I use it to draft investment memos with text, code, and visuals—all in one place. It’s the first tool that truly unifies how I search, process, organize, and retrieve knowledge without ever leaving Obsidian. With AI-powered search, organization, and reasoning built into my notes, it unlocks insights I’d otherwise miss. My workflow is faster, deeper, and more connected than ever—I can’t imagine working without it."* - @jasonzhangb, Investor & Research Analyst @@ -199,7 +213,6 @@ First, go to https://www.obsidiancopilot.com/en to subscribe to Copilot Plus. Th Click the image to watch the video on YouTube

- # **💡 Need Help?** - Check the [documentation](https://www.obsidiancopilot.com/en/docs) for setup guides, how-tos, and advanced features. diff --git a/images/product-UI-screenshot.png b/images/product-UI-screenshot.png deleted file mode 100644 index a2ec563c..00000000 Binary files a/images/product-UI-screenshot.png and /dev/null differ diff --git a/images/product-ui-screenshot.jpeg b/images/product-ui-screenshot.jpeg new file mode 100644 index 00000000..5cfa0e8b Binary files /dev/null and b/images/product-ui-screenshot.jpeg differ diff --git a/manifest.json b/manifest.json index 435d0ba0..219c12a1 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "copilot", "name": "Copilot", - "version": "2.9.5", + "version": "3.0.0", "minAppVersion": "0.15.0", "description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.", "author": "Logan Yang", diff --git a/package-lock.json b/package-lock.json index acfc835f..767d5f54 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-copilot", - "version": "2.9.5", + "version": "3.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-copilot", - "version": "2.9.5", + "version": "3.0.0", "license": "AGPL-3.0", "dependencies": { "@dnd-kit/core": "^6.3.1", diff --git a/package.json b/package.json index e9f2b9bd..6bb13cc6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-copilot", - "version": "2.9.5", + "version": "3.0.0", "description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index a624915a..7bd715ae 100644 --- a/versions.json +++ b/versions.json @@ -89,5 +89,6 @@ "2.9.2": "0.15.0", "2.9.3": "0.15.0", "2.9.4": "0.15.0", - "2.9.5": "0.15.0" + "2.9.5": "0.15.0", + "3.0.0": "0.15.0" }