forked from Rockachopa/Timmy-time-dashboard
Update GitHub URLs, clone commands, CI badge links, GitHub Pages URL, agent team name, and hardcoded macOS paths in handoff scripts to reflect the new GitHub username. Handoff scripts now use relative paths instead of hardcoded /Users/apayne paths. https://claude.ai/code/session_01GMiccXbo77GkV3TA69x6KS
36 lines
671 B
Bash
Executable File
36 lines
671 B
Bash
Executable File
#!/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 ""
|