Flow Primitive Commit

Create focused, scoped git commits for the current task. Use when the workflow requires committing work, when only specific files should be staged, when commit messages must be clear and present-tense, or when validating the worktree state before push/archive. Use when this capability is needed.

tomevault-io 6a2e406 2 files · 1.9 KB Updated

File contents

Flow Primitive Commit

Create a reliable commit snapshot that includes only files relevant to the active task.

Workflow

  1. Inspect status:
git status -sb
  1. Stage only task-relevant files:
git add <files...>
  1. Commit with a concise present-tense summary:
git commit -m "Add Web UI release task to workplan"
  1. 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.

tomevault-io/skills-registry/tree/main/soundblaster--xcodemcpwrapper--flow-primitive-commit commit 6a2e4067ae

Frequently asked questions

npx skillmds@latest add tomevault-io/flow-primitive-commit