{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gousto",
    "name": "Gousto Recipes",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dhruvkelawala/gousto",
    "canonicalUrl": "https://clawhub.ai/dhruvkelawala/gousto",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gousto",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gousto",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/recipe.sh",
      "scripts/search.sh",
      "scripts/update-cache.sh"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gousto"
    },
    "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/gousto",
    "agentPageUrl": "https://openagent3.xyz/skills/gousto/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gousto/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gousto/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Gousto Recipe Skill",
        "body": "Search and browse 9,000+ Gousto recipes from the command line."
      },
      {
        "title": "Quick Start",
        "body": "# First time: build the cache (~3 min)\n./scripts/update-cache.sh\n\n# Search recipes\n./scripts/search.sh chicken\n./scripts/search.sh \"beef curry\"\n\n# Get full recipe with ingredients & steps\n./scripts/recipe.sh honey-soy-chicken-with-noodles"
      },
      {
        "title": "Scripts",
        "body": "ScriptPurposesearch.sh <query>Search recipes by title (uses local cache)recipe.sh <slug>Get full recipe details with ingredients and cooking stepsupdate-cache.shRebuild local cache from Gousto API (~3 min)"
      },
      {
        "title": "API Details",
        "body": "Official Gousto API (recipe listing):\n\nhttps://production-api.gousto.co.uk/cmsreadbroker/v1/recipes?limit=50&offset=0\n\nReturns metadata: title, rating, prep_time, url\nPaginate with offset parameter (NOT skip — that's broken!)\n~9,300 recipes total\n\nOfficial Gousto API (single recipe):\n\nhttps://production-api.gousto.co.uk/cmsreadbroker/v1/recipe/{slug}\n\nFull recipe with ingredients, cooking steps, nutritional info\nHTML in steps is stripped to plain text by the script"
      },
      {
        "title": "Cache Format",
        "body": "data/recipes.json — array of objects:\n\n{\n  \"title\": \"Chicken Tikka Masala\",\n  \"slug\": \"chicken-tikka-masala\",\n  \"rating\": 4.8,\n  \"rating_count\": 12543,\n  \"prep_time\": 35,\n  \"uid\": \"blt123...\"\n}"
      },
      {
        "title": "Notes",
        "body": "Cache is gitignored — run update-cache.sh after cloning\nSearch is instant (local jq filter)\nRecipe fetch requires network (vfjr.dev proxy)"
      }
    ],
    "body": "Gousto Recipe Skill\n\nSearch and browse 9,000+ Gousto recipes from the command line.\n\nQuick Start\n# First time: build the cache (~3 min)\n./scripts/update-cache.sh\n\n# Search recipes\n./scripts/search.sh chicken\n./scripts/search.sh \"beef curry\"\n\n# Get full recipe with ingredients & steps\n./scripts/recipe.sh honey-soy-chicken-with-noodles\n\nScripts\nScript\tPurpose\nsearch.sh <query>\tSearch recipes by title (uses local cache)\nrecipe.sh <slug>\tGet full recipe details with ingredients and cooking steps\nupdate-cache.sh\tRebuild local cache from Gousto API (~3 min)\nAPI Details\n\nOfficial Gousto API (recipe listing):\n\nhttps://production-api.gousto.co.uk/cmsreadbroker/v1/recipes?limit=50&offset=0\n\nReturns metadata: title, rating, prep_time, url\nPaginate with offset parameter (NOT skip — that's broken!)\n~9,300 recipes total\n\nOfficial Gousto API (single recipe):\n\nhttps://production-api.gousto.co.uk/cmsreadbroker/v1/recipe/{slug}\n\nFull recipe with ingredients, cooking steps, nutritional info\nHTML in steps is stripped to plain text by the script\nCache Format\n\ndata/recipes.json — array of objects:\n\n{\n  \"title\": \"Chicken Tikka Masala\",\n  \"slug\": \"chicken-tikka-masala\",\n  \"rating\": 4.8,\n  \"rating_count\": 12543,\n  \"prep_time\": 35,\n  \"uid\": \"blt123...\"\n}\n\nNotes\nCache is gitignored — run update-cache.sh after cloning\nSearch is instant (local jq filter)\nRecipe fetch requires network (vfjr.dev proxy)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dhruvkelawala/gousto",
    "publisherUrl": "https://clawhub.ai/dhruvkelawala/gousto",
    "owner": "dhruvkelawala",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gousto",
    "downloadUrl": "https://openagent3.xyz/downloads/gousto",
    "agentUrl": "https://openagent3.xyz/skills/gousto/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gousto/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gousto/agent.md"
  }
}