Weekly Meal Planner: Claude skill | implexa
back to searchclawhub
Weekly Meal Planner Weekly meal planner - input people count, budget, taste preference → output 7-day menu with breakfast/lunch/dinner and shopping list
copies:
implexa run clawhub/weekly-meal-planner view source
SKILL.md ---
name: meal-planner
description: Weekly meal planner - input people count, budget, taste preference → output 7-day menu with breakfast/lunch/dinner and shopping list
---
# 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
```bash
python3 scripts/meal-planner.py --people 3 --budget 50 --taste light
```
related skills semantically similar in the cross-vendor index
don't have the plugin yet? install it then click "run inline in claude" again.
+ clearly scopes constraints upfront (no recipes, no allergies, no delivery) which prevents scope creep
+ input parameters are concrete and well-defined (count, budget, taste preference)
+ output contract explicitly lists deliverables (menu, shopping list, budget summary) weaknesses
~ procedure is a CLI invocation, not a step-by-step workflow or algorithm; no description of how meal selection, budget enforcement, or list generation actually work ~ no edge cases documented: what happens if budget is too low, taste preference is unrecognized, or people count is zero or negative ~ trigger phrases missing entirely; no examples of natural language or API calls that invoke this skill in a workflow