The Progress view gives you a concise, visual snapshot of how your week is going without leaving Cody. It surfaces the data already embedded in your tasks — completion timestamps, creation dates, and urgency levels — and turns it into actionable indicators: a rolling chart, weekly totals, a streak counter, and an overload warning when your plate is getting too full.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/miu-ll/Cody-assistant/llms.txt
Use this file to discover all available pages before exploring further.
Accessing the Progress View
Open the assistant panel by clicking your pet (or pressingWin+Shift+C), then select the Progress tab from the navigation bar inside the panel. No additional setup or sync is required — the view is populated entirely from AppState.tasks stored locally.
7-Day Completion Chart
The chart plots the number of tasks you completed on each of the last seven days, including today. Completion is determined by thecompletedAt field on the Task interface:
completedAt timestamp, using your local timezone. Tasks completed more than seven days ago do not appear in the chart but still count toward your streak.
Weekly Stats
Below the chart, two counters summarize the current calendar week (Monday through Sunday):- Completed this week — total tasks with a
completedAtin the current week. - Created this week — total tasks with a
createdAtin the current week, regardless of status.
Streak Tracking
Your streak is the number of consecutive calendar days on which you completed at least one task. The counter resets to zero if a full day passes with no completions.Overload Alert
The overload alert appears when the number of pending tasks in
urgent or high priority — including any that Cody has automatically escalated because they are overdue or due within 24 hours — exceeds an internal threshold. When the alert is shown, Cody recommends reviewing your task list and considering postponing or delegating lower-priority items.- Tasks due within 3 days are escalated to
highpriority. - Tasks due within 24 hours are escalated to
urgentpriority. - Tasks past their
dueAtdate are marked as Overdue.
Day-Status Traffic Light
A color-coded indicator appears in the top bar of the assistant panel at all times, not just in the Progress view. It reflects the current state of your day at a glance:| Color | Meaning | Condition |
|---|---|---|
| 🟢 Green | Under control | No urgent or overdue tasks; no meetings starting within 30 minutes |
| 🟡 Amber | Attention needed | At least one task is due today, or a meeting starts within 30 minutes |
| 🔴 Red | Action required | At least one task is urgent or overdue |
Data Storage
All progress data is derived from thetasks array in AppState, which is persisted locally to %APPDATA%/cody-desktop-assistant/cody-data.json. No data is sent to external services. A daily backup is automatically written to cody-data.backup.json in the same folder, so historical completion data is preserved even if the primary file is ever corrupted.
Export your tasks
You can export all tasks to CSV (compatible with Excel) or back up the full app state to JSON from Settings → Export. This is useful for reviewing long-term trends outside of Cody.
Recurring task completions
When you complete a recurring task (daily, weekly, biweekly, or monthly), the current instance is marked
done and a new instance is automatically created. Each completion counts individually toward your streak and weekly stats.