You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace the current single-project limitation with full CRUD project management. Users can create, rename, open, and delete projects with persistent SQLite storage.
User Story
As a user, I want to save my canvas state and load it later, so I don't lose work when I close the browser tab.
Scope
Project list view (sidebar or dedicated page)
Create new project
Open existing project
Rename project
Delete project (with confirmation)
Project switching without losing state
Auto-save every 2 minutes
Tradeoffs / Optionality
Sidebar vs Dedicated Page
Sidebar (recommended):
Pros: Always visible, quick switching, feels like Figma/VS Code
Cons: Takes canvas real estate, needs collapsible design
Dedicated Page:
Pros: Full project management (thumbnails, search, sorting)
Cons: Context switch away from canvas, slower workflow
Decision: Start with sidebar for MVP, add dedicated dashboard later.
Auto-Save Strategy
Option A: Timer-based (every 2 min)
Simple, predictable
May save mid-generation
Option B: Event-based (after generation completes, on navigation)
More efficient
Risk of losing work on crash
Decision: Timer-based with debounce (500ms) and explicit "Save" button for peace of mind.
TL;DR
Replace the current single-project limitation with full CRUD project management. Users can create, rename, open, and delete projects with persistent SQLite storage.
User Story
Scope
Tradeoffs / Optionality
Sidebar vs Dedicated Page
Sidebar (recommended):
Dedicated Page:
Decision: Start with sidebar for MVP, add dedicated dashboard later.
Auto-Save Strategy
Option A: Timer-based (every 2 min)
Option B: Event-based (after generation completes, on navigation)
Decision: Timer-based with debounce (500ms) and explicit "Save" button for peace of mind.
Technical Considerations
References
docs/prd-v2.mdFeature 3 (Projects Management)