-
-
Notifications
You must be signed in to change notification settings - Fork 3
Features
A complete walkthrough of EverShelf's features.
- Tap ➕ to open the add form
- Search by name or scan a barcode
- Select storage location: Pantry, Fridge, Freezer, or a custom location
- Enter quantity and expiry date (or let AI estimate it)
- Mark as vacuum-sealed or opened for adjusted shelf-life calculation
Tap the barcode icon to open the camera scanner (QuaggaJS). The app:
- Checks your local database first
- Falls back to Open Food Facts for unknown barcodes
- Pre-fills the product form with name, brand, category
Point the camera at any product — Gemini identifies it and:
- Shows matching products already in your pantry first
- Suggests a new product entry with pre-filled fields
- Provides a storage location hint and estimated shelf-life
| Location | Icon | Notes |
|---|---|---|
| Pantry | 🏠 | Room temperature |
| Fridge | ❄️ | Refrigerated |
| Freezer | 🧊 | Frozen |
| Custom | 📦 | Any name you choose |
When you partially use a product and mark it as "opened":
- Shelf-life is recalculated from the opening date
- Uses AI (Gemini) + per-category rules (e.g. fish: 2 days, milk: 3 days)
- Whole sealed packages always keep their original manufacturer expiry
- Products with mixed whole + fractional units show as two separate entries
Mark any product as vacuum-sealed to extend its estimated expiry date (typically 2–3× the normal shelf-life).
All AI features require a GEMINI_API_KEY in .env. They degrade gracefully when the key is missing or quota is exceeded.
Photograph the label on a product — Gemini extracts the expiry date and fills the field automatically.
Camera-based identification with pantry matching. See Adding Products above.
When adding a new product, a background Gemini call suggests:
- Optimal storage location
- Estimated shelf-life in days
Shown as an inline AI badge next to the expiry estimate. Does not block the form.
Tap 🍳 Ricette → Genera ricetta to get a recipe using:
- Ingredients about to expire (prioritised)
- What's currently in your pantry
- Your language preference
Recipes stream live via Server-Sent Events so results appear as they are generated.
Open 💬 Chat to ask questions like:
- "Cosa posso fare con le uova e la pasta?"
- "Quanti giorni dura il prosciutto cotto aperto in frigo?"
- "Suggeriscimi uno spuntino veloce"
The assistant knows your current inventory.
Smart shopping predictions include a short AI-generated practical tip per item (e.g. "Buy the 2 kg bag — it freezes well").
When the dashboard shows a suspicious quantity banner, tap 🤖 Spiega to get a plain-language explanation of why the discrepancy likely occurred and what to do about it.
All AI endpoints try gemini-2.5-flash first and automatically fall back to gemini-2.0-flash if unavailable.
Configure BRING_EMAIL and BRING_PASSWORD in .env to enable.
- View and manage your Bring! list inside EverShelf
- Auto-add on depletion — when stock hits zero, the product is added to Bring! automatically
- Auto-remove on scan — scanning a product in removes it from the shopping list
- Generic names — products are grouped by type ("Latte", "Panna da cucina") not brand, keeping the list clean
- Auto-migration — items already on Bring! are silently renamed to their generic name on list load
- Catalog coverage — 100+ product types mapped to Bring! catalog keys for icons and categories in the Bring! app
- AI fallback — unknown product types use Gemini to determine the best generic name
Start cooking mode from any recipe by tapping ▶ Avvia cottura.
- Step-by-step guidance — fullscreen, distraction-free interface
-
Text-to-Speech — each step is read aloud automatically when you navigate; supports:
- Browser Web Speech API (default)
- Native Android TTS (kiosk app)
- Custom REST endpoint (e.g. Home Assistant)
- Built-in timers — automatic timer suggestions based on recipe text; 10-second vocal countdown warning before expiry
- Ingredient tracking — mark ingredients as used; leftover quantities prompt a "move to another location" flow
- Recipe completion — "Buon appetito!" spoken on the last step
Three stat cards at the top show item counts for Pantry, Fridge, and Freezer with animated skeleton loading while data fetches.
Priority-sorted notifications for:
- Expired products (with safety assessment — green ✅ safe, amber 👀 check, red 🚫 danger)
- Products expiring within 3 days
Actions per item: Use, Throw away, Edit, Dismiss. Swipe or tap arrows to navigate.
Highlights suspicious quantities (e.g. "You have 0 eggs but used 12 this month"). Actions:
- One-tap correction to the suggested quantity
- Inline edit with free-form quantity
- "🤖 Spiega" for AI explanation
- Dismiss (with current quantity shown: "La quantità è giusta (2 pz)")
Shows your waste rate vs. the national average with an estimated annual kg of food wasted.
One-tap recipe suggestion using the ingredients closest to expiry.
EverShelf is installable as a PWA on any device:
- Open in Chrome/Safari/Edge
- Tap "Add to Home Screen" (browser menu)
- Launch from the home screen like a native app
Features:
- Offline-capable shell (assets cached)
- Full-screen mode on mobile
- Multi-device: all data syncs via the shared server
When a new EverShelf release is published on GitHub, a small pill appears in the header. Click it to see the changelog. Checked on load and every 30 minutes.
The app auto-detects your browser language. Supported: 🇮🇹 Italian, 🇬🇧 English, 🇩🇪 German.
Change the language in Settings → Language.
See Translations to add a new language.
Settings → Storico shows all inventory operations (adds, uses, throws).
- Any operation within the last 24 hours shows a red ↩ undo button
- Tapping ↩ shows a 5-second countdown confirmation before reversing the transaction
- The original stock is restored and a counter-transaction is logged
- API keys never exposed to the browser (
get_settingsreturns boolean flags only) -
save_settingsprotected by optionalSETTINGS_TOKEN(validated withhash_equals) -
DEMO_MODE=trueblocks all write operations at the PHP router level - Parameterized SQL queries (PDO prepared statements) throughout
- Input validation on all inventory operations (quantity bounds, location whitelist)
- See Configuration for details