ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

weekly-menu

Generate a weekly meal plan with images, recipes, and shopping lists. Searches Xiaohongshu (小红书) for trending seasonal recipes, creates a beautifully formatted Feishu document with photos, source links, headings (for table of contents navigation), and checkboxes, and stores it in the receipts folder. Default: 20 dishes across 6 categories. Use when: user asks for meal planning, weekly menu, "出菜单", "这周吃什么", "推荐菜", "下周菜单", or any food/cooking planning request.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/beginnerrudy/weekly-menu
Or

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.

Metadata

Stars4473
Views1
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-beginnerrudy-weekly-menu": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.