Issue Progress Tracking Ceremony guide for tracking GitHub issue progress via CLI. Ensures issues stay updated as work progresses from start to PR. Quick Start --- Phase 1: Start Work Label the issue and create a feature branch: Rules: - Always branch from the default branch (main/dev) - Branch name format: - Never work directly on main/dev --- Phase 2: During Work — Small Commits Commit after each logical step, not at the end. Every commit references the issue: Rules: - One logical change per commit (atomic) - Reference issue in every commit: - Commit early and often — don't accumulate a mas…