Download Latest Version v1.25.0 source code.zip (56.2 MB)
Email in envelope

Get an email when there's a new version of Claude Code Tools

Home / v1.25.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md < 21 hours ago 2.8 kB
v1.25.0 source code.tar.gz < 21 hours ago 55.8 MB
v1.25.0 source code.zip < 21 hours ago 56.2 MB
Totals: 3 Items   112.0 MB 0

New: amux โ€” find the agent that's waiting on you (#164)

Find and jump between the Claude Code / Codex CLI agents running across your tmux panes. An agent blocked on a question is otherwise invisible among a hundred panes.

amux              # fzf picker, sorted by urgency, live pane preview
amux list         # table of every live agent (--json for scripts)

States, most urgent first: input (asking you something) ยท busy ยท bg ยท idle. Each row carries session name, model, and repo@branch.

๐Ÿ“– amux docs

New: github-wake โ€” resume when a GitHub reply lands (#165)

A session blocked on a collaborator's answer can sleep until the reply arrives:

github-wake ISSUE_URL                    # from Codex
github-wake --claude-monitor ISSUE_URL   # from Claude Code (via Monitor)

A durable shared watcher wakes the originating conversation on the first future comment. Also hardens codex-dynamic: orphaned app-servers no longer retain transcript writer locks, and plugin fingerprinting ignores volatile cache metadata.

๐Ÿ“– github-wake ยท codex-dynamic

Fix: aichat port respects compaction boundaries (#160)

Porting flattened the entire session log, including history the source agent no longer sends to the model. A real 108-compaction codex rollout (191 MB) ported into a ~6M-token Claude transcript that could never be resumed. Both porters now mirror the source agent's own resume semantics, starting from the last compaction point. Also drops codex's per-turn <codex_internal_context source="goal"> re-injection โ€” 16% of one ported transcript.

๐Ÿ“– aichat port docs

Fix: voxtype keepalive_minutes โ€” no slow takes after idle (#168)

Under memory pressure macOS evicts the idle Parakeet-MLX model (~1.7 GB) to swap, so the first take after a pause stalls โ€” observed: 8.4 s of audio decoded in 6.16 s, against ~0.2 s warm. New opt-in key:

:::toml
keepalive_minutes = 5.0   # 0 disables (default); max 1440

Decodes half a second of silence when idle, keeping the model's pages in active use. Skips itself during takes, utterances, and for 30 s after any hotkey. Known limitation documented; [#169] tracks decoupling capture from decoding.

๐Ÿ“– voxtype configuration


Full details: release-notes/v1.25.0-amux-github-wake-port-compaction-voxtype-keepalive.md (github.com)

Source: README.md, updated 2026-08-15