Flow Primitive Commit
Create a reliable commit snapshot that includes only files relevant to the active task.
Workflow
- Inspect status:
git status -sb
- Stage only task-relevant files:
git add <files...>
- Commit with a concise present-tense summary:
git commit -m "Add Web UI release task to workplan"
- Verify post-commit state:
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.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.