Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Recipe Vault

taylorsduggertaylorsdugger184 downloads

Recipe Vault is a full recipe management system for Obsidian. Import recipes from web pages, browse them in a gallery, and build shopping lists automatically.

Add to Obsidian
Recipe Vault screenshot
Recipe Vault screenshot
Recipe Vault screenshot
Recipe Vault screenshot
Recipe Vault screenshot
  • Overview
  • Scorecard
  • Updates15

🥘 Recipe Vault

Your recipes, in plain markdown, right inside Obsidian.


Recipe Gallery    A recipe note with built-in action buttons

Import recipes from the web, browse them in a visual gallery, and build shopping lists automatically. Paste a URL, get a clean recipe note. No subscriptions, no accounts, no ads, just your recipes in your vault.

📦 Available in the Obsidian Community Plugins directory →


✨ Features

  • 🌐 Import from any URL: fetches structured recipe data (JSON-LD) from a recipe page and creates a formatted note instantly.
  • ✍️ Add recipes manually: create a recipe note from scratch using the same template.
  • 🖼️ Recipe gallery: browse your whole collection visually in a dedicated gallery view.
  • 🔍 Search everything: filter as you type across titles, meal types, and ingredients, so you can find every recipe that uses what's already in the fridge.
  • ⚖️ Shopping list: check off ingredients in a note and send them to a single shopping list file, with automatic unit merging.
  • 🔁 Compare recipes: select multiple recipes and view them side by side, with shared and unique ingredients highlighted.
  • 📅 Mark as made: track when you last made a recipe and how many times.
  • 🤖 Ask AI for edits: request changes like "make this dairy-free" or "scale to 2 servings" via OpenRouter (API key required).
  • 🎨 Customizable templates: full Handlebars support so your notes look exactly how you want.

📥 Installation

From the Obsidian Community Plugins browser

  1. Open Obsidian → Settings → Community plugins
  2. Search for Recipe Vault
  3. Click Install, then Enable

Manual installation

  1. Download main.js, manifest.json, and styles.css from the latest release.
  2. Copy them into your vault at .obsidian/plugins/recipe-vault/.
  3. Reload Obsidian and enable the plugin under Settings → Community plugins.

🚀 Quick Start

  1. Click the chef hat icon in the ribbon (or run Import recipe from the command palette).
  2. Paste a recipe URL and press Enter.
  3. Your recipe note is created in the configured save folder.

To browse your recipes, click the utensils icon in the ribbon to open the Recipe Gallery.

Import a recipe by pasting a URL    Search across recipes and ingredients

⌨️ Commands

Command What it does
Import recipe Opens a URL prompt and imports a recipe into a new note
Open recipe gallery Opens the visual gallery of your recipe notes
Mark recipe as made Increments times_made and sets last_made to today on the active note
Add checked ingredients to shopping list Sends checked ingredients from the active recipe to your shopping list file
Clear checked items from shopping list Removes completed items from your shopping list
Add recipe (manual) Creates a new recipe note from a title prompt
Batch import recipes from URL list Imports multiple recipes from a list of URLs (one per line) in the active note
Rebuild ingredient search index Rebuilds the in-memory index that powers ingredient search in the gallery

⚙️ Settings

Setting Description
Recipe save folder Where new recipe notes are created
Save in currently opened file Import into the active note instead of creating a new one
Save images Download recipe images into your vault
Save images in subdirectories Create a per-recipe subfolder under the image folder
Recipe template Handlebars template used when creating recipe notes
Decode entities Decodes HTML entities in imported data
Proxy fallback for blocked imports If a page blocks the import (e.g. a 403 from bot protection), retry once through a public read proxy (allorigins.win). Sends the recipe URL to a third party. Off by default
Shopping list file Path to your shopping list note (created automatically if missing)
Recipe gallery folder The folder the Recipe Gallery browses
OpenRouter API key Required for Ask AI features
AI model ID Which model to use for Ask AI (default: google/gemini-2.5-flash-lite)
AI request timeout (ms) Timeout for AI requests (minimum 5000 ms)
Custom AI system prompt Optional override for the built-in Ask AI instructions
Recipe title filler words Controls how imported titles are cleaned up
Filter vegan words / gluten-free words Optionally strips dietary labels from imported recipe titles
Debug mode Enables extra developer logging

📝 Custom Templates

