# Send Gousto Recipes 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. 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.
```
### 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/gousto",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gousto",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/recipe.sh",
      "scripts/search.sh",
      "scripts/update-cache.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gousto",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T23:09:53.200Z",
      "expiresAt": "2026-05-10T23:09:53.200Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gousto",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gousto",
        "contentDisposition": "attachment; filename=\"gousto-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gousto"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Gousto Recipe Skill

Search and browse 9,000+ Gousto recipes from the command line.

### Quick Start

# First time: build the cache (~3 min)
./scripts/update-cache.sh

# Search recipes
./scripts/search.sh chicken
./scripts/search.sh "beef curry"

# Get full recipe with ingredients & steps
./scripts/recipe.sh honey-soy-chicken-with-noodles

### Scripts

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)

### API Details

Official Gousto API (recipe listing):

https://production-api.gousto.co.uk/cmsreadbroker/v1/recipes?limit=50&offset=0

Returns metadata: title, rating, prep_time, url
Paginate with offset parameter (NOT skip — that's broken!)
~9,300 recipes total

Official Gousto API (single recipe):

https://production-api.gousto.co.uk/cmsreadbroker/v1/recipe/{slug}

Full recipe with ingredients, cooking steps, nutritional info
HTML in steps is stripped to plain text by the script

### Cache Format

data/recipes.json — array of objects:

{
  "title": "Chicken Tikka Masala",
  "slug": "chicken-tikka-masala",
  "rating": 4.8,
  "rating_count": 12543,
  "prep_time": 35,
  "uid": "blt123..."
}

### Notes

Cache is gitignored — run update-cache.sh after cloning
Search is instant (local jq filter)
Recipe fetch requires network (vfjr.dev proxy)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dhruvkelawala
- 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-03T23:09:53.200Z
- Expires at: 2026-05-10T23:09:53.200Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gousto)
- [Send to Agent page](https://openagent3.xyz/skills/gousto/agent)
- [JSON manifest](https://openagent3.xyz/skills/gousto/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gousto/agent.md)
- [Download page](https://openagent3.xyz/downloads/gousto)