#!/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 "🔧 Git Status:"
git status --short
echo "📝 Recent Commits:"
git log --oneline -3
echo "✅ Test Status:"
source .venv/bin/activate && make test 2>&1 | tail -3
echo "🎯 Next Task (from TODO.md):"
grep "\[ \]" .handoff/TODO.md | head -5
echo "================================"
echo "To continue, paste this to Kimi:"
echo " Continue from checkpoint. Read .handoff/CHECKPOINT.md"