Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

weekly-menu每周菜单

Agent Skill

weekly-menu 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,518

周安装

280

GitHub Stars

公开资料未说明

下载量

2,285
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:weekly-menu(每周菜单)
来源仓库:https://github.com/beginnerrudy/weekly-menu
安装命令:
openclaw skills install weekly-menu
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install weekly-menu

简介

生成带图像的每周膳食计划与购物清单。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

  • 搜索小红书流行食谱并按季节推荐菜品。
  • 输出精美排版便于打印或手机查看。weekly-menu 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 食材采购以本地市场供应为准,价格仅供参考。
  • 建议根据个人口味调整烹饪方法与调料用量。

SKILL.md

name
weekly-menu
description
|

Weekly Menu Skill

Generate a weekly meal recommendation document with images and Xiaohongshu source links, stored as a Feishu doc in the receipts folder.

Prerequisites

  • agent-reach skill installed (Xiaohongshu channel configured)
  • Feishu channel configured with permissions: docx:document, docx:document:create, drive:drive
  • User profile at meals/profile.yaml (see references/profile-template.yaml)

Workflow

1. Load User Profile

Read meals/profile.yaml for:

  • location — determines seasonal ingredients
  • household.portions — serving size
  • cooking.equipment — available appliances (air fryer, pressure cooker, etc.)
  • cooking.timeAvailable — quick/moderate/slow
  • cooking.spiceTolerance — none/mild/medium-hot/hot
  • preferences.cuisinesFavourite — preferred cuisines
  • preferences.explorationLevel — conservative/adventurous
  • schedule.cookingDays — how many days per week

If profile doesn't exist, ask user the basics and create one from references/profile-template.yaml.

2. Search for Recipe Inspiration

Use agent-reach Xiaohongshu search to find trending recipes:

mcporter call 'xiaohongshu.search_feeds(keyword: "<search_term>")'

Search strategy (3-5 searches):

  • Current season + location + "时令菜"
  • Equipment-specific: "空气炸锅 家常菜", "高压锅 菜谱"
  • Cuisine preference: "川菜 家常", "苏菜 做法"
  • General: "一周菜谱 简单好吃"

Pick the top results by likes/collects. Aim for 20 candidate dishes across 6 categories:

  • 🌿 春季时令 (seasonal)
  • 🔥 空气炸锅 (air fryer)
  • 🍲 高压锅硬菜 (pressure cooker)
  • 🌶️ 下饭菜 (rice killers)
  • 🏠 经典家常 (classic home cooking)
  • 🍳 快手 & 主食 (quick meals & staples)

3. Compose the Menu

Organize 20 dishes into 6 themed sections based on equipment, cuisine, and cooking method:

  • Balance variety: don't repeat proteins or methods within a section
  • Each dish needs: number (①-⑳), name, one-line description, cooking time, equipment used

4. Download Dish Images

Download a representative image for each dish (from Unsplash or similar free sources — Xiaohongshu CDN blocks direct downloads):

curl -sL --connect-timeout 10 --max-time 20 -o ./tmp/dishes/01-name.jpg "<url>"

Store in workspace/tmp/dishes/. Verify each file is a valid JPEG/PNG (not empty or HTML error).

5. Create Feishu Document

Read references/feishu-doc-recipe.md for the full Feishu API procedure.

Summary:

  1. Create doc with title 🍽️ YYYY-MM-DD 推荐菜单 (Monday's date) in receipts folder
  2. Grant user full_access permission
  3. Insert blocks in ≤50-block batches. For each dish, create these blocks in order:

- heading3 (block_type 5) — dish name, enables table of contents navigation - todo/checkbox (block_type 17, done: false) — same dish name, for user to check off - text (block_type 2) — description + cooking time - empty image (block_type 27) — placeholder, filled later - text with link — "📌 小红书菜谱" linking to XHS post

  1. After all text blocks inserted, fill images: upload to drive → patch with replace_image
  2. Sections separated by divider (block_type 22) + heading2 (block_type 4)

Key constraints:

  • Max 50 blocks per insert call — split 20 dishes into 4 batches (~25 blocks each)
  • Max 3 edits/second per document — use time.sleep(0.4) between API calls
  • Image blocks must be created empty ({"block_type": 27, "image": {}}) then filled via patch
  • Insert batches bottom-to-top when adding blocks to avoid index shifting

6. Share Result

Send the document link to the user in chat. Format:

🍽️ 本周菜单已出炉!20 道菜已备好

👉 <document_url>

打开文档,从目录浏览所有菜,勾选你想做的~

7. Update History

Append the week's menu to meals/history.yaml for future reference and to avoid repeats.

Config

KeyLocationDescription
User profilemeals/profile.yamlTaste preferences and constraints
Receipts folderFeishu driveToken stored in MEMORY.md
Meal historymeals/history.yamlPast menus to avoid repeats

File References

  • references/profile-template.yaml — blank user profile template
  • references/feishu-doc-recipe.md — step-by-step Feishu document creation API guide

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.11%
按下载量换算1,831

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills