| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-05-30 | 3.0 kB | |
| v0.7.0 source code.tar.gz | 2026-05-30 | 39.2 MB | |
| v0.7.0 source code.zip | 2026-05-30 | 39.4 MB | |
| Totals: 3 Items | 78.6 MB | 0 | |
Changed
- Removed pinned Claude Code binary: claude-multi no longer installs its own copy of
@anthropic-ai/claude-codeinto~/.claude-multi/bin/. All instance wrappers now resolve to the user's globally installedclaudebinary viawhich claude/where claude. This means instances auto-update together with the globalclaudebinary. getClaudePath()inwrapper.tssimplified to two priorities:CLAUDE_MULTI_CLAUDE_PATHenv override, then global PATH. The pinned binary check was removed.doctor fixno longer installs a pinned Claude binary. It verifiesclaudeis available in PATH and regenerates stale wrappers.- Health check for wrapper binary paths now compares against the resolved global
claudepath instead ofPINNED_CLAUDE_BIN. Also gained a Windows.cmdregex pattern. fixWrapperVersions()inhealth.tsrewritten to usetryGetClaudePath()instead ofPINNED_CLAUDE_BIN.- Instance migration (v0.6.2) updated to use
tryGetClaudePath()instead of the deletedtryGetGlobalClaudePath(). Addedconsole.warnwhen claude binary is not found during wrapper regeneration. TUNABLE_ENV_VARSlocal duplicate removed frommigration.tsv0.6.3. Now imports the canonical set fromconstants/env.ts(was missingCLAUDE_CODE_AUTO_COMPACT_WINDOWandCLAUDE_AUTOCOMPACT_PCT_OVERRIDE).- PATH membership check in the
addcommand usespath.dirname()andpath.delimiterinstead of Unix-specificlastIndexOf('/')andsplit(':'). where claudeoutput split fixed to handle Windows\r\nline endings.- Version warning banner and
isThirdPartyApiBrokencheck removed from the TUI (the affected versions are ancient).
Removed
PINNED_BIN_DIRandPINNED_CLAUDE_BINconstants frompaths.ts.COMPATIBLE_CLAUDE_VERSION,isThirdPartyApiBroken(),getPinnedBinaryVersion(),installPinnedClaude()fromversion.ts.getGlobalClaudePath()andtryGetGlobalClaudePath()fromwrapper.ts(became identical togetClaudePath()andtryGetClaudePath()after pinning removal).ccVersionstate,installFaileddoctor result, and version warning banner fromApp.tsx.
Fixed
- v0.6.3 migration
TUNABLE_ENV_VARSlocal duplicate was missing two entries (CLAUDE_CODE_AUTO_COMPACT_WINDOW,CLAUDE_AUTOCOMPACT_PCT_OVERRIDE), causing auto-compaction settings to be overwritten with template defaults during migration. - Health check and
doctor fixwere fighting the v0.6.2 migration: migration set wrappers to global path, doctor overwrote them back to pinned binary. Both now use the same global path resolution. where claudeoutput on Windows was split on\nonly, missing\r\ncarriage returns.addcommand PATH check was Unix-only (lastIndexOf('/')andsplit(':')).- Health check had no regex for Windows
.cmdwrapper format.
Blog
- Blog post: v0.7.0: No More Pinned Claude Binary