name: 'Commit Changes' description: 'Stage files and create a conventional commit with a well-formed message.'
-
Review changes: Run
git statusandgit diffto understand what changed. -
Run quality checks: Before committing, ensure
pnpm lint:affected,pnpm ts:affected, andpnpm test:affectedall pass. -
Stage specific files: Add files individually by name. Never use
git add .orgit add -Ato avoid accidentally staging sensitive or unrelated files. -
Write a conventional commit message following this format:
<type>(<scope>): <description>- Types:
feat,fix,docs,style,refactor,perf,test,chore,revert - Scopes:
nx,rule,shared,script - Use imperative mood, lowercase, no trailing period, max 100 characters
- Examples:
feat(rule): add vehicle definition validationfix(shared): prevent racing of requestsrefactor(rule): extract helper for document matching
- Types:
-
Create the commit: Use
git commit -m "<message>". If a pre-commit hook fails, fix the issue and create a new commit (do not amend).