| name | phase-commit |
| description | Create one local commit for a completed, validated, and reviewed unit of work. Use only when the user explicitly requests a commit without pushing or other delivery actions. |
Phase Commit
Create one isolated local commit without changing history or external state.
Workflow
- Confirm required repository checks and applicable validation and review cover the exact intended content.
- Inspect status, staged and unstaged changes, and relevant untracked files; preserve all unrelated user work.
- Stop when scope is ambiguous or includes sensitive, unexpectedly generated, or otherwise unsafe paths.
- Stage only explicit paths with
git add -- <paths>; never use broad staging commands or globs.
- Review the staged path list and diff against the requested unit.
- Draft the commit subject and body using repository conventions, then use
english-text-review and apply its material findings without changing technical meaning.
- Commit without bypassing hooks or changing signing policy.
- Verify the created commit content and remaining worktree.
Do not amend, rewrite history, push, create branches or pull requests, manage CI, tag, release, or include unrelated changes.
On hook or commit failure, stop and report the blocker without claiming completion.
Finish only after verifying the created commit, then report its hash and concise summary.