Thought Agent

by tuguberk
5
4
3
2
1
Score: 35/100

Description

Category: Learning & Knowledge Management

The Thought Agent plugin turns a vault into a searchable knowledge graph that an AI agent can work through with some independence. It combines semantic retrieval, keyword scoring, graph traversal and backlink lookups so the agent can find context before it suggests note edits, links or new content. Every write action stays behind a preview and diff screen, which keeps the workflow controlled instead of automatic. It also handles image and PDF attachments in chat and can create or update Excalidraw diagrams such as mindmaps, flowcharts, timelines and entity graphs. Provider choice is flexible, so you can run it with Anthropic or point it at a local OpenAI compatible server if you want the whole setup to stay on your machine.

Reviews

No reviews yet.

Stats

stars
189
downloads
0
forks
52
days
NaN
days
NaN
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
0
commits

RequirementsExperimental

  • Anthropic API key

  • OpenAI compatible API server such as LM Studio, Ollama, or llama.cpp

Latest Version

Invalid date

Changelog

README file from

Github

🧠 Thought Agent

Your vault doesn't just store knowledge, it thinks with you.

An AI-powered Obsidian plugin that treats your notes, links, and diagrams as a living knowledge graph.

Demo

Version Obsidian Community Plugin License TypeScript Node


✦ What is Thought Agent?

Thought Agent is not a chatbot bolted onto your notes. It is an autonomous reasoning agent that navigates your vault like a researcher, searching semantically, traversing graph links, proposing safe edits, and generating visual diagrams, all without touching a single file until you approve.

"Think of it as a second brain for your second brain."


📦 Installation

  1. Open Obsidian → Settings → Community Plugins → Browse.
  2. Search for "Thought Agent".
  3. Click Install, then Enable.

That's it — no BRAT, no manual file copying.

You can also open the plugin page directly: community.obsidian.md/plugins/thought-agent


Option 2, BRAT

BRAT lets you install plugins directly from GitHub and get pre-release updates.

  1. Install Obsidian42 - BRAT from the Community Plugins store.
  2. Open Obsidian → Settings → BRAT → Add Beta Plugin.
  3. Paste the repository URL:
    https://github.com/Tuguberk/Thought-Agent-Obsidian
    
  4. Click Add Plugin, BRAT downloads and enables it automatically.
  5. Go to Settings → Community Plugins and toggle Thought Agent on.

Option 3, Manual installation

  1. Go to the Releases page and download the latest:
    • main.js
    • manifest.json
    • styles.css
  2. Copy all three files into your vault's plugins folder:
    <your-vault>/.obsidian/plugins/thought-agent/
    
  3. Restart Obsidian (or reload without saving).
  4. Go to Settings → Community Plugins and toggle Thought Agent on.

Option 4, Build from source

# Clone into your vault's plugins folder
git clone https://github.com/Tuguberk/Thought-Agent-Obsidian \
  "<your-vault>/.obsidian/plugins/thought-agent"

cd "<your-vault>/.obsidian/plugins/thought-agent"
npm install
npm run build

Then enable the plugin in Obsidian as above.


🚀 Quick Start

Step 1, Configure a provider

Open Obsidian → Settings → Thought Agent and pick your LLM provider:

Using Anthropic (Claude):

  • Set ProviderAnthropic
  • Paste your Anthropic API key (sk-ant-...)
  • Select a model, Claude Sonnet 4.6 is recommended for the best balance of speed and power

Using a local model (OpenAI compatible API):

  • Start any OpenAI-compatible local server (e.g. LM Studio, Ollama, llama.cpp)
  • Set ProviderOpenAI compatible API
  • Default URL is http://localhost:1234/v1, hit Test to confirm it's reachable
  • Your prompts never leave your machine 🔒

Step 2, Index your vault

In Settings → Thought Agent, click Re-index vault.
This builds the local semantic index (~25 MB model download on first run). You only need to do this once, and again after adding many new notes.


Step 3, Open the chat

Click the 🧠 Thought Agent icon in the left sidebar (or run "Open Thought Agent chat" from the Command Palette).

Chat UI

Example prompts to try:

"What do my notes say about machine learning?"
"Summarize my research on [[Attention Mechanisms]] and link related notes"
"Create a mindmap of my project ideas"
"Find notes I haven't linked yet about distributed systems"
"What are the backlinks to my MOC note?"

