your new cookbook
by @goog
Recipe search skill. Searches a curated recipe database scraped from 101 Cookbooks (vegetarian) and Omnivore's Cookbook (Chinese how-tos & recipes). Use when...
clawhub install cookπ About This Skill
name: cookbook description: > Recipe search skill. Searches a curated recipe database scraped from 101 Cookbooks (vegetarian) and Omnivore's Cookbook (Chinese how-tos & recipes). Use when the user asks to find a recipe, search for dishes by ingredient or cuisine, or browse cooking techniques and how-to guides.
Cookbook Skill β Recipe Search
Overview
This skill searches a Markdown recipe database (recipes.md) built from two sources:
| Source | Focus | |--------|-------| | 101 Cookbooks | Vegetarian recipes (soups, salads, pasta, mains, burgers, snacks) | | Omnivore's Cookbook | Chinese how-to guides, stir-fries, noodles, rice, soups, sauces |
Database File
Location (relative to this skill):
recipes.md
Search Procedure
Step 1 β Read the Database
Read recipes.md with the read tool:
file_path: .openclaw\workspace\skills\cookbook\recipes.md
Step 2 β Parse & Match
Search the loaded content for recipes matching the user's query. Match against:
Step 3 β Present Results
Return matched recipes as a formatted list:
### Recipe Title
> Brief description of the recipe.
If more than 8 matches: show the top 8 most relevant, offer to show more. If no matches: say so clearly and suggest related categories.
Example Queries & Behavior
| User says | Action | |-----------|--------| | "find a chickpea recipe" | Search briefs & titles for "chickpea" | | "vegetarian soup ideas" | Filter 101cookbooks section, category Soups | | "how do I make dumplings" | Match how-to guides for "dumpling" | | "stir fry vegetables" | Return stir-fry category from Omnivore's | | "quick 20-minute dinner" | Match briefs mentioning "quick", "20-minute", "fast" | | "noodle recipes" | Return all noodle & pasta entries | | "Chinese cooking basics" | Return all Omnivore's how-to guides |
Formatting Rules
Updating the Database
To add new recipes, append entries to recipes.md following the existing table format:
| Title | Brief description of the recipe. | https://url-to-recipe |
To add a new source section, create a new ## Source: heading with category subsections.