Diff Commit is a VSCode extension that helps you generate commit messages following the conventional commits specification using Anthropic's AI models like Claude 3.5 Sonnet. Commit messages are generated using the diff of staged changes and entered directly into the SCM message input or previewed in a new editor window.
The generated commit messages are compatible with googleapis/release-please and other tools that use conventional commits.
- Diff Commit
- Generate commit messages based on the diff of staged changes using Anthropic's AI models like Claude 3.5 Sonnet
- Preview and edit generated commit messages before applying the commit
- Uses markdown formatting for commit messages
- Implements conventional commit format with type, scope, subject, and body
- Real-time progress notifications during commit message generation
- Seamless integration with VSCode's Source Control Management (SCM)
- VSCode 1.9.4 or higher
- Git installed and configured in your workspace
- An Anthropic API key
Install the extension directly from the Visual Studio Code Marketplace or:
- Open VSCode
- Press Cmd/Ctrl + P
- Type
ext install tpsTech.diff-commit
- Stage the changes that you wish to commit as normal
- Run the command: "DiffCommit: Generate Commit Message" (Cmd/Ctrl + K β Cmd/Ctrl + G)
- Monitor progress in the notification area as the extension:
- Retrieves the git diff
- Validates your API key
- Generates the commit message
- Review the generated message in the Source Control message input
- Click 'Commit' to commit the changes with the generated message
DiffCommit commands can be accessed from the Command Palette (Cmd/Ctrl + Shift + P) or using the default keyboard shortcuts.
Tip
You can reduce token use by staging only part of a group of changes, generating the commit message, then adding the remaining files before committing.
This will generate a commit message for staged changes and enter it in the Source Control message input box. You can preview and edit the generated message before committing. Progress is shown through notifications as the extension works.
| Platform | Keyboard Shortcut |
|---|---|
| macOS | Cmd + K β Cmd + G |
| Linux | Ctrl + K β Ctrl + G |
| Windows | Ctrl + K β Ctrl + G |
This will generate a commit message for staged changes and open it in a new editor window. You can preview and edit the generated message before committing.
| Platform | Keyboard Shortcut |
|---|---|
| macOS | Cmd + K β Cmd + P |
| Linux | Ctrl + K β Ctrl + P |
| Windows | Ctrl + K β Ctrl + P |
This will update the Anthropic API key used for API access.
- Enter your API key when prompted
- Press Enter to confirm or Esc to cancel
This will delete the stored API key from your system and prevent DiffCommit from accessing the API in the future.
DiffCommit provides the following settings to customise its behavior.
A list of allowed commit types. If provided, this replaces the default options. You need to ensure all required commit types are included in the list.
| Type | Description | Default Value |
|---|---|---|
| Array<string> | A list (array) of any string/s you want available as commit types | [ "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "style", "test" ] |
Warning
Changing the default, replaces the option value. If you set this option, be sure to include a complete list of all required commit types.
Add additional custom instructions to the commit generation prompt. Useful for providing context or specific requirements like 'Use Australian English spelling'.
| Type | Description | Default Value |
|---|---|---|
| string | Free formatted string that you want included as custom instructions for the AI prompt | "" |
The Anthropic AI model to use for generating commit messages.
| Type | Options | Default Value |
|---|---|---|
| enum | "claude-3-5-sonnet-latest" | "claude-3-5-haiku-latest" |
| "claude-3-5-haiku-latest" | ||
| "claude-3-opus-latest" | ||
| "claude-3-sonnet-20240229" | ||
| "claude-3-haiku-20240307" |
Maximum number of tokens to generate in the response. Higher values allow for longer commit messages but use more API tokens.
| Type | Minimum | Maximum | Default Value |
|---|---|---|---|
| number | 1 | 8192 | 1024 |
Controls randomness in the response. Lower values (like 0.3) produce more focused and consistent commit messages, while higher values introduce more variety.
Tip
For concise, focused & repeatable commit messages, use a value in the range of 0.1 to 0.4.
If you want a little more creativity or more room for the AI model to interpret the reason for changes, try a higher value like 0.7.
| Type | Minimum | Maximum | Default Value |
|---|---|---|---|
| number | 0 | 1 | 0.3 |
Diff Commit provides clear feedback for various scenarios to help troubleshoot issues. Here are the common messages you might encounter:
| Error | Description | |
|---|---|---|
| Git Related | Git extension not found in VSCode | VSCode's Git extension is not installed or enabled |
| No Git repository found in the current workspace | The current workspace is not a Git repository | |
| No workspace folder found | No workspace is open in VSCode | |
| No changes detected | No staged changes found to generate a commit message for | |
| API Key Related | API key is missing or not provided | No API key has been set |
| Invalid API key format (should start with sk-ant-api) | The provided API key doesn't match the expected format | |
| Failed to access or update secure storage | Unable to store or retrieve the API key from secure storage | |
| Anthropic API Errors | Bad Request: Review your prompt and try again | Invalid request to the Anthropic API (400) |
| Unauthorized: Invalid API key, update your API key and try again | The API key is invalid or expired (401) | |
| Forbidden: Permission denied, update your API key and try again | The API key doesn't have permission for this operation (403) | |
| Rate Limited: Too many requests, try again later | You've exceeded your API rate limit (429) | |
| Server Error: Anthropic API server error | An error occurred on Anthropic's servers (500) | |
| Other Errors | Failed to write commit message to Source Control | Unable to update the SCM input box with the generated message |
| Failed to open commit message preview | Unable to open the preview editor | |
| No commit message was generated by the API | The API response didn't contain a valid commit message |
Each error includes specific guidance on how to resolve the issue. For persistent problems, please check your configuration and if appropriate, raise an issue on GitHub.
Feature requests, suggestions and contributions to Diff Commit are welcome! Please feel free to submit an idea or Pull Request.
- Clone the repository
- Install dependencies:
pnpm install - Build the extension:
pnpm compile - Run the tests:
pnpm test
- Press F5 (Cmd/Ctrl + Shift + P and select
Debug: Start Debugging) to start the debugger - This will open a new VSCode window with the extension loaded
- Make changes to files and use the source control panel to test the extension
This project is licensed under the MIT License.




