Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
244f27f
feat: add git-ai dependency and enhance cargo globals installation sc…
shunkakinoki Jan 23, 2026
45db41d
fix: improve error handling for cargo installation in install-cargo-g…
shunkakinoki Jan 23, 2026
c4ac537
feat: add libiconv to Homebrew casks
shunkakinoki Jan 23, 2026
2f0a4c5
fix: remove duplicate entry for libiconv in Homebrew brews
shunkakinoki Jan 23, 2026
6acf71d
feat: add macOS SDK path setup for linker in install-cargo-globals.sh
shunkakinoki Jan 23, 2026
0c8b2d4
feat: enhance cargo globals installation with libiconv support and ad…
shunkakinoki Jan 23, 2026
253b900
feat: add cursor configuration and hooks for git-ai checkpoint integr…
shunkakinoki Jan 23, 2026
39e7976
feat: add gemini configuration and settings for git-ai checkpoint int…
shunkakinoki Jan 23, 2026
9247439
fix: update git-ai command paths in hooks.json to be relative
shunkakinoki Jan 23, 2026
696e9d3
feat: add quota management configuration and update model names in ex…
shunkakinoki Jan 23, 2026
8753d48
fix: update model version from glm-4.6 to glm-4.7 in config.yaml
shunkakinoki Jan 23, 2026
ee84958
fix: update model name for glm-4.7 in config.yaml
shunkakinoki Jan 23, 2026
a6e4ab2
fix: remove references to glm-4.6 from opencode.jsonc, models.json, a…
shunkakinoki Jan 23, 2026
351b832
fix: simplify model reference for glm-4.7 in opencode.jsonc
shunkakinoki Jan 23, 2026
3620066
fix: update model references to cliproxyapi/glm-4.7 in opencode.jsonc
shunkakinoki Jan 23, 2026
88893ff
fix: update model reference from openrouter-preset to cliproxyapi/glm…
shunkakinoki Jan 23, 2026
0646b49
fix: add routing strategy and alias for glm-4.7 in config.yaml
shunkakinoki Jan 23, 2026
3874970
fix: add default_model.txt for glm-4.7 and update configurations for …
shunkakinoki Jan 23, 2026
32ecfb8
fix: add _zpo_function to attach to zellij primary session
shunkakinoki Jan 23, 2026
ad02f72
fix: add _zpo_function to the list of functions in default.nix
shunkakinoki Jan 23, 2026
3c43c4d
fix: reorder function list in default.nix and restore previously remo…
shunkakinoki Jan 23, 2026
3586a8d
fix: conditionally apply libiconv paths only on Darwin platforms
shunkakinoki Jan 23, 2026
a39d83e
fix: add libiconv to the list of packages in default.nix and remove i…
shunkakinoki Jan 23, 2026
989113c
fix: correct model identifier for glm-4.7 in opencode.jsonc
shunkakinoki Jan 24, 2026
08837c5
chore: update
shunkakinoki Jan 24, 2026
0bac00b
fix: update model names to specify local CLIProxyAPI usage
shunkakinoki Jan 24, 2026
45fad65
fix: update clawdbot config to use tokenFile for telegram
shunkakinoki Jan 24, 2026
6bd7609
flake.lock: Update
shunkakinoki Jan 24, 2026
090bd67
chore: update nix-clawdbot and fix config template
shunkakinoki Jan 24, 2026
ccee9a8
fix(clawdbot): set memory slot to null to disable default
shunkakinoki Jan 24, 2026
d3c4834
fix(clawdbot): try empty string for memory slot
shunkakinoki Jan 24, 2026
010bf2e
chore: update
shunkakinoki Jan 24, 2026
ff2dc22
refactor(clawdbot): extract hydrate script to config/clawdbot/default…
shunkakinoki Jan 24, 2026
137134d
chore: update
shunkakinoki Jan 24, 2026
cb90a02
chore: update
shunkakinoki Jan 24, 2026
a0a30f9
chore: update
shunkakinoki Jan 24, 2026
fe72e64
chore: update
shunkakinoki Jan 24, 2026
588d9af
chore: update
shunkakinoki Jan 24, 2026
f57d5c9
chore: update
shunkakinoki Jan 24, 2026
2f1f1a6
fix: use activation script for gemini settings to allow ruler writes
shunkakinoki Jan 24, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.PAT_TOKEN }}
Expand All @@ -33,6 +34,11 @@ jobs:
body: Automated overlay upgrade
branch: chore/upgrade-overlays
delete-branch: true
- name: Enable Auto-Merge
if: steps.cpr.outputs.pull-request-number
run: gh pr merge ${{ steps.cpr.outputs.pull-request-number }} --squash --auto
env:
GH_TOKEN: ${{ secrets.PAT_TOKEN }}
upgrade-check:
if: always()
needs:
Expand Down
Loading