your new cookbook

v1.0.0

Recipe search skill. Searches a curated recipe database scraped from 101 Cookbooks (vegetarian) and Omnivore's Cookbook (Chinese how-tos & recipes). Use when...

0· 113·0 current·0 all-time
byJay@goog

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for goog/cook.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "your new cookbook" (goog/cook) from ClawHub.
Skill page: https://clawhub.ai/goog/cook
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install cook

ClawHub CLI

Package manager switcher

npx clawhub@latest install cook
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description match the provided assets: a local recipes.md database and search/presentation instructions. There are no unrelated binaries, environment variables, or network credentials requested.
Instruction Scope
SKILL.md instructs the agent to read the bundled recipes.md via the read tool and to parse/present matches. That stays within the stated purpose. Minor notes: the instructions include a Windows-style file path (.openclaw\workspace\skills\cookbook\recipes.md) which is hard-coded; runtime agents typically support reading the skill-local file by a relative path, but the path format could be brittle across environments. The README also claims the data was "scraped" despite the source sites blocking scraping — this is a provenance/ethics note but not an immediate technical inconsistency with runtime behavior.
Install Mechanism
No install spec and no code files beyond static recipes.md and SKILL.md. Nothing will be downloaded or written to disk by an installer — lowest-risk pattern for a skill.
Credentials
No environment variables, credentials, or config paths are required. The skill operates entirely on its bundled recipes.md, so requested access is proportionate to its function.
Persistence & Privilege
always:false and no special persistent privileges requested. The skill does not modify other skills or system settings. Autonomous invocation remains possible (default), but that is expected and not by itself a concern here.
Assessment
This skill appears to be what it says: a local recipe search over the included recipes.md. Before installing, consider: (1) provenance and copyright — SKILL.md/recipes.md claim the data was "scraped" from sites that block scraping; confirm you are comfortable using/redistributing that content. (2) Verify the full recipes.md (it appears truncated in the preview) and check links are legitimate. (3) The SKILL.md references a hard-coded Windows-style workspace path — ensure your agent runtime can read the skill-local file. There are no network credentials or installers included, so technical risk is low, but confirm legal/ethical concerns about scraped content if that matters to you.

Like a lobster shell, security has layers — review code before you run it.

latestvk978cq90mrjy82dkfg8g744gah83xt43
113downloads
0stars
1versions
Updated 4w ago
v1.0.0
MIT-0

Cookbook Skill — Recipe Search

Overview

This skill searches a Markdown recipe database (recipes.md) built from two sources:

SourceFocus
101 CookbooksVegetarian recipes (soups, salads, pasta, mains, burgers, snacks)
Omnivore's CookbookChinese 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:

  • Title — exact and partial keyword matches
  • Brief — ingredient and technique mentions
  • Source — filter to 101cookbooks or omnivorescookbook if user specifies
  • Category — soups, salads, pasta, mains, burgers, stir-fry, noodles, rice, how-tos, sauces, etc.

Step 3 — Present Results

Return matched recipes as a formatted list:

### [Recipe Title](URL)
> 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 saysAction
"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

  • Always include clickable URL links
  • Show source site in parentheses: (101 Cookbooks) or (Omnivore's Cookbook)
  • Group results by category when multiple categories match
  • For how-to guides, label them with 📖 Guide badge
  • For recipes, use 🍽️ Recipe badge

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.

Comments

Loading comments...