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`
|
||||
|
||||
### Configuration Files
|
||||
- Before generating a commit, always consult `agents/COMMITS.md` for the required style.
|
||||
|
||||
#### chezmoi Templates
|
||||
- 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.
|
||||
|
||||
# Chezmoi Updater
|
||||
function chezmoiUpdate {
|
||||
if command -v chezmoi &> /dev/null; then
|
||||
echo Updating chezmoi dotfiles...
|
||||
chezmoi update
|
||||
fi
|
||||
}
|
||||
|
||||
# DNF Updater
|
||||
function dnfUpdate {
|
||||
if command -v dnf &> /dev/null; then
|
||||
@@ -55,6 +63,8 @@ function manualUpdate {
|
||||
fi
|
||||
}
|
||||
|
||||
chezmoiUpdate
|
||||
echo ''
|
||||
dnfUpdate
|
||||
aptUpdate
|
||||
echo ''
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
description: Commit currently staged code in git
|
||||
mode: all
|
||||
model: AquaAI/gpt-oss:20b
|
||||
model: {{ template "models/big-brain" . }}
|
||||
temperature: 0.1
|
||||
tools:
|
||||
write: false
|
||||
Reference in New Issue
Block a user