TopRank Skills

Home / Claw Skills / Search / Recipe Finder
Official OpenClaw rules 54%

Recipe Finder

Recipe Finder

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Recipe Finder 技能。 若已安装,则直接安装 Recipe Finder 技能。

Overview

Skill Key
harshasic/recipe-finder
Author
harshasic
Source Repo
openclaw/skills
Version
-
Source Path
skills/harshasic/recipe-finder
Latest Commit SHA
03cc25e0ca9af922d504544ddd1bd58c68677841

Extracted Content

SKILL.md excerpt

# Recipe Finder

Find recipes by ingredients, cuisine, or dietary preferences using TheMealDB free API.

## Triggers

Use this skill when the user:
- Asks "what can I make with [ingredient]"
- Requests "recipes for dinner" or "Italian recipes"
- Says "vegetarian options" or "vegan meals"
- Asks for meal ideas based on ingredients they have

## Tools

- `web_fetch` - Fetch recipe data from TheMealDB API

## Instructions

1. Parse the user's request to identify:
   - Main ingredient (e.g., chicken, eggs, pasta)
   - Cuisine type (e.g., Italian, Mexican, Chinese)
   - Dietary restriction (e.g., vegetarian, vegan, gluten-free)

2. Call TheMealDB API:
   - By ingredient: `https://www.themealdb.com/api/json/v1/1/filter.php?i={ingredient}`
   - By cuisine: `https://www.themealdb.com/api/json/v1/1/filter.php?a={cuisine}`
   - Search by name: `https://www.themealdb.com/api/json/v1/1/search.php?s={query}`

3. For each recipe found, optionally fetch details:
   - `https://www.themealdb.com/api/json/v1/1/lookup.php?i={id}`

4. Format response with:
   - Recipe name
   - Thumbnail image (if available)
   - Category and cuisine
   - Key ingredients
   - Brief instructions (or link to full recipe)

## Response Format

Present recipes in a clean, scannable format:
- Recipe name (bold)
- Image thumbnail (if available)
- Category | Cuisine
- Main ingredients list
- Brief description

## Notes

- TheMealDB is free, no API key required
- Results are limited but reliable
- Combine multiple queries for best results (ingredient + cuisine)

Related Claw Skills