You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Contains prompt templates and message configurations. **Safe to share in dotfiles and Git.**
103
+
104
+
```yaml
105
+
language: English # commit message language (e.g., "English", "Arabic", "Korean")
106
+
system_message: "You are a helpful assistant that generates git commit messages, and pull request titles."
107
+
commit_message_template: "Based on the following git diff, generate 10 conventional commit messages. Each message should be on a new line, without any numbering or bullet points:\n\n%s"
108
+
pr_title_template: "Based on the following git diff, generate 10 pull request title suggestions. Each title should be on a new line, without any numbering or bullet points:\n\n%s"
109
+
```
107
110
108
-
-**No API key required**: Uses your existing Claude Code authentication
109
-
-**Fast and cost-effective**: Leverages Claude Haiku model
110
-
-**Configurable**: Set custom number of suggestions per provider
111
+
### Per-Repository Configuration
111
112
112
-
Requirements:
113
-
- Claude Code CLI installed and authenticated
114
-
- Command `claude` available in PATH
113
+
You can override the prompt configuration on a per-repository basis by creating a `.lazycommit.prompts.yaml` file in the root of your git repository. This is useful for projects that require different languages or commit message formats.
0 commit comments