Change Plan + Conventional Commits
Commit Prefixes
This repo uses Conventional Commits: feat:, fix:, refactor:, docs:, test:, chore:.
Key Files
- •
AGENTS.md— Git Workflow section defines branch naming and commit conventions - •
package.json—scriptssection lists the quality gate commands
Workflow
- •Summarize the requested change and identify affected areas (use
src/*/AGENTS.mdfor domain routing). - •List implementation steps with validation checkpoints (
npm run lint,npm run test,npm run build). - •Propose Conventional Commit message(s) — use
feat:for new features,fix:for bugs,refactor:for restructuring. - •Draft a short PR checklist: tests pass, no lint errors, build succeeds, no version pin violations.
Output
- •Provide a plan, commit message(s), and a short checklist.
Related Skills
- •
release-notes-synthesizer— uses these commit messages to generate changelogs - •
one-command-quality-gate— for running the validation checkpoints