mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2026-03-02 07:19:59 +00:00
Compare commits
3 Commits
542f97f865
...
81fd52a8f7
| Author | SHA1 | Date | |
|---|---|---|---|
| 81fd52a8f7 | |||
| 7f684f98f1 | |||
| f5f8cda9f6 |
@@ -96,6 +96,7 @@ python3 -m py_compile ./home/bin/homeassistant.py
|
|||||||
- Redirect stderr appropriately: `2>/dev/null` or `2>&1`
|
- Redirect stderr appropriately: `2>/dev/null` or `2>&1`
|
||||||
|
|
||||||
### Configuration Files
|
### Configuration Files
|
||||||
|
- Before generating a commit, always consult `agents/COMMITS.md` for the required style.
|
||||||
|
|
||||||
#### chezmoi Templates
|
#### chezmoi Templates
|
||||||
- Dotfiles use chezmoi's templating system
|
- Dotfiles use chezmoi's templating system
|
||||||
|
|||||||
8
agents/COMMITS.md
Normal file
8
agents/COMMITS.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
Commits
|
||||||
|
## Commit Message Format
|
||||||
|
Follow conventional commits style (all lowercase).
|
||||||
|
- `feat(scope): description` - New feature
|
||||||
|
- `fix(scope): description` - Bug fix
|
||||||
|
- `refactor(scope): description` - Code refactoring
|
||||||
|
- `docs(scope): description` - Documentation changes
|
||||||
|
- Example: `feat(zsh): update dotfiles` or `fix(scripts): use correct pass entry`
|
||||||
1
home/.chezmoitemplates/models/big-brain
Normal file
1
home/.chezmoitemplates/models/big-brain
Normal file
@@ -0,0 +1 @@
|
|||||||
|
AquaAI/glm-4.7-flash
|
||||||
@@ -2,6 +2,14 @@
|
|||||||
|
|
||||||
# This script is a catch all program updater.
|
# This script is a catch all program updater.
|
||||||
|
|
||||||
|
# Chezmoi Updater
|
||||||
|
function chezmoiUpdate {
|
||||||
|
if command -v chezmoi &> /dev/null; then
|
||||||
|
echo Updating chezmoi dotfiles...
|
||||||
|
chezmoi update
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# DNF Updater
|
# DNF Updater
|
||||||
function dnfUpdate {
|
function dnfUpdate {
|
||||||
if command -v dnf &> /dev/null; then
|
if command -v dnf &> /dev/null; then
|
||||||
@@ -55,6 +63,8 @@ function manualUpdate {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
chezmoiUpdate
|
||||||
|
echo ''
|
||||||
dnfUpdate
|
dnfUpdate
|
||||||
aptUpdate
|
aptUpdate
|
||||||
echo ''
|
echo ''
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
description: Commit currently staged code in git
|
description: Commit currently staged code in git
|
||||||
mode: all
|
mode: all
|
||||||
model: AquaAI/gpt-oss:20b
|
model: {{ template "models/big-brain" . }}
|
||||||
temperature: 0.1
|
temperature: 0.1
|
||||||
tools:
|
tools:
|
||||||
write: false
|
write: false
|
||||||
Reference in New Issue
Block a user