What problem does it solve?
The recipes skill provides a structured way to add, update, and organize family recipes within the recipe book app, ensuring consistent formatting and centralized content.
Core Features & Use Cases
- Create and edit Markdown recipe files with YAML front matter in apps/recipes/content/recipes/.
- List all recipes and search across titles, ingredients, and notes to quickly locate a dish.
- Update ingredients, servings, and timing fields while keeping the recipe's structure intact for easy reuse.
Quick Start
Create a new recipe by adding a new Markdown file under apps/recipes/content/recipes/ with a YAML front matter block, then fill in the title, slug, ingredients, and steps. For example, run:
- cat > apps/recipes/content/recipes/{slug}.md << 'EOF'
title: "Recipe Title"
slug: recipe-slug
description: "Brief description"
tags: ["family", "meal"]
yield:
amount: 4
unit: servings
prepTime: 10
cookTime: 20
totalTime: 30
ingredients:
- id: example-ingredient
name: Example Ingredient
amount: 100
unit: g
steps:
- "Do something."
EOF
Then you can edit the file to refine steps and notes.