From a94646dd67254b8bf94498d4f115a549d8b0610a Mon Sep 17 00:00:00 2001 From: Connor Rhodes Date: Sat, 4 Apr 2026 21:49:03 -0500 Subject: [PATCH] shutdown-routine: check for existing kz task before prompting for build task --- shutdown-routine/SKILL.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/shutdown-routine/SKILL.md b/shutdown-routine/SKILL.md index 3344608..ad14d83 100644 --- a/shutdown-routine/SKILL.md +++ b/shutdown-routine/SKILL.md @@ -68,11 +68,10 @@ Then ask: Take their input and create each task with `vik task create "Task title" d+1` so they show up in tomorrow's briefing. -**Build/Kaizen task:** Before closing out, ask: +**Build/Kaizen task:** Check the `vik task upcoming --days 1` output (already fetched above) for any task with a `kz` label. -> "What's your build task for tomorrow? One thing that will make you more productive in the future." - -If they give you a title, add it with `vik task create "Task title" d+1 --label build`. If they reference an existing task by ID, just acknowledge it — no need to create a new one. +- **If a kz task is already scheduled for tomorrow:** Say something like: "Your build task tomorrow is already set: [task title]." No further action needed. +- **If no kz task is scheduled for tomorrow:** Run `vik task list --label kz` and present the output, then ask: "Which of these do you want as your build task tomorrow?" Once Connor picks one, schedule it with `vik task update --due d+1`. ---