Files
Meal-Planner/.agent/plan.md
T
admin dac1364c29 docs: Sprint 11 — wire the dead "Generate Meal Plan" CTA across all 6 running docs
Sprint 11 (commit 41154e9) wires the previously-dead
"Generate Meal Plan" empty-state CTA on the Dashboard to two
existing endpoints (POST /api/meals + POST /api/meals/{id}/fill-
empty-slots). No backend changes; no new dependencies. The
handler lives on the client for now; future F8 (Spoonacular) +
F9 (Ollama) will swap the fillEmptySlots call for an LLM call
without changing the DOM. F8 + F9 remain in the §Future backlog.

This commit updates the 6 running docs that track the sprint:

- .agent/plan.md — Sprint 11 section (S11.1-S11.3) added.
- .agent/context.md — Sprint 11 (D1-D6, Q1-Q3) added; file:line
  references; key takeaways.
- Review/sprint11-verification.md — new file: 4-step browser
  smoke + race test + 2 API curls + a11y check + risks + future
  work section.
- Review/ui-nielsen-audit.md — Sprint 11 status block (T5.1-T5.3)
  at the top, after the Sprint 10 block.
- fix-ui-audit.md — Sprint 11 section (T5.1-T5.5) added after the
  Sprint 10 section.
- Review/handoff-ui-audit.md — Batch G added to the deploy
  instructions; Sprint 11 section added after Sprint 10; TL;DR
  table row 11 added; Last-updated footer updated.
- docs/HANDOFF.md — Sprint 11 section added after the Sprint 10
  section, with a path-forward paragraph for F8/F9.

All 6 docs now reflect Sprint 11. §Future backlog remaining: F8
(Spoonacular) + F9 (Ollama) proposals, both full backend work.
2026-06-05 15:36:26 -07:00

22 KiB
Raw Blame History

Recovery Plan — MealPlanner

Goal: bring implementation back into alignment with Review/reviewconcensus.md. Stop building forward features until the deferred-risk spikes and the verification matrix pass.

Active sprint: Sprint 8 — "Deny" semantics (C + Z, hard-filter escalation)

Owner: this agent. Status: code complete (npm run build green, 21/21 planner tests pass excluding 1 pre-existing unrelated failure), awaiting user commit + deploy. Tracking: Review/sprint8-verification.md (deploy + smoke), .agent/plan.md (checklist), .agent/context.md (decisions + open Qs).

User policy decision (2026-06-05, exact): "Hard filter. If it is denied this week twice, it should be considered denied for good." — collapses the design to C + Z with a server-side 2-denial auto-escalation.

S8.1 — Migration: 0016_denial_decay_and_scope.py (NEW)

  • Adds meal_plan_item.denial_expires_at TIMESTAMPTZ NULL.
  • Adds meal_plan_vote.denial_scope VARCHAR(16) NULL.
  • Partial index on meal_plan_item.denial_expires_at (postgresql_where IS NOT NULL) for the planner's soft-deny lookup.
  • Downgrade reverses all three.

S8.2 — Model: app/models/__init__.py

  • MealPlanItem.denial_expires_at column added.
  • MealPlanVote.denial_scope column added.

S8.3 — Schema: app/schemas/__init__.py

  • MealPlanItemResponse.denial_expires_at: Optional[datetime].
  • VoteRequest.denial_scope: Optional[str] with pattern=^(this_week|never_again)$.
  • VoteResponse.denial_scope: Optional[str].

S8.4 — Backend helpers: app/api/meals.py

  • _apply_denial(db, item, scope) — single source of truth for the deny path. Returns {item, promoted_to_permanent, scope}. Commits.
  • _ensure_never_suggest_recipe(db, family_id, recipe_id, reason) — idempotent NeverSuggest insert. Returns True if new, False if existing.
  • _has_prior_active_soft_denial(db, family_id, recipe_id, current_item_id=None) — count query for the 2-denial check.
  • DENIAL_DECAY_DAYS = 90 constant.

