From 82ce8a31cf81ccc76b5499f382340c875ad1b42f Mon Sep 17 00:00:00 2001 From: Alexander Payne Date: Sun, 22 Feb 2026 19:37:15 -0500 Subject: [PATCH] chore: add resume.sh one-liner for handoff --- .handoff/resume.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 .handoff/resume.sh diff --git a/.handoff/resume.sh b/.handoff/resume.sh new file mode 100755 index 00000000..fe5eb448 --- /dev/null +++ b/.handoff/resume.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# One-liner to get status and prompt for Kimi + +cd /Users/apayne/Timmy-time-dashboard + +echo "=== STATUS ===" +git log --oneline -1 +git status --short +echo "" +echo "Tests: $(make test 2>&1 | grep -o '[0-9]* passed' | tail -1)" +echo "" + +echo "=== PROMPT (copy/paste to Kimi) ===" +echo "" +echo "cd /Users/apayne/Timmy-time-dashboard && cat .handoff/CHECKPOINT.md" +echo "" +echo "Continue from checkpoint. Read the file above and execute the NEXT TASK from .handoff/TODO.md. Run 'make test' after changes." +echo ""