fridge-tracker

Track fridge and pantry inventory. Add, remove, and list food items with quantities. Triggers on: /fridge, /fridge list, /fridge add <item>, /fridge remove <item>, /fridge clear, or when a user asks what's in the fridge or wants to manage pantry contents.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "fridge-tracker" with this command: npx skills add mary4data/clawbee/mary4data-clawbee-fridge-tracker

Fridge Tracker

Persistent fridge and pantry inventory using SQLite.

Setup

bash skills/fridge-tracker/scripts/init-db.sh

Commands

/fridge list (default)

sqlite3 /data/workspace/pantry.db "SELECT item, quantity, updated_at FROM fridge ORDER BY item;"

Display as a bullet list. If empty: "Fridge is empty. Add items with /fridge add <item> <quantity>"

/fridge add <item> [quantity]

sqlite3 /data/workspace/pantry.db "INSERT OR REPLACE INTO fridge (item,quantity,updated_at) VALUES (lower('<item>'), '<quantity>', datetime('now'));"

Reply: "Added [item] ([quantity]) to fridge."

/fridge remove <item>

sqlite3 /data/workspace/pantry.db "DELETE FROM fridge WHERE item=lower('<item>');"

Reply: "Removed [item]." or "Item not found."

/fridge clear

sqlite3 /data/workspace/pantry.db "DELETE FROM fridge;"

Reply: "Fridge cleared."

Notes

  • Always lowercase item names when storing
  • Data is shared with meal-planner and shopping-agent skills
  • If sqlite3 unavailable, maintain inventory in session memory as fallback

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

meal-planner

No summary provided by upstream source.

Repository SourceNeeds Review
General

price-hunter

No summary provided by upstream source.

Repository SourceNeeds Review
General

orchestrator

No summary provided by upstream source.

Repository SourceNeeds Review
General

fridge-scanner

No summary provided by upstream source.

Repository SourceNeeds Review