Step 4, Review & approve changes

The agent will never write to your vault without showing you a preview first.
Every proposed note creation, edit, and diagram goes through a diff view, approve or reject each change individually.


🖼️ Multimodal Input

Attach images and PDFs directly to your messages using the + button in the chat composer.

  • Images (JPEG, PNG, GIF, WEBP) — sent as-is to vision-capable models
  • PDFs — text is extracted client-side via Obsidian's built-in PDF.js and sent as readable content; no PDF data leaves your machine for local models
  • Attach multiple files at once; each appears as a chip with a thumbnail preview
  • Attachments are cleared automatically after each message

🏗️ System Architecture

flowchart TD
    U(["👤 User Prompt"]) --> AL["🔄 Agent Loop\nIterative reasoning"]

    AL --> TE["⚙️ Tool Executor"]

    TE --> R["🔍 Hybrid Retrieval\nVector · BM25 · Graph"]
    TE --> V["📝 Vault Operations\nCreate · Edit · Link"]
    TE --> D["🎨 Excalidraw Engine\nCreate · Update · Read"]
    TE --> G["🕸️ Graph Queries\nNeighbors · Backlinks · Subgraphs"]

    R --> CP["📦 Context Pack\nRanked, deduplicated"]
    CP --> AL

    AL --> PR["👁️ Preview & Diff\nPropose before write"]
    PR --> W(["✅ Write to Vault\nUser-approved only"])

    style U fill:#7c3aed,color:#fff,stroke:none
    style W fill:#059669,color:#fff,stroke:none
    style PR fill:#d97706,color:#fff,stroke:none
    style CP fill:#1e40af,color:#fff,stroke:none

🔌 LLM Provider Support

Thought Agent is provider-agnostic. Choose the model that fits your workflow.

flowchart LR
    TA["🧠 Thought Agent\nProvider Layer"] --> AN
    TA --> LM
    TA --> OA

    subgraph AN["☁️ Anthropic (Cloud)"]
        C1["Claude Sonnet 4.6\n✦ Recommended"]
        C2["Claude Opus 4.7\n✦ Most powerful"]
        C3["Claude Haiku 4.5\n✦ Fastest"]
    end

    subgraph LM["🖥️ OpenAI Compatible API (Local)"]
        L1["LM Studio · Ollama · llama.cpp\nQwen · Mistral · Llama · Phi\nAny OpenAI-compat model"]
    end

    subgraph OA["🔗 OpenAI-Compatible (Remote)"]
        O1["Any server exposing\n/v1/chat/completions"]
    end

    style TA fill:#7c3aed,color:#fff,stroke:none
    style AN fill:#1a1a2e,color:#e2e8f0,stroke:#7c3aed,stroke-width:1px
    style LM fill:#1a1a2e,color:#e2e8f0,stroke:#059669,stroke-width:1px
    style OA fill:#1a1a2e,color:#e2e8f0,stroke:#3178c6,stroke-width:1px
Provider Setup Privacy Models Best For
Anthropic API key Cloud Claude Sonnet / Opus / Haiku Best reasoning quality
OpenAI compatible API localhost:1234 100% local LM Studio · Ollama · llama.cpp Offline / private vaults

🔍 Retrieval Pipeline

Every query runs through a multi-stage hybrid search before the agent sees any context.

flowchart LR
    Q["🔎 Query"] --> V["Vector Search\n(all-MiniLM-L6-v2)\nSemantic similarity"]
    Q --> B["BM25 Scoring\nKeyword frequency\n& TF-IDF"]

    V --> F["🔀 Fusion\nMin-max normalize + weighted merge\n(0.7 semantic + 0.3 BM25)"]
    B --> F

    F --> GR["🕸️ Graph Re-ranking\nBoost linked neighbors\nof top results"]
    GR --> MM["📊 MMR Filtering\nMaximal Marginal\nRelevance, diversity"]
    MM --> CTX["📦 Context Pack\nTop-K unique chunks\nwith note metadata"]

    style Q fill:#7c3aed,color:#fff,stroke:none
    style CTX fill:#059669,color:#fff,stroke:none

✏️ Safe Write Workflow

"Nothing touches your vault without your eyes on it first."

