this repo has no description
1# Agent Instructions
2
3This project uses **bd** (beads) for issue tracking. Run `bd onboard` to get started.
4
5## Quick Reference
6
7```bash
8bd ready # Find available work
9bd show <id> # View issue details
10bd update <id> --status in_progress # Claim work
11bd close <id> # Complete work
12bd sync # Sync with git
13```
14
15## Landing the Plane (Session Completion)
16
17**When ending a work session**, you MUST complete ALL steps below. Work is NOT complete until `git push` succeeds.
18
19**MANDATORY WORKFLOW:**
20
211. **File issues for remaining work** - Create issues for anything that needs follow-up
222. **Run quality gates** (if code changed) - Tests, linters, builds
233. **Update issue status** - Close finished work, update in-progress items
244. **PUSH TO REMOTE** - This is MANDATORY:
25 ```bash
26 git pull --rebase
27 bd sync
28 git push
29 git status # MUST show "up to date with origin"
30 ```
315. **Clean up** - Clear stashes, prune remote branches
326. **Verify** - All changes committed AND pushed
337. **Hand off** - Provide context for next session
34
35**CRITICAL RULES:**
36- Work is NOT complete until `git push` succeeds
37- NEVER stop before pushing - that leaves work stranded locally
38- NEVER say "ready to push when you are" - YOU must push
39- If push fails, resolve and retry until it succeeds
40