Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Search and browse 9,000+ Gousto recipes. Get full ingredients and step-by-step cooking instructions via official API.
Search and browse 9,000+ Gousto recipes. Get full ingredients and step-by-step cooking instructions via official API.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Search and browse 9,000+ Gousto recipes from the command line.
# 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
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)
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
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..." }
Cache is gitignored โ run update-cache.sh after cloning Search is instant (local jq filter) Recipe fetch requires network (vfjr.dev proxy)
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.