sequenceDiagram
    actor User
    participant Agent
    participant Preview
    participant Vault

    User->>Agent: "Summarize my research and link related notes"
    Agent->>Agent: Search + reason (tool loop)
    Agent->>Preview: Propose changes (diff view)
    Preview-->>User: Show before/after for each change
    User->>Preview: Approve ✅ / Reject ❌ per item
    Preview->>Vault: Write only approved changes
    Vault-->>User: Notes updated safely

🎨 Excalidraw Integration

Generate, update, and search visual diagrams, directly from natural language.

Excalidraw Mindmap

flowchart TD
    NL(["💬 'Create a mindmap\nof my ML notes'"]) --> EA["Excalidraw\nAgent Tools"]

    EA --> T1["📐 create_diagram\nmindmap · flowchart\ntimeline · entity-graph"]
    EA --> T2["✏️ update_diagram\nAdd nodes · edges\nUpdate labels"]
    EA --> T3["🔍 search_diagrams\nSemantic index\nover .excalidraw files"]
    EA --> T4["📖 read_diagram\nExtract nodes, edges\n& text content"]
    EA --> T5["🔗 annotate_diagram\nBidirectional link\nnote ↔ diagram"]

    T1 --> LE["🏗️ Layout Engine\nDeterministic placement\nAnchor-aware arrows\nLayer ordering"]
    T2 --> LE
    LE --> PR["👁️ Preview\n→ User Approval"]
    PR --> OUT(["📄 .excalidraw file\nwritten to vault"])

    style NL fill:#7c3aed,color:#fff,stroke:none
    style OUT fill:#059669,color:#fff,stroke:none
    style LE fill:#d97706,color:#fff,stroke:none

Supported diagram types:

Type Description Use case
mindmap Hierarchical radial tree Brainstorming, concept maps
flowchart Process with decision nodes Algorithms, workflows
timeline Chronological node chain History, project planning
entity-graph Relationship network Knowledge graphs, ERDs

🛠️ Agent Tool Inventory

The agent has 14 tools across two categories:

Tool Description
search_notes Hybrid semantic + keyword search over the entire vault
get_note Fetch full content of any note by path
get_neighbors Walk outgoing/incoming links to depth N
get_backlinks Find all notes pointing to a target note
query_graph Filter & visualize a subgraph (opens visual graph view) — see below
create_note Propose a new note (preview → approval)
edit_note Propose changes to an existing note (diff preview)
link_notes Add a wikilink between two notes (preview → approval)
reorganize Multi-step vault restructuring with per-step approval
set_session_constraint Scope agent to specific tags/folders for the session

Graph View

Tool Description
create_diagram Generate new .excalidraw from semantic node/edge structure
update_diagram Add nodes/edges or relabel existing diagram
search_diagrams Semantic search over the diagram index
read_diagram Extract structured content from any .excalidraw file
annotate_diagram Bidirectionally link a note and a diagram

⚡ Getting Started to Development

Requirements

Installation (Development)

# 1. Clone into your vault's plugins folder
git clone https://github.com/Tuguberk/Thought-Agent-Obsidian \
  /path/to/vault/.obsidian/plugins/thought-agent

# 2. Install dependencies
cd thought-agent && npm install

# 3. Start the dev build (watches for changes)
npm run dev

# 4. Enable "Thought Agent" in Obsidian → Settings → Community Plugins

Production build

npm run build

📄 License

MIT © Tuğberk Akbulut


