# Send recipe-finder to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "recipe-finder",
    "name": "recipe-finder",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/harshasic/recipe-finder",
    "canonicalUrl": "https://clawhub.ai/harshasic/recipe-finder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/recipe-finder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=recipe-finder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "recipe-finder",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T14:25:39.122Z",
      "expiresAt": "2026-05-19T14:25:39.122Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=recipe-finder",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=recipe-finder",
        "contentDisposition": "attachment; filename=\"recipe-finder-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "recipe-finder"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/recipe-finder"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/recipe-finder",
    "downloadUrl": "https://openagent3.xyz/downloads/recipe-finder",
    "agentUrl": "https://openagent3.xyz/skills/recipe-finder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/recipe-finder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/recipe-finder/agent.md"
  }
}
```
## Documentation

### 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

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)



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}



For each recipe found, optionally fetch details:

https://www.themealdb.com/api/json/v1/1/lookup.php?i={id}



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)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: harshasic
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T14:25:39.122Z
- Expires at: 2026-05-19T14:25:39.122Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/recipe-finder)
- [Send to Agent page](https://openagent3.xyz/skills/recipe-finder/agent)
- [JSON manifest](https://openagent3.xyz/skills/recipe-finder/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/recipe-finder/agent.md)
- [Download page](https://openagent3.xyz/downloads/recipe-finder)