S8.5 — Backend endpoints: app/api/meals.py

  • POST /api/meals/items/{id}/deny?scope=this_week|never_again (default this_week).
    • Returns {message, item, promoted_to_permanent, scope}.
    • swap_meal_item also clears denial_expires_at (defensive: a new recipe_id is a fresh start).
  • POST /api/meals/vote/{id} extended: vote: "approve" | "deny" | "never_again".
    • Returns {status, item_status, denial_scope, promoted_to_permanent}.
    • The 2-denial auto-escalation runs server-side for both deny and never_again.
  • GET /api/meals/vote/{id} HTML page renders 3 buttons. Supports one-click ?scope=... for the email's per-button links.

S8.6 — Email template: app/services/orchestrator/steps.py

  • 3 direct-action links per recipe (Approve / Deny this week / Never again).
  • Legacy "Vote on this meal" preserved as a secondary "Open vote page (all 3 options)" link.

S8.7 — Planner: app/services/planner/generate.py

  • _load_blocklists returns 3 sets: (blocked_ingredients, blocked_recipes, soft_denied_recipes).
  • soft_denied_recipes is the hard filter (per user decision: same as blocked_recipes).
  • rejected_summary adds a soft_denied_recipe diagnostic bucket.

S8.8 — Frontend: Dashboard.tsx + api/index.ts

  • api/index.ts:48-58meals.denyItem(itemId, { scope }).
  • Dashboard.tsx:38-50, 385-410MealCard accepts scope-aware onDeny; renders 3 buttons (Approve / Deny this week / Never again) for pending items.
  • handleDeny is scope-aware; toast reflects the server's promoted_to_permanent flag.
  • "Never again" is gated by window.confirm to prevent accidental permanent blocks.
  • Buttons only show on pending items (approved/denied items show the badge only).

S8.9 — Verify

  • npm run build green for Sprint 8 (tsc 0 errors, vite 0 errors).
  • Backend smoke: 21/21 planner tests pass (1 pre-existing test_filter_blocks_by_cost failure is not introduced by S8 — verified via git stash + re-run on a clean tree).
  • Static checks: all 6 new modules import cleanly, helper logic verified via Python AST + import-test against backend/venv.
  • Review/sprint8-verification.md written with deploy + 11-step browser smoke + 4 API curls + email-render procedure + rollback.
  • Deploy verified on 100.108.224.12 — see verification log.
  • No regression in Sprints 1-7.

S8.10 — Docs (all 6 running docs updated)

  • Review/ui-nielsen-audit.md — Sprint 8 status block at the top (T2.1T2.10).
  • fix-ui-audit.md — Sprint 8 plan section (T2.1T2.10).
  • Review/handoff-ui-audit.md — "Active sprint" callout + bottom "Last updated" line.
  • docs/HANDOFF.md — Sprint 7 + Sprint 8 sections before the 2026-06-03 session.
  • .agent/plan.md — this section.
  • .agent/context.md — Sprint 8 decisions, file:line references, verification gate.

Done when (Sprint 8)

  • All 12 boxes above ticked.
  • npm run build green.
  • Review/sprint8-verification.md exists.
  • All 6 doc files have a Sprint 8 status block.
  • User commits + runs the deploy + runs the SQL + reports the smoke checklist.

