🎉 Stable Release v3.5.3
Multi-Architecture Binaries
Download the appropriate binary for your platform:
- Linux x86_64:
better-ccflare-linux-amd64 - Linux ARM64 (Raspberry Pi 3/4/5, Oracle Cloud ARM, AWS Graviton):
better-ccflare-linux-arm64 - macOS Intel:
better-ccflare-macos-x86_64 - macOS Apple Silicon:
better-ccflare-macos-arm64 - Windows x86_64:
better-ccflare-windows-x64.exe
Installation
# Linux x86_64
wget https://github.com/tombii/better-ccflare/releases/download/v3.5.3/better-ccflare-linux-amd64
chmod +x better-ccflare-linux-amd64
./better-ccflare-linux-amd64
# macOS Apple Silicon (ARM64)
curl -L -o better-ccflare-macos-arm64 https://github.com/tombii/better-ccflare/releases/download/v3.5.3/better-ccflare-macos-arm64
chmod +x better-ccflare-macos-arm64
xattr -d com.apple.quarantine better-ccflare-macos-arm64 # Required for unsigned binaries
./better-ccflare-macos-arm64macOS Users: The xattr command is required to bypass Gatekeeper for unsigned binaries. If you prefer not to run unsigned binaries, install from source instead.
Or install via npm: npm install -g better-ccflare@v3.5.3
What's Changed
🚀 Features
- feat(agents): discover agents from Claude Code plugin directories (
2f19157)
🐛 Bug Fixes
- fix(agents): cross-check seenIds for plugin agents to prevent duplicate final IDs (
0c3f800) - fix: insert requests row on model-fallback 429 paths (
3fe04ec) - fix: keepalive 429s should not cool accounts; shorten no-reset default (
42e5118) - fix: AutoRefreshScheduler skips known-cooled accounts; tag synthetic probes (
868cfbe) - fix: correct stale test assertions for cooldown default and reason string (
8de6358) - fix: use fresh UUID for 429 audit rows, fix responseTime naming (
a74ead0) - fix: address Greptile review on PR #200 (
ae8b670) - fix(agents): address PR #197 review issues (
c01d96d) - fix(agents): block edits to plugin-managed agents (PR #197 review) (
db32535)
🔧 Improvements
- improve: remove JSDoc comments from plugin agent paths (style) (
55dedbf) - improve: thank zenprocess for PR #196 in Acknowledgements (
95091b5) - improve: add tests for PR #200 cooldown guard and probe pollution fixes (
bee9341) - improve: thank CorentinLumineau for plugin agent discovery (PR #197) (
e9f5c51)