Commit Workflow Use this skill to turn local repository changes into a clean semantic commit, and optionally push or open a pull request. Workflow 1. Inspect the current branch, git status, unstaged/staged diff, and recent commits. 2. Decide whether the change should be one commit or split into multiple focused commits. 3. Stage only the files that belong to the requested change. 4. Use semantic commit format: . 5. When creating a pull request, create a feature branch first if the current branch is the default branch. 6. Use the repo's existing pull request templates when present. Safety - Do…