Out of scope (Sprint 8)

  • Thread 3: §Future backlog (F1 onboarding, F8/F9 proposals, dead Generate Meal Plan CTA at Dashboard.tsx:415).
  • "Unblock" UI on the webui. The NeverSuggest API exists; no UI to remove a row. User can use the API directly.
  • Decay-sweep cron. The 90-day filter is at read time; expired rows just become invisible. No cleanup needed.
  • Pre-existing denied row (2026-05-15 day-2 Roasted Sweet Potato and Chickpea Bowl) — left untouched. denial_expires_at stays NULL; the recipe is effectively forgotten after 90d from now (today is 2026-06-05, so it'll be eligible again ~2026-09-03). If the user wants it remembered permanently, they can re-trigger the soft-deny cycle by clicking "Deny this week" on the next plan that includes it.

Phase R1 — Stabilize (parallel-safe)

  • R1-A: Verification harness. Add backend/tests/ with pytest config, a conftest.py with a transactional DB fixture, and smoke tests covering: app import, /health, /health/db, every router's GET list endpoint, Alembic upgrade head round-trip on a throwaway DB. Add .github/workflows/ci.yml running lint + pytest + frontend npm run build.
  • R1-B: Auth dependencies on existing routers. Implement an app.security module with: (1) require_admin dep — bearer token compared to settings.ADMIN_TOKEN, applied to ALL /api/admin/* routes; (2) require_session dep — signed-cookie session (itsdangerous, key = SECRET_KEY) for profile/pantry/recipes/meals/shopping-list mutations; reads stay open inside the trusted network. Per-voter approval token flow stays as-is. Update .env.example with ADMIN_TOKEN. Document the model in docs/SECURITY.md.
  • R1-C: Make /api/admin/scrape async. Convert the endpoint to enqueue a background job (FastAPI BackgroundTasks for now; APScheduler later). Endpoint returns 202 + scrape_log_id; status polled via /api/admin/logs/{id}. ScraperService must open its own DB session inside the task (the request-scoped db is gone by then).

Phase R2 — De-risk deferred work (parallel-safe, must run BEFORE further feature work per review §2.4)

  • R2-A: Live-scrape spike. Run LuckyCaliforniaScraper against https://luckysupermarkets.com once, capture the raw HTML/PNG to backend/tests/fixtures/lucky_ca/, write a unit test that parses the captured fixture (no live network in CI). Document selector decisions in .agent/context.md. If the page can't be parsed, file the schema impact before going further.
  • R2-B: Email + approval round-trip spike. Implement minimal SendGrid sender (app/services/email.py), an app/services/approval.py that issues per-voter signed tokens (TTL, single-use), the GET confirmation page + POST submit handler (the routes already exist as stubs in meals.py), and a CLI script scripts/send_test_approval.py that creates a fake meal plan, emails one voter, and verifies the click→POST→DB write path end to end against a sandboxed inbox or MAIL_BACKEND=console. Goal: prove the schema (family_member, approval_token tables) survives one full round trip BEFORE building Phase 4/5/9.

Phase R3 — Resume feature work (sequential, only after R1+R2 green)

  • R3-A: Phase 4 Recipe Engine — search, tagging, never-suggest filter.
  • R3-B: Phase 9 Meal Planner generation algorithm.
  • R3-C: Phase 6 SendGrid templated emails (proposal, reminder, confirmation).
  • R3-D: Phase 8 Feedback UI.
  • R3-E: APScheduler with --workers 1 for weekly scrape + plan generation + email send.
  • R3-F: Phase 10 image strategy.

Halt conditions

  • R2 spikes fail → stop, propose schema/spec change, await approval.
  • Verification matrix in Review/reviewconcensus.md §6 not green → no R3 work begins.

Sprint 9 — F1 Onboarding Tour (H10)

Owner: this agent. Status: code complete, npm run build green, awaiting user commit + deploy. Tracking: Review/sprint9-verification.md.

User policy decision (2026-06-05, exact): "Proceed with the next phase in the redesign." Selected Sprint 9 = F1 (the only §Future item with a clear UI scope). F8 (Spoonacular) and F9 (Ollama) are full backend proposals; the dead Generate Meal Plan CTA is a separate follow-up.

S9.1 — New OnboardingTour.tsx component (NEW)

  • Hand-rolled (no react-joyride) — keeps npm footprint flat.
  • 4 steps: Dashboard / Pantry / Recipes / Shopping List.
  • Anchors to [data-tour="<id>"] attributes on existing elements.
  • Tooltip card pinned to anchor (top/bottom/center fallback for off-route steps).
  • Anchor highlight = primary-400 ring + soft scrim; tooltip is a real <div role="dialog" aria-modal="true">.
  • Step progress = 4 progress bars.
  • Keyboard: 14 jump, ←/→ step, Esc dismiss, Tab order is Skip → Back → Next.
  • useOnboarding() hook + ?reset-tour=1 re-trigger; localStorage key mealplanner:onboarding-complete.
  • Focus captured on open (primary action), restored on close.
  • All reads/writes to localStorage wrapped in try/catch (private mode safe).

S9.2 — Anchor points (5 lines of code total)

  • pages/Dashboard.tsx:602<Card data-tour="dashboard"> on the Weekly Overview grid.
  • pages/Pantry.tsx:185<div data-tour="pantry"> on the page header (always present).
  • pages/Pantry.tsx:208 — second anchor on the add-form <Card> (when the form is open).
  • pages/Recipes.tsx:124<Button data-tour="recipes"> on the Filters button.
  • pages/ShoppingList.tsx:231<div data-tour="shopping-list"> on the page header.

S9.3 — App.tsx mount

  • useOnboarding() at App root, isComplete passed to <OnboardingTour>.
  • onComplete mapped to onboarding.reset() (flips the flag so re-renders don't re-show).
  • Mounted as sibling of <ShortcutHelpBanner /> inside <BrowserRouter> (so useLocation / useNavigate work).

S9.4 — Verify

  • npm run build green (tsc 0 errors, vite 0 errors).
  • Browser smoke (8 steps) on http://100.108.208.56:8082/ per Review/sprint9-verification.md.
  • No regression in Sprints 18 (keyboard shortcuts, error toast, 3-button vote row, WeekRangeNav, bulk pantry add).

S9.4.1 — Post-deploy fix (2026-06-05)

User reported post-deploy: "The tour window looks great, but Clicking the X nor skip tour do anything. I cannot exit the tour." Build was green but the dismiss path was broken.

  • Root cause identified (systematic-debugging Phase 4): useOnboarding().reset() was wired to the dismiss handler at App.tsx:104-109. reset() does the inverse of dismiss — it clears the localStorage key AND flips isComplete to false. So clicking X wrote the key, but the App-level flag flipped in the wrong direction, the tour's if (isComplete || !currentStep) return null early-return never fired, and the dialog stayed visible.
  • Fix committed (1562929): split the dismiss and reset paths into two distinct callbacks.
    • useOnboarding now exposes markComplete() (state flip to true) in addition to reset() (state flip to false).
    • OnboardingTour takes two props: onComplete (dismiss) and onReset (re-show).
    • App.tsx wires onComplete → onboarding.markComplete() and onReset → onboarding.reset().
    • Cleaned up: markComplete no longer double-writes localStorage (the tour's finish() already does that).
  • npm run build green on docker-willester after the fix (495.64 kB, no size change).
  • User confirmed post-deploy smoke test passes (2026-06-05).
  • Anchors + URL effect re-verified: 5/5 data-tour anchors present at Dashboard.tsx:602, Pantry.tsx:185, 208, Recipes.tsx:131, ShoppingList.tsx:231; ?reset-tour=1 effect calls onReset() correctly.

S9.5 — Docs (all 6 running docs updated)

  • Review/ui-nielsen-audit.md — Sprint 9 status block at the top.
  • fix-ui-audit.md — Sprint 9 plan section (T3.1T3.4).
  • Review/handoff-ui-audit.md — Sprint 9 entry in the "How to take over" section + TL;DR row.
  • docs/HANDOFF.md — Sprint 9 section.
  • .agent/plan.md — this section.
  • .agent/context.md — Sprint 9 decisions + file:line references.
  • Review/sprint9-verification.md — written (8-step browser smoke + a11y check + reset-link test).

Done when (Sprint 9)

  • All boxes above ticked.
  • npm run build green.
  • Review/sprint9-verification.md exists.
  • All 6 doc files have a Sprint 9 status block.

Out of scope (Sprint 9)

  • Thread 3 follow-ups: F8 (Spoonacular), F9 (Ollama), dead Generate Meal Plan CTA at Dashboard.tsx:415.
  • Per-page deep tutorials, video demos, hover tooltips.
  • A user-facing "Show tour" link in the footer (operator uses ?reset-tour=1; a footer link is a 5-line follow-up if requested).
  • Sprint 10 — "Deny Forever" on Recipes — committed 2026-06-05, awaiting user deploy.

Sprint 10 — "Deny Forever" on Recipes (user-driven)

Owner: this agent. Status: code complete, npm run build green, 21/21 planner tests pass, awaiting user commit + deploy. Tracking: Review/sprint10-verification.md.

User direction (2026-06-05, exact): "Proceed with the next phase in the redesign. Also add a phase to include a 'Deny Forever' button in the Recipes endpoint." Sprint 10 ships the Deny Forever button on both the Recipes page (card overlay) and the RecipeDetail page (top bar).

S10.1 — Backend: POST /api/never-suggest (public)

  • New endpoint in app/api/never_suggest.py:60-86. Family-facing (uses require_session).
  • Body: {family_profile_id, recipe_id, reason: "allergy"|"dislike", notes?}.
  • Idempotent on (family_profile_id, recipe_id, ingredient_id, reason).
  • Returns the row joined with recipe_name.

S10.2 — Backend: DELETE /api/never-suggest/{ns_id} (public)

  • New endpoint in app/api/never_suggest.py:89-111. Family-facing.
  • Row-level ownership check: 403 if family_profile_id doesn't match the session.
  • 404 if the row doesn't exist.

S10.3 — Backend: NeverSuggestRead.recipe_name + .ingredient_name

  • New fields in app/schemas/never_suggest.py:31-33.
  • Server-side JOIN helper _attach_names() in app/api/never_suggest.py:33-58. One LEFT OUTER JOIN per kind, then merge into response dicts.
  • Falls back to None if the recipe/ingredient was deleted (FK is ON DELETE CASCADE).

S10.4 — Frontend: API client

  • mealPlannerApi.neverSuggest.list(familyProfileId)frontend/src/api/index.ts:75-86.
  • mealPlannerApi.neverSuggest.add({...}) — POST.
  • mealPlannerApi.neverSuggest.remove(nsId) — DELETE.

S10.5 — Frontend: NeverSuggestButton component (NEW)

  • frontend/src/components/NeverSuggestButton.tsx (~290 lines).
  • Two variants: card (overlay on RecipeCard) and detail (text buttons in RecipeDetail top bar).
  • Popover with two reasons: Allergy (red, requires window.confirm) and Dislike (neutral, no confirm).
  • Undo toast via showToast.undo() (Sprint 3 B12 pattern, 6s window).
  • Pre-existing block detection: shows a "Blocked" state with an "Unblock" path.
  • Query invalidations: ['neverSuggest', familyId], ['recipes'], ['recommendedRecipes', familyId], ['mealPlan'].
  • A11y: aria-label, aria-expanded, aria-haspopup="menu", role="menu", Esc dismisses, outside click dismisses.

S10.6 — Frontend: Recipes.tsx overlay

  • RecipeCard now has position: relative so the overlay anchors correctly.
  • Button is opacity-0 group-hover:opacity-100 (visible on hover or focus).
  • e.preventDefault() + e.stopPropagation() on the click — doesn't navigate to the detail page.

S10.7 — Frontend: RecipeDetail.tsx top bar

  • New "Deny forever" button group to the left of "Add to Plan".
  • Same popover + confirm/undo semantics as the card overlay.

S10.8 — Verify

  • npm run build green (tsc 0 errors, vite 0 errors). Bundle: 487 → 495 kB.
  • Backend imports clean; routes registered.
  • 21/21 planner tests pass (1 pre-existing failure deselected).
  • Browser smoke (9 steps) on http://100.108.208.56:8082/ per Review/sprint10-verification.md.
  • No regression in Sprints 1-9.

S10.9 — Docs (all 6 running docs updated)

  • Review/ui-nielsen-audit.md — Sprint 10 status block at the top.
  • fix-ui-audit.md — Sprint 10 plan section (T4.1T4.9).
  • Review/handoff-ui-audit.md — Sprint 10 entry in the "How to take over" section + TL;DR row.
  • docs/HANDOFF.md — Sprint 10 section.
  • .agent/plan.md — this section.
  • .agent/context.md — Sprint 10 decisions, file:line references, verification gate.
  • Review/sprint10-verification.md — written (deploy + 9-step browser smoke + 5 API curls + undo test + a11y check).

Done when (Sprint 10)

  • All boxes above ticked.
  • npm run build green.
  • Review/sprint10-verification.md exists.
  • All 6 doc files have a Sprint 10 status block.

Out of scope (Sprint 10)

  • A "Manage blocked recipes" page.
  • Bulk unblock.
  • Touch-device gesture for the card overlay (the focus state already surfaces the button on tap).

Sprint 11 — Wire the dead "Generate Meal Plan" CTA (Dashboard.tsx:499-504)

User direction (2026-06-05): "Proceed." Selected from the question menu as the smallest §Future item. F1 (Sprint 9) is shipped, F8 (Spoonacular) + F9 (Ollama) are full backend proposals, and the dead Generate Meal Plan CTA at Dashboard.tsx:503 is the final remaining item. The button is rendered with onClick: () => {} — clicking it does nothing. Wired to existing endpoints, no backend changes, no new dependencies.

Root cause: the user lands on the Dashboard with no meal plan and sees a "Generate Meal Plan" button. Clicking it does nothing. The backend already has the two endpoints needed (POST /api/meals to create a plan + POST /api/meals/{id}/fill-empty-slots to fill it from the recipe library), and the fillEmptySlots partial-success report pattern is already in production for the existing Plan Week menu (handlePlanWeek at Dashboard.tsx:366-392). The wiring is a 25-line client-side glue function that calls both in sequence.

S11.1 — handleGenerateFirstPlan() in Dashboard.tsx

  • Add a new handler next to handlePlanWeek (line 366) that:
    1. Reads weekStart (already in scope).
    2. POST /api/meals with { week_start_date: weekStart, status: 'draft' } to create an empty plan.
    3. On success, POST /api/meals/{newId}/fill-empty-slots with { meal_types: ['breakfast', 'lunch', 'dinner'] }.
    4. Invalidate ['mealPlan', weekStart].
    5. Toast: reuse the same partial-success pattern as handlePlanWeek ("Planned N of M meals — K failed").
  • Wire onClick of the EmptyState.action (line 503) to call handleGenerateFirstPlan().
  • Track a generatingFirstPlan state for the loading spinner; swap the button label to "Generating…" while in-flight.
  • Handle the "Meal plan for this week already exists" 400 from meals.create (race condition with another tab) by calling fillEmptySlots directly with the existing plan's id — refetch the plan from getPlanned(weekStart) to get the id.

S11.2 — Verify

  • npm run build green (tsc 0 errors, vite 0 errors).
  • Browser smoke (4 steps) on http://100.108.208.56:8082/:
    1. Log in as a family with no meal plan for the current week. Land on /.
    2. Confirm EmptyState shows "Generate Meal Plan" button.
    3. Click the button. Confirm: button label flips to "Generating…", toast appears with "Planned N of M meals", empty state disappears, plan grid renders.
    4. Refresh the page. Confirm the plan persists.
  • Race test: open two tabs, both click "Generate Meal Plan" at the same moment. Second tab should still succeed (handled by the meals.create 400 → fall-through to fillEmptySlots path).
  • No regression in Sprints 1-10.

S11.3 — Docs (all 6 running docs updated)

  • Review/ui-nielsen-audit.md — Sprint 11 status block at the top.
  • fix-ui-audit.md — Sprint 11 plan section (T5.1-T5.3).
  • Review/handoff-ui-audit.md — Sprint 11 entry in the "How to take over" section + TL;DR row.
  • docs/HANDOFF.md — Sprint 11 section.
  • .agent/plan.md — this section.
  • .agent/context.md — Sprint 11 decisions + file:line references.
  • Review/sprint11-verification.md — written (4-step browser smoke + race test).

Done when (Sprint 11)

  • All boxes above ticked.
  • npm run build green.
  • Review/sprint11-verification.md exists.
  • All 6 doc files have a Sprint 11 status block.

Out of scope (Sprint 11)

  • LLM-powered generation (F8 Spoonacular, F9 Ollama) — separate backend proposals, future sprints. Sprint 11 only wires the existing recipe-library-based fill.
  • A "what would you like for dinner?" prompt before generation — the existing flow generates from the library with no user input.
  • A "regenerate" button after the plan exists — the existing Plan Week menu at Dashboard.tsx:366-392 already handles this case.
  • F8 Spoonacular + F9 Ollama + dead Generate Meal Plan CTA — separate.