Built with ❤️ for people who think in graphs.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
3D Graph
4 years ago by Alexander Weichart
👓 A 3D graph for Obsidian!
AI Assistant
3 years ago by Quentin Grail
AI Assistant Plugin for Obsidian
AI bot
2 years ago by kuzzh
The AI Bot Plugin is a powerful tool designed to enhance your note-editing experience in Obsidian by leveraging the capabilities of AI. This plugin allows you to interact with an AI assistant directly within Obsidian, making it easier to generate, edit, and organize your notes with intelligent suggestions and automated tasks.
AI Chat
2 years ago by arenasys
AI Editor
3 years ago by Zekun Shen
AI for Templater
2 years ago by TfTHacker
Extends Templater with AI Chat commands using the OpenAI Client Library
AI image analyzer
2 years ago by Swaggeroo
Analyze images with AI to get keywords of the image.
AI integration Hub
a year ago by Hishmat Salehi
A modular AI integration hub for Obsidian
AI LaTeX Generator
2 years ago by Aayush Shah
An Obsidian plugin that generates latex code from natural language inputs.
AI LLM
2 years ago by Sparky4567
Lets to use local llms in your Obsidian Vaults, extend your stories or create entirely new texts based on your previous input
AI Mentor
3 years ago by clementpoiret
AI Notes Summary
3 years ago by R. Ian Bull (irbull)
An Obsidian plugin that uses ChatGPT to generate a summary of referenced notes
AI Providers
a year ago by Pavel Frankov
This plugin is a hub for setting AI providers (OpenAI-like, Ollama and more) in one place.
AI Research Assistant
3 years ago by Interweb Alchemy
Prompt Engineering Research Tool for AI APIs
AI Revisionist
a year ago by Synaptic Labs
AI Summarize
2 years ago by Alp Sariyer
Easy to use AI Summary tool for your notes in Obsidian
AI Tagger
2 years ago by Luca Grippa
Simplify tagging in Obsidian. Instantly analyze and tag your document with one click for efficient note organization.
AI Tagger Universe
a year ago by Hu Nie
An intelligent Obsidian plugin that leverages AI to automatically analyze note content and suggest relevant tags, supporting both local and cloud-based LLM services.
AI Transcriber
5 months ago by Musashino Software
AI-powered speech-to-text transcription using OpenAI GPT-4o and Whisper APIs
AI Zhipu
2 years ago by Tarslab
AI-zhipu is an Obsidian plugin that helps you utilize the Zhipu API. 智谱AI obsidian 插件
Anki Helper
5 months ago by Dusk
Arcana
3 years ago by A-F-V
Supercharge your Obsidian note-taking through AI-powered insights and suggestions
Auto Keyword Linker
6 months ago by Daniel Rhodes
Stop manually typing [[brackets]] around recurring terms. Configure keywords with variations once, and automatically link them as you write or across your entire vault.
AutoMOC
4 years ago by Diego Alcantara
Ayanite
2 years ago by jemstelos
Backlink Cache
3 years ago by mnaoumov
Obsidian plugin that stores backlink cache to speed up app.metadataCache.getBacklinksForFile().
Backlink Full Path
a year ago by mnaoumov
Obsidian plugin that shows the backlink's full path in the backlinks panel.
Blog AI Generator
a year ago by Gareth Ng
Obsidian Plugin: generate blog via AI based on the current note.
BMO Chatbot
3 years ago by Longy2k
Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) from Ollama, LM Studio, Anthropic, Google Gemini, Mistral AI, OpenAI, and more for Obsidian.
brAIn
3 years ago by lusob
Canvas Conversation
3 years ago by André Baltazar
A plugin for Obsidian that allows you to create a canvas conversation using ChatGPT.
Canvas LLM Extender
3 years ago by Pasi Saarinen
Let the OpenAI LLM add nodes to your Obsidian canvas
Caret
2 years ago by Jake Colling
Caret, an Obsidian Plugin
Charts View
5 years ago by caronchen
Data visualization solution in Obsidian, support plots and graphs.
Chat with Bard
3 years ago by Artel250
An obsidian plugin that enables you to talk to Google Gemnini directly
ChatCBT
3 years ago by Claire Froelich
AI-powered journaling plugin for your Obsidian notes, inspired by cognitive behavioral therapy
ChatGPT Definition
3 years ago by julix14
ChatGPT MD
3 years ago by Bram Adams
A (nearly) seamless integration of ChatGPT into Obsidian.
Coalesce
a year ago by Floyd
Coalesce is an Obsidian plugin that merges all your linked notes into a single, organized view for a cohesive research and writing experience.
CoCo AskAI
2 years ago by Yukee
CoCo-AskAI is an Obsidian plugin that enables AI-powered note assistance, enhancing the writing experience with customizable functions.
Daily Note Outline
4 years ago by iiz
Add a custom view which shows outline of multiple daily notes with headings, links, tags and list items
Default query in backlinks
2 years ago by Benature
Excalidraw CN
3 years ago by Korbin Zhao
支持中文手写的 Excalidraw Obsidian 插件。A Obsidian plugin of Excalidraw supporting Chinese handwrite font.
Explain Selection With AI
2 years ago by Ben Wurster
This is my first go at making an Obsidian plugin to elaborate on and describe selected bits of information and their context.
Export Graph View
a year ago by Sean McGhee
Plugin to export your vault's graph view.
Extended Graph
a year ago by Kapirklaa
Community plugin to add features to the graph view.
Flashcard Generator
3 years ago by ChloeDia
Obsidian Plug-in to automatically create a set of questions/answers on your notes !
Frontmatter Markdown Links
a year ago by mnaoumov
Obsidian Plugin that adds support for markdown links in frontmatter
Gemini Assistant
2 years ago by eatgrass
Your AI assistant in obsidian
Gemini Scribe
2 years ago by Allen Hutchison
An obsidian plugin to interact with Google Gemini
Github Copilot
2 years ago by Vasseur Pierre-Adrien
A bridge between Obsidian and Github Copilot
GPT Assistant
3 years ago by M7mdisk
Ask GPT from your notes and get personalized answers based on your knowledge base.
GPT-LiteInquirer
3 years ago by ittuann
💬 Experience OpenAI ChatGPT assistance directly within Obsidian, drafting content without interrupting your creative flow.
Graph Banner
2 years ago by ras0q
An Obsidian plugin to display a relation graph view on the note header.
Graphs
2 years ago by Dylan Hojnoski
Plugin for Obsidian that renders interactive graphs from YAML.
Hierarchical Backlinks
2 years ago by Jason Motylinski
Plugin which displays backlinks as a tree structure based on file paths
HiNote
a year ago by Kai
Add comments to highlighted notes, use AI for thinking, and flashcards for memory.
Images to Notes
a year ago by Rodolfo Terriquez
Turn photos of your handwritten notes into markdown
Influx
4 years ago by Jens M Gleditsch
An alternative backlinks plugin, which displays relevant and formatted excerpts from notes with linked mentions, based on the position of mentions in the notes' hierarchical structure (bullet level indentation).
InfraNodus AI Graph View
2 years ago by Nodus Labs
Advanced graph view for Obsidian: text analysis, topic modeling, and AI with InfraNodus AI text analysis tool: https://infranodus.com
InlineAI
a year ago by FBarrca
Intelligence
3 years ago by John Mavrick
Juggl
5 years ago by Emile van Krieken
An interactive, stylable and expandable graph view for Obsidian. Juggl is designed as an advanced 'local' graph view, where you can juggle all your thoughts with ease.
Kale Graph
2 years ago by Oli
Render mathematical graphs in Obsidian
Khoj
3 years ago by Debanjum Singh Solanky
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.
Link Tree
3 years ago by Joshua Tazman Reinier
A sidebar foldable list of Obsidian link hierarchies.
Living Graph
4 years ago by Garrett
LLM Test Generator
a year ago by Aldo E George
LLM workspace
2 years ago by Olivér Falvai
Markpilot
2 years ago by Taichi Maeda
AI-powered inline completions and chat view for Obsidian
Mathematica Plot
2 years ago by Marcos Nicolau
Insert functions on Obsidian using Wolfram Mathematica!
Memos AI Sync
a year ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Mesh AI
2 years ago by Chasebank87
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
Nav Link Header
2 years ago by ahts4962
Display navigation links at the top of the notes in Obsidian
Neo4j Graph View
6 years ago by Emile van Krieken
Nested tags graph
3 years ago by drpilman
A small plugin for Obsidian that links nested tags in graph view
NeuroVox
2 years ago by Synaptic Labs
Obsidian plugin for transcription and generation
Node Factor
a year ago by CalfMoon
Customize factors effecting node size in obsidian graph.
Notemd
a year ago by Jacob
A Easy way to create your own Knowledge-base! Notemd enhances your Obsidian workflow by integrating with various Large Language Models (LLMs) to process your notes, automatically generate wiki-links for key concepts, create corresponding concept notes, perform web research, and more.
Nova
5 months ago by Shawn Duggan
Nova - AI plugin for Obsidian that edits your documents directly through natural conversation. Stop copying from chat, start collaborating with AI.
Open Interpreter
2 years ago by Mike Bird
The power of Open Interpreter in your Obsidian vault
Path Finder
4 years ago by jerrywcy
A plugin that can find the paths between two notes. Not sure who will want to use it...
Persistent Graph
4 years ago by Sanqui
An Obsidian plugin for saving and restoring the positions of nodes on the global graph view
Plot Vectors and Graphs
2 years ago by Nicole Tan YiTong
Obsidian Plugin to generate graphs given the function.
Project Browser
2 years ago by Dale de Silva
Proofreader
a year ago by pseudometa (aka Chris Grieser)
AI-based proofreading and stylistic improvements for your writing. Changes are inserted as suggestions directly in the editor, similar to suggested changes in word processing apps.
Quiz Generator
2 years ago by Edward Cui
Generate interactive flashcards from your notes using models from OpenAI (ChatGPT), Google (Gemini), Ollama (local LLMs), and more. Or manually create your own to use with the quiz UI.
Research Quest
a year ago by Nathan Arthur
Reverse Prompter
2 years ago by Ryan Halliday
Let AI generate prompts to keep you writing
Rich Foot
2 years ago by Justin Parker
🦶 Obsidian plugin that adds backlink/outlink tags and created/modified dates to the footer of your notes
Sankey
a year ago by Finn Romaneessen
An Obsidian plugin to create sankey diagrams
Silicon AI
3 years ago by deepfates
Add some intelligence to your notes with Silicon AI for Obsidian
Similar Notes
a year ago by Young Lee
Smart Composer
2 years ago by Heesu Suh
AI chat assistant for Obsidian with contextual awareness, smart writing assistance, and one-click edits. Features vault-aware conversations, semantic search, and local model support.
Smart Connections
3 years ago by Brian Petro
Find related notes and excerpts while writing. Your link building copilot displays relevant content in graph + list view. A local embedding model powers semantic search. Zero setup. No API key.
Smart Connections Visualizer
2 years ago by Evan Moscoso
Visualize your notes and see links to related content with AI embeddings. Use local models or 100+ via APIs like Claude, Gemini, ChatGPT & Llama 3
Smart Context
2 years ago by 🌴 Brian
Smart Second Brain
2 years ago by Leo310, nicobrauchtgit
An Obsidian plugin to interact with your privacy focused AI-Assistant making your second brain even smarter!
Smart Templates
2 years ago by 🌴 Brian Petro
Smart Templates is an AI powered templates for generating structured content in Obsidian. Works with Local Models, Anthropic Claude, Gemini, OpenAI and more.
Strapi Exporter AI
2 years ago by Cinquin Andy
[prod] - 🚀 Strapi Exporter: Supercharge Your Obsidian-to-Strapi Workflow, export an obsidian notes directly to your Strapi API
Student Repo
a year ago by Feirong.zfr
学生知识库助手(Student Repository Helper)是一个面向学生或学生家长的Obsidian 插件,这款插件旨在解决学生在学习阶段面临的资料管理难题,将学习过程中产生的各类重要资料,如试卷、笔记、关键文档、绘画手工作品等,进行系统性的数字化整合与管理,并利用 AI 助手定期进行学习分析总结。随着时间的推移,它将助力你逐步搭建起一座专属你自己的知识宝库,这座宝库将伴随你一生,成为你知识成长与积累的见证。
Sync Graph Settings
4 years ago by Xallt
This is a plugin for syncing graph settings (Color Groups and Search Filters) to Local Graphs
Tars
2 years ago by Tarslab
Obsidian tars plugin that supports text generation based on tag suggestions, using services like DeepSeek, Claude, OpenAI, OpenRouter, SiliconFlow, Gemini, Ollama, Kimi, Doubao, Qwen, Zhipu, QianFan & more.
UnLime
a year ago by shandyba
Obsidian Unmentioned Links toggle
Vault Chat
3 years ago by Exo Ascension
A ChatGPT bot trained on your vault notes. Ask your AI questions about your own thoughts and ideas!
Vector Search
a year ago by Ashwin A Murali
Obsidian plugin for Vector Search
Vision Recall
a year ago by Travis Van Nimwegen
Transform screenshots into searchable Obsidian notes using AI vision and text analysis
WordWise
2 years ago by ckt1031
Writing companion for AI content generation.
YOLO
5 months ago by Lapis0x0
Smart, snappy, and multilingual AI assistant for your vault.
YouTube Video Summarizer
a year ago by mbramani
Generate AI-powered summaries of YouTube videos directly in Obsidian using Google's Gemini AI.
Zettelkasten LLM Tools
3 years ago by Karl Smith
Zettelkasten note taking powered by Large Language Models