Weekly Meal Planner

v1.0.0

Weekly meal planner - input people count, budget, taste preference → output 7-day menu with breakfast/lunch/dinner and shopping list

0· 160·0 current·0 all-time
byhaidong@harrylabsj

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for harrylabsj/weekly-meal-planner.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Weekly Meal Planner" (harrylabsj/weekly-meal-planner) from ClawHub.
Skill page: https://clawhub.ai/harrylabsj/weekly-meal-planner
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install weekly-meal-planner

ClawHub CLI

Package manager switcher

npx clawhub@latest install weekly-meal-planner
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description state a weekly meal planner and the included script implements exactly that (menu generation, shopping list, cost estimates). Required capabilities (none) match the simple local Python implementation.
Instruction Scope
SKILL.md instructs running the bundled Python script. The script only reads command-line args, uses built-in data, prints output, and writes menu_plan.json in the current directory — no external network calls, no reading of unrelated system files, and no environment variables are accessed.
Install Mechanism
There is no install spec; this is instruction-only plus a local script. No archives or remote downloads are performed or required.
Credentials
The skill requests no environment variables, no credentials, and no config paths. The script only uses provided CLI args and local in-code data structures.
Persistence & Privilege
always is false and the skill does not modify agent/system configuration. It does persist output to a local file (menu_plan.json) in the working directory, which is expected behavior for this utility.
Assessment
This skill appears coherent and local-only. Before running: (1) review the script if you want to confirm behavior (it is short and readable); (2) note it writes menu_plan.json to the current working directory — run it in a safe folder if you care about where files land; (3) SKILL.md is slightly ambiguous about whether --budget is per-person or total, but the script treats --budget as per-person per day (check your inputs); (4) no network or credential access is requested. If you plan to allow autonomous invocation, be aware the skill will only run the local script and write a JSON file — there is no external exfiltration visible in the code.

Like a lobster shell, security has layers — review code before you run it.

latestvk9797qadqcrx85ezs1yqchgyhn83k3ng
160downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Meal Planner

Weekly meal planning assistant for families.

Input

  • Number of people
  • Daily budget (per person or total)
  • Taste preference (light/spicy/sweet/balanced)

Output

  • 7-day menu (breakfast/lunch/dinner)
  • Shopping list with estimated prices
  • Budget summary

Constraints

  • ❌ No detailed recipe steps
  • ❌ No food delivery recommendations
  • ❌ No allergy detection

Usage

python3 scripts/meal-planner.py --people 3 --budget 50 --taste light

Comments

Loading comments...