Saved recipes: save, notes, star rating, manual style tags (Free tier) #24
Labels
No labels
accessibility
backlog
beta-feedback
bug
duplicate
enhancement
feature-request
help wanted
invalid
needs-design
needs-triage
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Circuit-Forge/kiwi#24
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Allow users to bookmark any recipe from search results or the browser. Free tier feature.
DB Changes
saved_recipestable —id,recipe_id(FK to recipes),saved_at,notes(text),rating(0–5 integer, nullable),style_tags(JSON array), UNIQUE onrecipe_id(one save per recipe per user per-user SQLite)Store Methods
save_recipe(recipe_id, notes, rating) -> dictunsave_recipe(recipe_id) -> Noneis_recipe_saved(recipe_id) -> boolupdate_saved_recipe(recipe_id, notes, rating, style_tags) -> dictget_saved_recipes(sort_by="saved_at", collection_id=None) -> list[dict]saved_at,rating,titleAPI Endpoints
New file:
app/api/endpoints/saved_recipes.pyPOST /recipes/saved—{recipe_id, notes?, rating?}DELETE /recipes/saved/{recipe_id}PATCH /recipes/saved/{recipe_id}— update notes/rating/style_tagsGET /recipes/saved?sort_by=&collection_id=Schema
New file:
app/models/schemas/saved_recipe.py—SaveRecipeRequest,UpdateSavedRecipeRequest,SavedRecipeSummaryFrontend
RecipeDetailPanel.vueSaveRecipeModal.vue— notes textarea, 0–5 star rating widget, style tag chips (free-text, Enter/comma to add)SavedRecipesPanel.vue— flat list with sort controls, recipe cards showing rating + tags + notes previewRecipesView.vue(tab bar: Find / Browse / Saved)Also consider
saved_recipes) — low effort, same passapp/services/export/spreadsheet_export.py)Spec
circuitforge-plans/kiwi/superpowers/specs/2026-04-07-saved-recipes-browser-design.mdsection 3