Run this checklist in order. Report results concisely. Do not give advice or suggest next steps — that's the advisor's job.
- •
Git state
bashgit status
- •
Pull latest
bashgit pull --rebase
- •
Test baseline
bashuv run pytest -q
If any tests fail, flag this immediately — fixing failures is the first priority.
- •
Lint check
bashuv run ruff check src/ tests/ 2>&1 | tail -5
- •
Recent changes
bashgit log --oneline -10
- •
Available work
bashbd ready 2>/dev/null || echo "No beads issues found"
- •
In-progress work
bashbd list --status=in_progress 2>/dev/null || echo "None"
Report each step's result. Keep it compact — one or two lines per step. If everything is green, say so and stop.