$npx -y skills add skvdhshuk-blip/hao-code --skill commitCreate a git commit with staged changes
| 1 | Create a git commit following these steps: |
| 2 | |
| 3 | 1. Run `git status` to see all staged and unstaged changes |
| 4 | 2. Run `git diff --cached` to see staged changes |
| 5 | 3. If nothing is staged, run `git add -A` to stage all changes |
| 6 | 4. Look at recent `git log --oneline -5` for commit message style |
| 7 | 5. Write a clear, descriptive commit message |
| 8 | 6. Create the commit with: `git commit -m "message"` |
| 9 | |
| 10 | The commit message should: |
| 11 | - Use the imperative mood |
| 12 | - Be under 72 characters |
| 13 | - Accurately describe the changes |
| 14 | |
| 15 | $ARGUMENTS |