Flow Primitive Commit
Create a reliable commit snapshot that includes only files relevant to the active task.
Workflow
- •Inspect status:
bash
git status -sb
- •Stage only task-relevant files:
bash
git add <files...>
- •Commit with a concise present-tense summary:
bash
git commit -m "Add Web UI release task to workplan"
- •Verify post-commit state:
bash
git status -sb
Rules
- •Keep commits scoped to one task/PRD change.
- •Prefer explicit file staging over
git add .. - •Use present-tense commit subjects.
- •Split mixed deliverables into multiple commits when reviewability improves.
- •Do not amend or rewrite history unless explicitly requested.