#!/bin/bash # Kimi Bootstrap - Run this to continue work echo "=== Kimi Handoff Bootstrap ===" echo "" cd "$(dirname "$0")/.." echo "📋 Current Checkpoint:" cat .handoff/CHECKPOINT.md | head -30 echo "" echo "---" echo "" echo "🔧 Git Status:" git status --short echo "" echo "📝 Recent Commits:" git log --oneline -3 echo "" echo "✅ Test Status:" source .venv/bin/activate && make test 2>&1 | tail -3 echo "" echo "🎯 Next Task (from TODO.md):" grep "\[ \]" .handoff/TODO.md | head -5 echo "" echo "================================" echo "To continue, paste this to Kimi:" echo "" echo " Continue from checkpoint. Read .handoff/CHECKPOINT.md" echo ""