{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/recipe-finder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=recipe-finder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/recipe-finder",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Recipe Finder",
        "body": "Find recipes by ingredients, cuisine, or dietary preferences using TheMealDB free API."
      },
      {
        "title": "Triggers",
        "body": "Use this skill when the user:\n\nAsks \"what can I make with [ingredient]\"\nRequests \"recipes for dinner\" or \"Italian recipes\"\nSays \"vegetarian options\" or \"vegan meals\"\nAsks for meal ideas based on ingredients they have"
      },
      {
        "title": "Tools",
        "body": "web_fetch - Fetch recipe data from TheMealDB API"
      },
      {
        "title": "Instructions",
        "body": "Parse the user's request to identify:\n\nMain ingredient (e.g., chicken, eggs, pasta)\nCuisine type (e.g., Italian, Mexican, Chinese)\nDietary restriction (e.g., vegetarian, vegan, gluten-free)\n\n\n\nCall TheMealDB API:\n\nBy ingredient: https://www.themealdb.com/api/json/v1/1/filter.php?i={ingredient}\nBy cuisine: https://www.themealdb.com/api/json/v1/1/filter.php?a={cuisine}\nSearch by name: https://www.themealdb.com/api/json/v1/1/search.php?s={query}\n\n\n\nFor each recipe found, optionally fetch details:\n\nhttps://www.themealdb.com/api/json/v1/1/lookup.php?i={id}\n\n\n\nFormat response with:\n\nRecipe name\nThumbnail image (if available)\nCategory and cuisine\nKey ingredients\nBrief instructions (or link to full recipe)"
      },
      {
        "title": "Response Format",
        "body": "Present recipes in a clean, scannable format:\n\nRecipe name (bold)\nImage thumbnail (if available)\nCategory | Cuisine\nMain ingredients list\nBrief description"
      },
      {
        "title": "Notes",
        "body": "TheMealDB is free, no API key required\nResults are limited but reliable\nCombine multiple queries for best results (ingredient + cuisine)"
      }
    ],
    "body": "Recipe Finder\n\nFind recipes by ingredients, cuisine, or dietary preferences using TheMealDB free API.\n\nTriggers\n\nUse this skill when the user:\n\nAsks \"what can I make with [ingredient]\"\nRequests \"recipes for dinner\" or \"Italian recipes\"\nSays \"vegetarian options\" or \"vegan meals\"\nAsks for meal ideas based on ingredients they have\nTools\nweb_fetch - Fetch recipe data from TheMealDB API\nInstructions\n\nParse the user's request to identify:\n\nMain ingredient (e.g., chicken, eggs, pasta)\nCuisine type (e.g., Italian, Mexican, Chinese)\nDietary restriction (e.g., vegetarian, vegan, gluten-free)\n\nCall TheMealDB API:\n\nBy ingredient: https://www.themealdb.com/api/json/v1/1/filter.php?i={ingredient}\nBy cuisine: https://www.themealdb.com/api/json/v1/1/filter.php?a={cuisine}\nSearch by name: https://www.themealdb.com/api/json/v1/1/search.php?s={query}\n\nFor each recipe found, optionally fetch details:\n\nhttps://www.themealdb.com/api/json/v1/1/lookup.php?i={id}\n\nFormat response with:\n\nRecipe name\nThumbnail image (if available)\nCategory and cuisine\nKey ingredients\nBrief instructions (or link to full recipe)\nResponse Format\n\nPresent recipes in a clean, scannable format:\n\nRecipe name (bold)\nImage thumbnail (if available)\nCategory | Cuisine\nMain ingredients list\nBrief description\nNotes\nTheMealDB is free, no API key required\nResults are limited but reliable\nCombine multiple queries for best results (ingredient + cuisine)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/harshasic/recipe-finder",
    "publisherUrl": "https://clawhub.ai/harshasic/recipe-finder",
    "owner": "harshasic",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}