Cloud Atlas

by Cloud Atlas
5
4
3
2
1
Score: 52/100

Description

Category: Learning & Knowledge Management

The Cloud Atlas plugin integrates Obsidian with advanced AI capabilities, allowing users to enhance note-taking and organization through powerful workflows. It provides features like Canvas Flows for visually mapping workflows, Markdown Notes Mode for processing notes with context-aware AI, and an Interactive Panel for real-time queries. The plugin supports creating structured workflows, summarizing notes, adding contextual metadata, and automating note management using external data sources and computational models. Users can leverage Cloud Atlas as an AI provider or use their own OpenAI key, with options for deep customization and enriched metadata processing.

Reviews

No reviews yet.

Stats

28
stars
3,709
downloads
0
forks
761
days
342
days
698
days
178
total PRs
5
open PRs
83
closed PRs
90
merged PRs
16
total issues
3
open issues
13
closed issues
146
commits

Latest Version

2 years ago

Changelog

What's Changed

Exciting New Features 🎉

Full Changelog: https://github.com/cloud-atlas-ai/obsidian-client/compare/1.1.2...1.2.0

README file from

Github

This work is licensed under CC BY-NC-ND 4.0

Obsidian Cloud Atlas Plugin

This plugin integrates Obsidian with Cloud Atlas, enriching your note-taking experience by automatically processing notes, providing contextual responses, and streamlining information gathering with the power of various computational models and external systems.

Cloud Atlas Features

  • Canvas Flows: Use the interactive canvas to set up and run flows with components like input, context, and user prompts.

    • Name these as <flow name>.flow.canvas
    • Execute them using the command palette or the Cloud Atlas view.
  • Markdown Notes Mode: Run flows directly on Markdown files with support for context selection or using the current file as context.

    • Define flows in CloudAtlas/<flow name>.flow.md
    • Optionally, include additional data with CloudAtlas/<flow name>.flowdata.md

LLM options

You can use the plugin with Cloud Atlas as the Language Model (LLM) provider or bring your own OpenAI key.

  • No need for a separate ChatGPT account; choose between OpenAI ChatGPT-4 or AzureAI ChatGPT-4.
  • Cloud Atlas supports vision tasks and entity recognition to enhance notes with wikilinks automatically.
  • Server-side embeddings generation for adding relevant context to your requests.

Cloud Atlas Subscription

Due to high demand, we are limiting signups for Cloud Atlas as an LLM provider. If you wish to sign up, please email us at [email protected] with a brief description of your intended use and a confirmation of your willingness to pay for the service if it proves valuable.

Using Your Own OpenAI Key

You can choose to use your own OpenAI key with the plugin. However, be aware that this mode comes with the following limitations:

  • Entity recognition and automatic will not be available.
  • Vision tasks are unsupported.
  • Server-side embeddings to improve context relevance are not included.

What is a Flow?

A flow in Cloud Atlas is a powerful tool that simplifies and elevates your note-taking experience. It leverages content already in your vault you to:

  1. Automatically Process Notes: Transform the content of your current note into enriched information or actionable insights without manual intervention.
  2. Get Contextual Responses: Receive responses tailored to your specific queries or topics mentioned in your notes, making your notes more informative and useful.
  3. Streamline Information Gathering: Easily compile and summarize key points from your notes, providing quick access to important information and helping you stay organized.
  4. Customize Your Note Processing: Personalize how your notes are processed and what kind of output you receive, making your note-taking process more aligned with your individual needs and workflows.

Each flow is like having a personal assistant within Obsidian, helping you manage, analyze, and enhance your notes efficiently. We achieve this through a combination of an Obsidian plugin and a server component that makes use of systems that have knowledge (Weather services, Maps, Wolfram Knowledge base, Wikipedia, IMDB, etc...) and computational models (Wolfram Alpha, OpenAI ChatGPT, etc...).

