Create Pull Request Branch Strategy - Target branch : (development branch, cloud production) - is the release branch — never PR directly to main Steps 1. Gather context (run in parallel) - — current branch name - — uncommitted changes - — remote tracking status - — unpushed commits - — existing PR - — change summary 2. Handle uncommitted changes on default branch If current branch is (or ) AND there are uncommitted changes: 1. Analyze the diff ( ) to understand the changes 2. Infer a branch name from the changes, format: (e.g. ) 3. Create and switch to the new branch: 4. Stage relevant files:…