🎉 Stable Release v3.1.1
✨ New Features
🚀 Vertex AI Integration
- Full support for Google Cloud Vertex AI as a provider
- Automatic model format conversion (Anthropic format → Vertex AI format)
- Support for custom model mappings via
model_mappingsconfiguration - Seamless integration with existing Claude API workflow
🐛 Bug Fixes
Fixed thinking block issues when switching between providers
- Resolved errors when switching from providers with thinking blocks to Claude
- Automatic thinking mode detection and cleanup
- Improved cross-provider compatibility
🎯 Improvements
- Claude Code internal endpoints now silently handled (no more error logs)
- Dashboard stability improvements (resolved restart loop issues)
- Enhanced debug logging for Vertex AI provider
🙏 Acknowledgments
Special thanks to @materemias for testing and validating the Vertex AI implementation!
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
# Via npm (recommended)
npm install -g better-ccflare@3.1.1
# Via bun
bun install -g better-ccflare@3.1.1
# Or download binary for your platform
# Linux x86_64
wget https://github.com/tombii/better-ccflare/releases/download/v3.1.1/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.1.1/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.