| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Generate commit messages with one click using Claude Code CLI. Click the ✨ button in the Source Control panel — Claude reads your diff and writes the commit message for you.
No chat, no copy-paste, no context switching.
You can — but there are trade-offs most people don't think about:
In short: fewer tokens in, more precise output out. The plugin is designed for people who care about using LLMs efficiently — not just conveniently.
Type a hint into the commit message input before clicking ✨ — Claude will incorporate it and generate the message based on the diff and your hint.
Option A — Claude Code CLI (default):
Option B — Ollama Server (on-premise):
If the selected provider is not available, the ✨ button is grayed out and a status bar warning is shown.
Configure per workspace in .vscode/settings.json or globally in VS Code settings:
{
"commitGen.format": "conventional",
"commitGen.language": "en"
}| Setting | Default | Description |
|---|---|---|
| commitGen.provider | claude | AI provider: claude or ollama |
| commitGen.ollama.url | — | Ollama server URL (e.g. https://ollama.example.com) |
| commitGen.ollama.model | qwen3:32b | Model name (freely configurable, e.g. qwen3-coder:latest, codellama:latest) |
| commitGen.ollama.apiKey | — | API key (only if server requires authentication) |
Ollama example:
{
"commitGen.provider": "ollama",
"commitGen.ollama.url": "https://ollama.example.com",
"commitGen.ollama.model": "qwen3:32b"
}| Setting | Default | Description |
|---|---|---|
| commitGen.format | conventional | Format: conventional, descriptive, or custom |
| commitGen.language | en | Language: en or de |
| commitGen.maxDiffLines | 500 | Max diff lines sent to the AI provider (truncated if larger) |
| commitGen.customTemplate | — | Custom prompt for custom format |
Conventional Commits (default):
feat(auth): add certificate renewal endpoint
Descriptive:
Add certificate renewal endpoint - Implemented automatic renewal when cert reaches 80% lifetime - Added EST re-enrollment via GlobalSign API - Updated device status tracking
Custom — define your own format:
{
"commitGen.format": "custom",
"commitGen.customTemplate": "Format: [JIRA-ID] short description. Example: [PROJ-42] fix login redirect"
}The entire diff is sent (up to the configured limit) so the AI has full context for accurate messages.
This extension is provided as-is without any warranty. doubleSlash Net-Business GmbH accepts no liability for damages arising from its use. Use at your own risk.
MIT — made by doubleSlash
| Back | FazBrowse Home | New Git URL |