From 31efcffb19d0cc043b611e34592c96db5a6bd606 Mon Sep 17 00:00:00 2001 From: Yanxin Lu Date: Sun, 22 Mar 2026 16:09:45 -0700 Subject: [PATCH] calendar: fix completed field name from todoman --porcelain output --- skills/calendar/scripts/cal_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/calendar/scripts/cal_tool.py b/skills/calendar/scripts/cal_tool.py index 36f41e0..1c1ed96 100644 --- a/skills/calendar/scripts/cal_tool.py +++ b/skills/calendar/scripts/cal_tool.py @@ -593,7 +593,7 @@ def _format_todo_digest(todos): days = _days_until(due) urgency = _urgency_label(days) desc = t.get("description") or "" - is_completed = t.get("is_completed", False) + is_completed = t.get("completed", False) if is_completed: line = f" • ✅ {summary} (已完成)"