877 B
877 B
name, description
| name | description |
|---|---|
| git-master | Commit and release hygiene for safe version-control work. Use when preparing commits, releases, version bumps, publishing, or validating package installation. |
git-master
Use this skill for commit/release hygiene.
Commit rules
- Check
git status --shortbefore staging. - Stage only files related to the current task.
- Keep commits independently revertible.
- Use concise imperative commit messages.
- Do not push or publish unless explicitly requested.
- Do not include secrets, OTPs, local temp files, or generated tarballs.
Release rules
- Run the required verification gate before version bumps.
- Bump version only after tests pass and user confirms publish intent.
- Verify registry after publish with
npm view. - Install through
pi install npm:pi-crewwhen validating Pi package loading.