From dc86b18a445704576bd077880edec0074adda7e8 Mon Sep 17 00:00:00 2001 From: wassname <1103714+wassname@users.noreply.github.com> Date: Fri, 17 Apr 2026 06:14:30 +0800 Subject: [PATCH] Add lgtm: prefix to done_criterion in widget Gives context that this is what the human is signing off on. Co-Authored-By: Claude Sonnet 4.6 --- src/ui/task-widget.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/task-widget.ts b/src/ui/task-widget.ts index 5d2b0d1..5611be5 100644 --- a/src/ui/task-widget.ts +++ b/src/ui/task-widget.ts @@ -193,7 +193,7 @@ export class TaskWidget { lines.push(truncate(text + suffix)); if (!isActive && task.status !== "completed" && (task as any).done_criterion) { - lines.push(truncate(` ${(task as any).done_criterion}`)); + lines.push(truncate(` lgtm: ${(task as any).done_criterion}`)); } }