Understanding the Plugin's Functionality

  • Instructions and Prompt: <flow name>.flow.md files from the vault>/CloudAtlas subdirectory. The value of the system_instruction property acts as the instructions or context for the API, and the content of the file provides a specific prompt or question.
  • API Interaction: The content of the active note, along with the system instructions, user prompt, and additional context, is sent to an external API. The API enriches and otherwise processes this and returns a response.
  • Appending API Response: The response from the API is then automatically appended to the end of the active note, providing insights, answers, or content based on the provided instructions and the serverside processing.

Cloud Atlas Plugin Usage Guide

We believe that good context is key to leveraging LLMs effectively. We offer multiple modes for using Cloud Atlas in Obsidian:

  • Canvas Flow Mode: Use the interactive canvas to set up and run flows with components like input, context, and user prompts.
  • Markdown Notes Mode: Run flows directly on Markdown files with support for context selection or using the current file as context.
  • Interactive Panel Mode: Send a prompt along with selected context.

This will walk you through creating, running, and customizing your personal flows. Let's get started.

Canvas Flow Mode

The Canvas Flow mode in the Cloud Atlas plugin enhances your Obsidian experience by enabling a visual representation of your workflows. By creating a Canvas in Obsidian, you can structurally map out your notes, ideas, and tasks, and leverage Cloud Atlas's AI capabilities to interact with them more intuitively.

Features

  • Visual Workflow Mapping: Easily map out your workflow in a visual canvas and define how each part of your notes interacts with each other.
  • AI-Powered Processing: Cloud Atlas AI analyzes your canvas flow, providing insights, summaries, or any other AI-powered feature directly within your canvas.
  • Seamless Integration: The Canvas Flow mode works hand-in-hand with other Cloud Atlas features, ensuring a smooth and efficient workflow within Obsidian.

How to Use Canvas Flow Mode

  1. Create a new .flow canvas.
  2. Add nodes to your canvas, which can be of different types such as Card, Note from Vault, and Media from Vault.
  3. Assign colors to your nodes to indicate their types:
    • Red: Input
    • Orange: User Prompt
    • Blue: System
    • Green: Context
  4. Use the Run Canvas Flow command to execute the flow, which will pass data between nodes and utilize the Cloud Atlas AI to process and generate content.

Example Usage

You can create a Canvas Flow to summarize a meeting by:

  1. Adding a Note to your canvas with the meeting transcript. Color it Red to indicate it as an input.
  2. Adding a Card colored Blue for the System Instructions, telling the LLM to act as a summarizer.
  3. Adding a Card colored Orange for the User Prompt, asking the LLM to summarize the meeting.
  4. Running the Canvas Flow to get a summarized version of the meeting right within your Obsidian canvas.

We often use Canvas Flows as a Pair Programmer or Assistant while preparing for a presentation based on notes.

Markdown Notes Mode

Step 1: Creating a New Flow

  1. Create a New Flow: Use the command palette (Ctrl/Cmd + P) and type Create New Flow. This will create a new .flow file in the CloudAtlas directory.

  2. Name Your Flow: Follow the naming convention CloudAtlas/<flow name>.flow.md for markdown notes mode.

  3. Setup Your Flow: Populate your new flow file with the desired content, context, and instructions as needed.

    ---
    system_instructions: You are a helpful assistant.
    resolveBacklinks: true
    resolveForwardLinks: true
    exclusionPattern: ["^Private/", ".*-confidential.*"]
    ---
    
    Say hello to the user.
    

    In the front matter (the section between ---), you can set various options:

    • system_instructions: Instructions for Cloud Atlas on how to assist.
    • resolveBacklinks and resolveForwardLinks: Whether to include content from linked notes.
    • exclusionPattern: Patterns for notes to exclude, useful for omitting sensitive data.
  4. Running Flows:

Step 2: Running Your Flow

  1. Open Any Note: With your flow created, open any note in your vault where you want to run the flow. The note, flowdata (see below), backlinks, and forward links will be used as context for the flow.
  2. Execute the Flow:
    1. From the Command Palette: After creating or updating a flow, you can register it as a command. Go to the Settings and register it as a command. This will allow you to run the flow from the command palette.
    2. From the Cloud Atlas view: You can also run flows from the Cloud Atlas view by clicking on the Play button next to the flow name.
  3. View the Results: Cloud Atlas processes the flow and adds the response at the cursor or replaces the selected content.

