2026-02-22 19:37:15 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
# One-liner to get status and prompt for Kimi
|
|
|
|
|
|
2026-02-24 17:05:16 +00:00
|
|
|
cd "$(dirname "$0")/.."
|
2026-02-22 19:37:15 -05:00
|
|
|
|
|
|
|
|
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 ""
|
2026-02-24 17:05:16 +00:00
|
|
|
echo "cd Timmy-time-dashboard && cat .handoff/CHECKPOINT.md"
|
2026-02-22 19:37:15 -05:00
|
|
|
echo ""
|
|
|
|
|
echo "Continue from checkpoint. Read the file above and execute the NEXT TASK from .handoff/TODO.md. Run 'make test' after changes."
|
|
|
|
|
echo ""
|