English | Tiếng Việt
Steward is an autonomous AI agent for Obsidian, powered by Large Language Models (LLMs). Equipped with tools and skills, it can search, manage your vault, and handle specialized tasks like creating Bases or Canvas files. Designed with simplicity and an immersive AI experience in mind, Steward lets you create your own commands, skills, and workflows to automate your boring and repetitive tasks.
- Built-in search engine: A BM25-based search with relevant scoring and typo tolerance that is significantly faster than the native Obsidian search.
- Agent Skills: Extend Steward with domain-specific knowledge for specialized tasks like creating Obsidian Bases, Canvas files, or your own workflows. Compatible with the Agent Skills specification.
- Interactive and adaptive chat UI: One or more chat interfaces made of the slash
/leveraging Obsidian's editor and reading view features, that is, adaptable to your current themes. - Privacy-focused: Most actions are executed in the front-end using Obsidian API and local services to avoid exposing your data to LLMs (except for your queries and what you're explicitly provided).
- Command-based interaction: Support for standard commands like search, vault (list, create, delete, copy, move, rename, update frontmatter), update, audio, image generation, and user-defined commands.
- Model flexibility: Use your favorite AI models, including OpenAI, Gemini, DeepSeek, Ollama, etc.
- Model fallback: Automatically switches to alternative models when errors occur, ensuring robust command execution.
- Intent caching: Utilizes embeddings to cache similar queries, so subsequent requests require fewer tokens for LLM processing.
- Multi-language support: Use Steward in your preferred language.
- User-defined commands: Create your own command workflows by combining multiple commands with specific LLM models and settings of your choice.
- Features
- Standard (built-in) commands
- Skills
- User-defined commands
- Folder structure
- Installation
- Development
- Contributing
- License
Steward can be used directly in the editor or by opening the chat interface.
- Click the "Open Steward chat" icon to open the chat
- Type after the
/in the chat or the active editor to interact or type/ ?to see available commands - To add a new line in the command input, press
Shift+Enter(uses 2-space indentation) - To change the model, in the input, type
m:ormodel:and select from the dropdown. - To stop a running command, press
ESCkey or typeStopin the command input. - To revert changes, type
Undoin the command input.
Skills give Steward domain-specific knowledge for specialized tasks. Each skill is a markdown file in the Steward/Skills folder with frontmatter (name, description) and body content that gets injected into the AI's context when activated.
Skills are activated automatically when the AI detects a relevant task, or you can ask explicitly:
/ Use the obsidian-bases skill to create a table view of my project notes.
Once activated, skills persist for the entire conversation and across app restarts.
You can find ready-to-use skills from the community, such as Obsidian Skills for Bases, Canvas, and Markdown. Download skill files and place them in your Steward/Skills folder to get started.
For more details, see the Skills wiki.
You can create your own User-Defined Commands to automate workflows and combine multiple built-in or other User-Defined commands into a single, reusable command. Commands are defined as YAML blocks in markdown files inside the Steward/Commands folder, and they're available with autocomplete just like built-in commands.
For the full guide on creating and using User-Defined Commands, see the User-defined commands wiki.
Automated command Word processor
The community-UDCs folder contains user-defined commands contributed by the community:
- Ask - Ask questions without making changes to your vault
- Plan - Plan and outline tasks before execution
- Clean up - Clean up your vault by removing unwanted notes
- Word processor - Process and format text in your notes
Steward creates the following folder structure in your vault:
Steward/
├── Commands/ # Stores user-defined command definitions
├── Conversations/ # Archives past conversations
├── Docs/ # Fetched documents from this repo
├── Release notes/ # Release notes of Steward
├── Skills/ # Agent skills for domain-specific knowledge
├── Trash/ # Stores deleted files
└── Steward chat.md # Current active conversation
- Download the plugin from the Obsidian Community Plugins browser
- Enable the plugin in your Obsidian settings
- Configure your API keys in the plugin settings
- Download the latest release from the releases page
- Extract the zip file into your Obsidian vault's
.obsidian/pluginsfolder - Enable the plugin in your Obsidian settings
- Configure your API keys in the plugin settings
This plugin uses TypeScript and follows the Obsidian plugin architecture.
- Clone this repository
- Run
npm installto install dependencies - Run
npm run buildto build the production version
Contributions to Steward are welcome! Here's how you can contribute:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
You can contribute your User-Defined Commands (UDCs) to help the community:
- Create your UDC following the User-defined commands wiki
- Test your UDC thoroughly to ensure it works as expected
- Add your UDC to the
community-UDCsfolder with a descriptive name - Include clear documentation in your UDC file explaining:
- What the command does
- How to use it
- Any prerequisites or dependencies
- Example usage scenarios
MIT