- scripts/shop_basket.py: normalize + save structured weekly basket to last-shop.json (git-ignored live data) - SKILL.md: weekly job now persists last-shop.json; new on-demand rule 'add everything from Monday's shop except X' - .gitignore: ignore last-shop.json in both live skill and repo - Weekly cron prompt updated to save basket (still never auto-modifies inventory)
12 lines
401 B
Plaintext
12 lines
401 B
Plaintext
# Live data — keep out of version control.
|
|
# Your current stock and 7-day meal log drift as you eat / the daily job runs.
|
|
inventory.json
|
|
meal-history.json
|
|
# Weekly cuisine pick (regenerated by scripts/pick_cuisine.py; not source).
|
|
cuisine-rotation.json
|
|
# Last generated weekly shop (regenerated by the weekly job; not the inventory).
|
|
last-shop.json
|
|
# Python caches
|
|
__pycache__/
|
|
scripts/__pycache__/
|