wave-feature-branch-pr-merge-prune-pattern

For large multi-wave projects, the canonical delivery pattern is: feature branch per wave → PR → merge to main → STATE.md update → immediately delete the feature branch both locally and remotely. Keeping merged branches creates ambiguity about which branches are active. After every PR merge, run git push origin --delete <branch> and git branch -d <branch> in the same operation.