Skip to content

Stable Release v3.5.32

Latest

Choose a tag to compare

@github-actions github-actions released this 26 Jun 21:31

πŸŽ‰ Stable Release v3.5.32

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.32/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.32/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.32


What's Changed

πŸ› Bug Fixes

  • fix(codex): sanitize tool call inputs (4206b4bd)
  • fix(codex): harden SSE error mapping (54219898)
  • fix(codex): surface failed SSE responses (57499d3b)
  • fix(codex): guard response.completed against upstreamError to prevent invalid SSE sequences (7e30d964)
  • fix(codex): avoid replayed Skill nudges (99ea1f86)
  • fix(codex): synthesize count token responses (bba21ae3)
  • fix(codex): continue after Skill results (d08b5c7c)
  • fix(codex): align tool call semantics (e5a3d9cf)
  • fix(codex): refine count token estimates (f3e0ce24)

πŸ”§ Improvements

  • refactor(codex): reduce PR merge overlap (1e1b8ab9)
  • refactor(codex): reduce Skill continuation merge overlap (fc07024b)

Full Changelog

πŸ“‹ Compare with previous version