Step 3: Customizing Your Flow

  1. Create a Customization File: In the CloudAtlas directory, create a demo.flowdata file to customize the demo flow.

  2. Add Custom Content and Settings: Here's an example customization:

    ---
    resolveBacklinks: false
    resolveForwardLinks: false
    ---
    
    My name is Muness. I am the user.
    

    This file allows you to:

    • Provide additional content that Cloud Atlas will consider when processing your flow.
    • Override settings defined in demo.flow.
  3. Re-run Your Flow: After customizing, go back to any note and run the demo flow again. You'll see how the customizations impact the flow's output.

That's it! You've now learned how to create, run, and customize your own flows in Obsidian using the Cloud Atlas plugin. Go wild!

Example Usage

We often use Markdown Notes Mode to prepare for a day:

  1. Create a flow named Morning Routine that includes a list of tasks to complete.
  2. Customize the flow with a Morning Routine.flowdata file that includes additional context about current goals and strengths.
  3. Run the flow on your daily notes (which has your calendar and tasks) to get a pep talk.

We also use it to:

  • review a day after it's done, summarizing the day's events and achievements.
  • summarize progress at the end of a week.

Alpha Features

There are some alpha features we are working on, the most exciting of which is to develop a flow and turn it into a Chrome Extension. This will allow you to run flows on any webpage you visit, making it easier to get information and context from the web. Let us know if you'd like to be a part of the alpha testing.

Interactive Panel Mode

The Interactive Panel mode is a dedicated panel within Obsidian that allows you to interact with Cloud Atlas in real-time. It enables you to send prompts to Cloud Atlas and receive responses directly within Obsidian.

How to Use

  1. Open the Interactive Panel by clicking on the Cloud Atlas panel icon in the Obsidian ribbon. This will display the Cloud Atlas Interactive Mode panel.
  2. Enter your prompt in the provided textbox. This could be any question or command you wish to send to Cloud Atlas.
  3. Optionally, you can attach notes from your vault to provide additional context to Cloud Atlas. Click the '+' button to attach the currently active note.
  4. Once you're ready, click the 'Send to LLM' button to submit your prompt to Cloud Atlas.
  5. The panel will display a loading indicator while waiting for a response.
  6. Once Cloud Atlas processes your prompt, the response will be displayed in the panel.
  7. You can copy the response to your clipboard using the 'Copy to Clipboard' button, which appears after a response is received.

Example Usage

We often use the Interactive Panel Mode to have a Q&A about the contents of a specific note.

Manually installing the plugin

With Obsidian BRAT

  1. Install the BRAT plugin
    1. Open Settings -> Community Plugins
    2. Disable safe mode, if enabled
    3. Browse, and search for "BRAT"
    4. Install the latest version of Obsidian42 - BRAT
  2. Open BRAT settings (Settings -> BRAT)
    1. Scroll to the Beta Plugin List section
    2. Add Beta Plugin
    3. Specify this repository: cloud-atlas-ai/obsidian-client
  3. Enable the Cloud Atlas plugin (Settings -> Community Plugins)
  4. Set the API key in the plugin settings. You can get an API key by signing up at the Cloud Atlas website.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Sequence Hotkeys
