Exo is a minimal Obsidian plugin for Anthropic-powered note generation.
- Generate text into the active note from the cursor position
- Run markdown prompt templates from
Exo/templates - Include frontmatter, selected text, note context, and a small set of linked notes
- Obsidian desktop
- An Anthropic API key with available credits
- Open
Settings -> Community plugins -> Exo - Add your Anthropic API key
- Run
Exo: Generate textorExo: Generate from templatefrom the command palette
Templates are standard markdown files stored in Exo/templates by default. Optional frontmatter:
---
description: Short description shown in the picker
system_prompt: |
Extra instruction for this template
---
Write a concise synthesis of {{ title }} using {{ linked_notes_full }}.Exo sends note content, linked-note context, and rendered template prompts to the Anthropic API in order to generate output. The plugin does not use any remote service other than Anthropic.
npm install
npm run buildTo install into a local vault during development:
export OBSIDIAN_VAULT_PATH="/path/to/vault"
npm run obsidian:install