Git commit hygiene
Skill planifest/planifest-framework/planifest-framework/external-skills/git-commit-hygiene
A specification framework for agentic development. Agents build from complete specs - not guesses.
npx -y skills add planifest/planifest-framework --skill git-commit-hygieneAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Enforce atomic commits, clear commit messages, and auditable change intent before push or review. Use when commit granularity, message clarity, and traceability must be improved; do not use for CI workflow design or application behavior implementation.
SKILL.md
2.1 KB, 380 tokens by cl100k_base, as published. Nobody here has run it
Git Commit Hygiene
Overview
Use this skill to create commit history that reviewers can reason about and operators can bisect safely.
Scope Boundaries
- Use this skill when the task matches the trigger condition described in
description. - Do not use this skill when the primary task falls outside this skill's domain.
Shared References
- Commit message quality rules:
references/commit-message-quality-rules.md
Templates And Assets
- Commit slicing checklist:
assets/commit-slicing-checklist.md
- Commit message template:
assets/commit-message-template.txt
Inputs To Gather
- Changed files and logical change boundaries.
- Team commit message conventions and compliance constraints.
- Risk profile of the change set (critical path vs local refactor).
- Required verification scope before push.
Deliverables
- Logical commit slicing plan.
- Commit messages with explicit intent/rationale.
- Verification notes per commit (tests/checks run).
- Traceability-ready history for review and rollback.
Workflow
- Separate unrelated changes using
assets/commit-slicing-checklist.md. - Write commit messages from
assets/commit-message-template.txtandreferences/commit-message-quality-rules.md. - Ensure each commit is independently reviewable and reversible.
- Run required tests/checks before push.
- Re-check history for mixed intent, hidden generated noise, and sensitive content.
Quality Standard
- Each commit has one primary behavioral intent.
- Messages explain why and risk, not only file changes.
- Commit sequence is bisect-friendly for regression analysis.
- Sensitive data never appears in staged history.
Failure Conditions
- Stop when a commit mixes unrelated behavior changes.
- Stop when a commit cannot be validated independently.
- Escalate when traceability/compliance requirements cannot be met with current history.
What ships with it: 1 file
11.3 KB alongside SKILL.md
- attribution.txt11.3 KB