Structure recipe folders, audit metadata consistency, and set up configuration files
Help structure and maintain a recipe collection:
Use this skill when:
Examine the collection:
find . -name "*.cook" | head -20
Check for:
Recommend organization by meal type:
recipes/
├── breakfast/
├── lunch/
├── dinner/
├── desserts/
├── snacks/
├── sides/
├── sauces/
├── drinks/
└── config/
├── aisle.conf
└── pantry.conf
Or by cuisine:
recipes/
├── italian/
├── asian/
├── mexican/
├── american/
└── ...
Ask preference and help reorganize if desired.
Check all recipes for:
titleservingstags>> syntaxReport findings and offer to fix.
Create aisle.conf:
[produce]
tomatoes
onions
garlic
lettuce
# ... extract from recipes
[dairy]
milk
butter
cheese
eggs
[meat]
chicken
beef
pork
[pantry]
flour
sugar
rice
pasta
Create pantry.conf:
[pantry]
salt
pepper
olive oil
# ... common staples
[fridge]
butter
eggs
[freezer]
# items you keep stocked
Offer to:
User: "Help me organize my recipes"
Analysis output:
Recipe Collection Analysis
==========================
Found 47 recipes in 3 directories:
- ./recipes/ (32 files, no subdirectories)
- ./old/ (10 files)
- ./to-try/ (5 files)
Metadata Issues:
- 12 recipes missing 'servings'
- 8 recipes missing 'tags'
- 3 recipes using deprecated >> syntax
- Inconsistent tags: "Italian" vs "italian" vs "ITALIAN"
Configuration:
- No aisle.conf found
- No pantry.conf found
Recommendations:
1. Create meal-type folders (breakfast, lunch, dinner, etc.)
2. Add missing servings to 12 recipes
3. Standardize tags to lowercase
4. Create aisle.conf with 45 unique ingredients
5. Set up pantry.conf with common staples
User: "Create an aisle.conf for my recipes"
Generated aisle.conf:
# Aisle configuration for shopping lists
# Customize sections to match your grocery store
[produce]
tomatoes
onion
garlic
bell pepper
lettuce
carrots
potatoes
lemon
[dairy]
milk
butter
eggs
parmesan
mozzarella
cream
[meat]
chicken breast
ground beef
bacon
pancetta
[seafood]
salmon
shrimp
[bakery]
bread
[pantry]
olive oil
flour
sugar
pasta
rice
canned tomatoes
[spices]
salt
pepper
oregano
basil
cumin
[frozen]
frozen peas
By meal:
breakfast/ lunch/ dinner/ desserts/ snacks/ sides/ sauces/
By cuisine:
italian/ asian/ mexican/ indian/ american/ mediterranean/
By diet:
vegetarian/ vegan/ gluten-free/ keto/ quick-meals/
Recommended fields for every recipe:
---