refactor: update conventional commit prompt to limit body usage

This commit is contained in:
2026-04-15 13:49:05 -04:00
parent 37af7f12b3
commit a62c45e91e
+2 -2
View File
@@ -8,8 +8,8 @@ const CONVENTIONAL_INSTRUCTION = `Based on the provided git diff, generate a con
The commit message should: The commit message should:
1. Have a short title (50-72 characters) 1. Have a short title (50-72 characters)
2. Follow the Conventional Commits format (feat:, fix:, chore:, docs:, refactor:, test:, style:, etc.) 2. Follow the Conventional Commits format (feat:, fix:, chore:, docs:, refactor:, test:, style:, etc.)
3. Describe what was changed and why 3. Be clear and informative
4. Be clear and informative` 4. Only include a body description if there are multiple distinct changes to explain, if the diff represents a single focused change, output the title only`
const SIMPLE_INSTRUCTION = `Based on the provided git diff, generate a short and clear one-line commit message (50-72 characters).` const SIMPLE_INSTRUCTION = `Based on the provided git diff, generate a short and clear one-line commit message (50-72 characters).`