Stop writing "fix stuff". Let AI write your Git commit messages.
CommitCraft reads your staged diff and generates professional commit messages in one keystroke. Stay in flow — never think about commit messages again.
API cost: Each generation costs approximately $0.03. Anthropic requires a minimum $5 credit purchase. At 10 commits per day that's roughly $0.90/month — paid directly to Anthropic, separate from CommitCraft.
After purchase you receive a license key. Enter it in VS Code Settings → search "commitcraft" → paste in the License Key field.
Settings
Setting
Default
Description
commitcraft.apiKey
—
Your Anthropic API key
commitcraft.licenseKey
—
Your Pro license key
commitcraft.style
conventional
Commit message style
commitcraft.includeBody
true
Include detailed body text
commitcraft.variants
3
Number of variants to generate
commitcraft.maxDiffLines
300
Max diff lines to process
commitcraft.language
English
Language for messages
Example output
Given a change that adds email validation to a login form, CommitCraft generates:
feat(auth): add email format validation on login form
Adds regex validation to the email input field before
form submission. Returns a user-friendly error message
for invalid formats without hitting the backend.