名称: gousto
描述: 搜索并浏览 9,000+ 道 Gousto 食谱。通过官方 API 获取完整的食材清单和分步烹饪说明。
主页: https://github.com/dhruvkelawala/gousto-agent-skill
元数据: {"openclaw":{"emoji":"🍳","requires":{"bins":["curl","jq"]}}}
在命令行中搜索并浏览 9,000+ 道 Gousto 食谱。
# 首次使用:构建缓存(约 3 分钟)
./scripts/update-cache.sh
# 搜索食谱
./scripts/search.sh 鸡肉
./scripts/search.sh "牛肉咖喱"
# 获取包含食材和步骤的完整食谱
./scripts/recipe.sh 蜂蜜酱油鸡肉面
| 脚本 | 用途 |
|---|---|
search.sh <查询词> |
按标题搜索食谱(使用本地缓存) |
recipe.sh <slug> |
获取包含食材和烹饪步骤的完整食谱详情 |
update-cache.sh |
从 Gousto API 重建本地缓存(约 3 分钟) |
官方 Gousto API(食谱列表):
https://production-api.gousto.co.uk/cmsreadbroker/v1/recipes?limit=50&offset=0
offset 参数进行分页(不要用 skip — 该参数已失效!)官方 Gousto API(单个食谱):
https://production-api.gousto.co.uk/cmsreadbroker/v1/recipe/{slug}
data/recipes.json — 对象数组:
{
"title": "Chicken Tikka Masala",
"slug": "chicken-tikka-masala",
"rating": 4.8,
"rating_count": 12543,
"prep_time": 35,
"uid": "blt123..."
}
.gitignore 忽略 — 克隆仓库后请先运行 update-cache.shjq 过滤器)