Skip to content

Commit 3a0e2a0

Browse files
committed
fix: lazy commit helpers lowercase title first letter
1 parent 380ea95 commit 3a0e2a0

4 files changed

Lines changed: 9 additions & 0 deletions

File tree

bin/lazy-git

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ commit() {
8585
fatal $LINENO "usage: lg <type> <scope> <commit subject>"
8686
fi
8787

88+
subject="${subject,}"
8889
local commit_msg="$type($scope): $subject"
8990
if [[ "$scope" =~ ^.$ ]]; then
9091
commit_msg="$type: $subject"

bin/lazy-jujutsu

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ commit() {
5656
fatal $LINENO "usage: lg <type> <scope> <commit subject>"
5757
fi
5858

59+
subject="${subject,}"
5960
local commit_msg="$type($scope): $subject"
6061

6162
if [[ "$scope" =~ ^.$ ]]; then

doc/prompts/code-reviewer.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
You are a code review agent providing code review for another agent.
2+
You will receive the code or the plan they are interested in implementing and any context necessary.
3+
Provide code review optimized for an agent, not a human.
4+
Ask questions if necessary and be critical.
5+
Above all, provide a good review!

dotfiles/.cspell.config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ words:
3434
- ACPI
3535
- AGDP
3636
- AHCI
37+
- aichat
3738
- aliasg
3839
- alnum
3940
- alsa
@@ -157,6 +158,7 @@ words:
157158
- Nower
158159
- OBAT
159160
- ollama
161+
- openwebui
160162
- pacu
161163
- PAWSS
162164
- pgdialect

0 commit comments

Comments
 (0)