4 years ago by Ruan Moolman
Obsidian plugin to support a sequenced of keyboard shortcuts to run commands.
Task Genius
4 years ago by Boninall
Comprehensive task management plugin for Obsidian
Open File by Magic Date
4 years ago by simplgy
Auto Hide
4 years ago by skelato1
This Obsidian plugin enables you to collapse (and expand) the sidebar easier.
ToggleList
4 years ago by Lite C
This is a simple plugin for Obsidian to overwrite the default behavior of toggle checkbox status. Also, it offers a simple way to toggle through frequently used attributes: task states, task tags, highlighted list, etc.
Rapid Notes
3 years ago by valteriomon
File chucker
3 years ago by Ken Lim
Smart Connections
3 years ago by Brian Petro
Chat with your notes & see links to related content with AI embeddings. Use local models or 100+ via APIs like Claude, Gemini, ChatGPT & Llama 3
Task Marker
3 years ago by wenlzhang
An Obsidian plugin to change task status and append text with hotkeys and right-click context menu.
Weekly Review
3 years ago by Brandon Boswell
Canvas Conversation
3 years ago by André Baltazar
A plugin for Obsidian that allows you to create a canvas conversation using ChatGPT.
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.
ChatGPT MD
3 years ago by Bram Adams
A (nearly) seamless integration of ChatGPT into Obsidian.
GPT Assistant
3 years ago by M7mdisk
Ask GPT from your notes and get personalized answers based on your knowledge base.
Vim Toggle
3 years ago by Conner Ohnesorge
This is a plugin that adds the ability to toggle on and off vim into obsidian with a nice notice to let you know when you switched.
AI Assistant
3 years ago by Quentin Grail
AI Assistant Plugin for Obsidian
GPT-LiteInquirer
3 years ago by ittuann
💬 Experience OpenAI ChatGPT assistance directly within Obsidian, drafting content without interrupting your creative flow.
Personal Assistant
3 years ago by edony
A plugin that harnesses AI agents and streamlining techniques to help you automatically manage Obsidian.
AI Mentor
3 years ago by clementpoiret
Custom State for Task List
3 years ago by Okami Wong
A plugin for Obsidian to define your own states for task items.
brAIn
3 years ago by lusob
Silicon AI
3 years ago by deepfates
Add some intelligence to your notes with Silicon AI for Obsidian
Arcana
3 years ago by A-F-V
Supercharge your Obsidian note-taking through AI-powered insights and suggestions
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!
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.
AI Notes Summary
3 years ago by R. Ian Bull (irbull)
An Obsidian plugin that uses ChatGPT to generate a summary of referenced notes
GTD No Next Step
3 years ago by Tobias Davis
Obsidian plugin for GTD workflow, badge projects with no next step.
AI Research Assistant
3 years ago by Interweb Alchemy
Prompt Engineering Research Tool for AI APIs
ChatGPT Definition
3 years ago by julix14
Flashcard Generator
3 years ago by ChloeDia
Obsidian Plug-in to automatically create a set of questions/answers on your notes !
AI Editor
3 years ago by Zekun Shen
Swiss army knife
3 years ago by mwoz123
ZettelFlow
3 years ago by RafaelGB
ZettelFlow is a plugin for Obsidian that helps you to create and manage your notes in a Zettelkasten way.
Next Link
3 years ago by Juan Luque
Chat with Bard
3 years ago by Artel250
An obsidian plugin that enables you to talk to Google Gemnini directly
Canvas LLM Extender
3 years ago by Pasi Saarinen
Let the OpenAI LLM add nodes to your Obsidian canvas
Tag Project
3 years ago by Odaimoko
Editor Autofocus
2 years ago by Mgussekloo
Tag Buddy
2 years ago by David Fasullo
Unlock powerful tag editing features in Reading Mode. Add, remove and edit tags across your vault. Use tag inboxes to level up any workflow with a powerful idea assembly line.
ChatCBT
2 years ago by Claire Froelich
AI-powered journaling plugin for your Obsidian notes, inspired by cognitive behavioral therapy
Slash Commander
2 years ago by alephpiece
Customizable slash command list for Obsidian.md
Custom save
2 years ago by Hananoshika Yomaru
add custom save action to your save command
Intelligence
2 years ago by John Mavrick
open-as-md
2 years ago by kursad-k
open and edit preferred formats as markdown in Obsidian
Task Status
2 years ago by Valerie Burzynski
Quickly change any task status in Obsidian. The searchable modal enables a more dynamic and indiscriminate workflow when you need to change your checkbox markers.
Extended Task Lists
2 years ago by joeriddles
Extended Markdown support for task lists in Obsidian.
Gemini Assistant
2 years ago by eatgrass
Your AI assistant in obsidian
Templated daily notes
2 years ago by digitorum
Allow to create templayted daily note in specific folder
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!
WordWise
2 years ago by ckt1031
Writing companion for AI content generation.
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.
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.
Select & Complete
2 years ago by Mario De Luca
A really simple and easy to use AI completion for Obsidian
AI Zhipu
2 years ago by Tarslab
AI-zhipu is an Obsidian plugin that helps you utilize the Zhipu API. 智谱AI obsidian 插件
New Tab +
2 years ago by Raphaël Le Carval
Allow to open markdown files, graph and canvas in new tab as the default behavior.
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
Notice logger
2 years ago by @gapmiss
An Obsidian.md plugin for logging all notices to the developer console, with optional prefix & timestamp.
AI Summarize
2 years ago by Alp Sariyer
Easy to use AI Summary tool for your notes in Obsidian
Reverse Prompter
2 years ago by Ryan Halliday
Let AI generate prompts to keep you writing
Markpilot
2 years ago by Taichi Maeda
AI-powered inline completions and chat view for Obsidian
Alias Picker
2 years ago by rostunic
AI for Templater
2 years ago by TfTHacker
Extends Templater with AI Chat commands using the OpenAI Client Library
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
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.
Personal OS
2 years ago by A.Buot
Outline to task list
2 years ago by alexandrerbb
A simple Obsidian plugin to convert a note's outline to a task list
LinkMagic
2 years ago by AndyReifman
AI Chat
2 years ago by arenasys
Canvas Blocks
2 years ago by Kay606
Note Chain
2 years ago by ZigHolding
Package my frequently used tools, highly personal plugins.
Github Copilot
2 years ago by Vasseur Pierre-Adrien
A bridge between Obsidian and Github Copilot
Ayanite
2 years ago by jemstelos
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.
Close Window When Empty
2 years ago by Taylor Jadin
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.
Caret
2 years ago by Jake Colling
Caret, an Obsidian Plugin
AI image analyzer
2 years ago by Swaggeroo
Analyze images with AI to get keywords of the image.
Quick Open
2 years ago by James Alexandre
Quickly select items in any modal using keyboard shortcuts. Supercharge your workflow with fast, efficient item selection in Obsidian modals.
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.
AI LaTeX Generator
2 years ago by Aayush Shah
An Obsidian plugin that generates latex code from natural language inputs.
Mesh AI
2 years ago by Chasebank87
Custom window title
5 years ago by Joost Plattel
Small Obsidian plugin that updates the window title with the current open note
Hotkeys for specific files
5 years ago by Vinzent
Homepage
5 years ago by mirnovov
An Obsidian plugin that opens a specified note, canvas, or workspace on startup, instead of the most recent one.
Open with
5 years ago by phibr0
Command Alias
5 years ago by @Yajamon
Obsidianのコマンドに対してエイリアスを設定するプラグイン
Archiver
5 years ago by ivan-lednev
Archive completed tasks in your Obsidian vault (plus other org-mode-like features)
Overdue
4 years ago by Peter Parente
Obsidian plugin that marks items as [[Overdue]] if they are not checked off by their due date
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
Open Interpreter
2 years ago by Mike Bird
The power of Open Interpreter in your Obsidian vault
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
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.
Peekaboo
2 years ago by Wang Guoshi
An Obsidian plugin protects your privacy by setting a password to hide notes.
NeuroVox
a year ago by Synaptic Labs
Obsidian plugin for transcription and generation
Bottom to Top
a year ago by Henry Gustafson
Gemini Scribe
a year ago by Allen Hutchison
An obsidian plugin to interact with Google Gemini
BlazeJump
a year ago by henryco
Plugin for Obsidian that makes text navigation blazingly fast.
AI bot
a year 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.
LLM workspace
a year ago by Olivér Falvai
NodeFlow
a year ago by LincZero
Render node streams like `ComfyUi`, `UE`, `Houdini`, `Blender`, etc., to make it easy to write relevant notes. json describes the chart, compared to screenshots, making it easier to modify later. The plugin is also compatible with blogs.",
Smart Context
a year ago by 🌴 Brian
Better Plugins Manager
a year ago by zero
AI Revisionist
a year ago by Synaptic Labs
Context Command Hider
a year ago by Mara-Li
This plugin allows you to hide every command from the Obsidian's right-click context menu.
YouTube Video Summarizer
a year ago by mbramani
Generate AI-powered summaries of YouTube videos directly in Obsidian using Google's Gemini AI.
InlineAI
a year ago by FBarrca
Spacekeys
a year ago by Jared Lumpe
Obsidian plugin to define hotkeys based on sequences of keypresses.
New Note Fixer
a year ago by mnaoumov
Obsidian Plugin that unifies the way non-existing notes are created when clicking on their links
MCP Tools
a year ago by Jack Steam
Add Obsidian integrations like semantic search and custom Templater prompts to Claude or any MCP client.
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 integration Hub
a year ago by Hishmat Salehi
A modular AI integration hub for Obsidian
Runsh
a year ago by Ddone
A simple plugin that allows to run shell commands from obsidian.
Task Board
a year ago by Atmanand Gauns
An Obsidian plugin to view and manage your tasks from whole vault using much efficient boards using various methodologies.
Hide Commands in Menu
a year ago by bomian98
Obsidian Plugin, hide different commands in different menus.
Task Mover
a year ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
Cursor Position History
a year ago by Florian Gubler
A Plugin to remember (and make accessible) the cursor history in Obsidian. Both within a file and across files.
Vision Recall
a year ago by Travis Van Nimwegen
Transform screenshots into searchable Obsidian notes using AI vision and text analysis
Asana
a year ago by Ryan Bantz
Obsidan plugin that creates tasks in Asana for highlighted text or the current line
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.
Memos AI Sync
a year ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Blog AI Generator
a year ago by Gareth Ng
Obsidian Plugin: generate blog via AI based on the current note.
Previous Daily Note
a year ago by Marcos Talau
Plugin for Obsidian that opens the previous daily note
URI Converter
a year ago by wenlzhang
An Obsidian plugin to convert Obsidian URIs to Obsidian internal links.
Student Repo
a year ago by Feirong.zfr
学生知识库助手(Student Repository Helper)是一个面向学生或学生家长的Obsidian 插件,这款插件旨在解决学生在学习阶段面临的资料管理难题,将学习过程中产生的各类重要资料,如试卷、笔记、关键文档、绘画手工作品等,进行系统性的数字化整合与管理,并利用 AI 助手定期进行学习分析总结。随着时间的推移,它将助力你逐步搭建起一座专属你自己的知识宝库,这座宝库将伴随你一生,成为你知识成长与积累的见证。
Research Quest
a year ago by Nathan Arthur
Smart ChatGPT
a year ago by 🌴 Brian
LLM Test Generator
a year ago by Aldo E George
AI Helper
a year ago by David Connolly
AI Note Tagger
a year ago by Jasper Mayone
Auto tagging obsidian notes w/ AI
HiNote
a year ago by Kai
Add comments to highlighted notes, use AI for thinking, and flashcards for memory.
Jira Issue Manager
a year ago by Alamion
Obisdian plugin to sync tasks between Obsidian and Jira
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.
Images to Notes
a year ago by Rodolfo Terriquez
Turn photos of your handwritten notes into markdown
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.
Note Companion AI
8 months ago by Benjamin Ashgan Shafii
Note Companion: AI assistant for Obsidian that goes beyond just a chat. (prev File Organizer 2000)
Tezcat
7 months ago by Max Margenot
Tezcat is an Obsidian plugin that uses AI embeddings to index your vaults and integrate search over your thoughts into your workflow.
Hydrate
5 months ago by hydrateagent
YOLO
4 months ago by Lapis0x0
Smart, snappy, and multilingual AI assistant for your vault.
AI Transcriber
4 months ago by Musashino Software
AI-powered speech-to-text transcription using OpenAI GPT-4o and Whisper APIs
Nova
3 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.