Recipe Vault uses Handlebars for note templates. The plugin assumes the recipe page includes JSON-LD structured data.

Built-in helpers

splitTags converts comma-separated tags into a YAML list for Obsidian frontmatter:

tags:
{{splitTags keywords}}

photoFrontmatter formats image values correctly for frontmatter (wikilink for local files, URL for remote):

photo: "{{photoFrontmatter image}}"

magicTime formats ISO durations and timestamps into readable values:

DateSaved:
{{magicTime}}
CookTime:
{{magicTime cookTime}}
TotalTime:
{{magicTime totalTime}}
DatePublished:
{{magicTime datePublished "dd-mm-yyyy"}}

Example output:

DateSaved: 2024-04-13 20:10
CookTime: 15m
TotalTime: 1h 5m

Default frontmatter fields

cssclasses: recipe-note
tags:
date_added:
meal_type:
author:
cook_time:
url:
photo:
times_made:
last_made:

Tip: Keep frontmatter starting at line 1 of your template. Obsidian requires this to parse it correctly.


🤖 Ask AI

Recipe Vault can use an AI model to suggest edits to a recipe directly in the note preview (for example, "make this dairy-free" or "scale to 2 servings"). This requires an OpenRouter API key, which you can add in plugin settings.

The default model is google/gemini-2.5-flash-lite. Any OpenRouter-compatible model ID can be used, and you can optionally override the built-in system prompt in settings.


🔒 Network use and privacy

Recipe Vault is primarily local, but it can make network requests for the following features:

  • Recipe URL import: fetches the page you provide to read recipe JSON-LD data. The URL and page response are used only to create recipe notes in your vault.
  • Proxy fallback (optional, off by default): if an import is blocked and you enable this setting, the recipe URL is retried once through a public read proxy (allorigins.win), which sends that URL to a third-party service.
  • Recipe image download (optional): when enabled, recipe images referenced by imported recipes are downloaded into your vault.
  • Ask AI via OpenRouter (optional): sends your prompt plus recipe ingredients/instructions to OpenRouter to generate suggestions. Requests include your configured OpenRouter API key.

No ads are shown, and no telemetry is collected by Recipe Vault itself.


🏷️ Releasing

Releases are automated via GitHub Actions.

  1. Go to Actions → Tag and Release
  2. Click Run workflow and choose patch, minor, or major
  3. Review the draft release and publish when ready

🙏 Credits

Recipe Vault is based on obsidian-recipe-grabber by @seethroughdev, which provided the original URL import foundation. This project has since been substantially rewritten and extended with new features.


📄 License

MIT

HealthExcellent
ReviewPassed
About
Manage recipes in your vault: import from URLs (JSON-LD) or add recipes manually, then browse your collection in a visual gallery. Build shopping lists from ingredients with unit merging, track when recipes were made, and edit notes with AI or Handlebars templates.
ImportVisualizationFiles
Details
Current version
1.2.1
Last updated
3 days ago
Created
3 months ago
Updates
15 releases
Downloads
184
Compatible with
Obsidian 1.7.2+
Platforms
Desktop, Mobile
License
MIT
Report bugRequest featureReport plugin
Author
taylorsduggertaylorsdugger
github.com/taylorsdugger
GitHubtaylorsdugger
  1. Community
  2. Plugins
  3. Import
  4. Recipe Vault

Related plugins

RSS Dashboard

A dashboard for organizing and consuming RSS feeds, YouTube channels, and podcasts with smart tagging, media playback, and seamless content flow.

Notebook Navigator

A better file browser and calendar inspired by Apple Notes, Bear, Evernote and Day One.

Importer

Convert your data to Markdown files you can use in Obsidian. Works with Apple Notes, OneNote, Evernote, Notion, Google Keep, and many other formats.

Recent Files

Display a list of recently opened files.

Advanced Canvas

Supercharge your canvas experience. Create presentations, flowcharts and more.

Excalidraw

Visual PKM powerhouse. Create and edit Excalidraw drawings.

Omnisearch

Intelligent search for your notes, PDFs, and OCR for images.

Local REST API with MCP

Unlock your automation needs by interacting with your notes over a secure REST API.

Claudian

Embeds Claude Code/Codex as an AI collaborator in your vault. Your vault becomes agent's working directory, giving it full agentic capabilities: file read/write, search, bash commands, and multi-step workflows.

Maps

Adds a map layout to bases so you can display notes as an interactive map view.