Skip to content

Stable Release v3.5.24

Choose a tag to compare

@github-actions github-actions released this 18 Jun 20:22
· 4 commits to main since this release

πŸŽ‰ Stable Release v3.5.24

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.24/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.24/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-arm64

macOS 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.24


What's Changed

πŸš€ Features

  • feat: register Claude Opus 4.8 and make it the latest Opus (7e52a431)
  • feat: add Claude Fable 5 (claude-fable-5) model support (ba099285)

πŸ› Bug Fixes

  • fix: stop false "integrity check failed" banner on large DBs; bound payload growth (0484714f)
  • fix: address Greptile review gaps in fable family expansion (3514d4eb)
  • fix: hold integrity mutex through full size-skip path; batch orphan sweep (582e65b6)
  • fix: add fable key to CLI wizard fallback defaults object (cf578b87)

πŸ”§ Improvements

  • improve: run greptile review via haiku subagent; auto-refresh GitNexus index via post-commit hook (667c10e9)
  • improve: route GitNexus MCP calls through a haiku subagent to cut main-context token usage (bc94c272)
  • improve: update CLI wizard fallback defaults to gpt-5.5 / gpt-5.4-mini (fef710a9)

Full Changelog

πŸ“‹ Compare with previous version