chore: version packages - #378
Closed
github-actions[bot] wants to merge 1 commit into
Closed
Conversation
github-actionsBotforce-pushed
the
changeset-release/master
branch
from
September 4, 2026 12:00
146a2de to
7bf50f4Comparegithub-actionsBotforce-pushed
the
changeset-release/master
branch
from
September 4, 2026 12:02
7bf50f4 to
0328b86CompareArk0N
commented
Sep 4, 2026
Owner
Closing: 1.24.6 was released manually from master (commit 8062656), which already consumed this changeset. Master is a strict superset of this PR: package.json is at 1.24.6, .changeset/cli-registry-core.md is gone, and CHANGELOG.md carries the #347 entry (folded into one patch-level note together with #355 and #356). Merging this would re-apply a stale, narrower changelog. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
aicodeman@1.25.0
Minor Changes
4830e66: CLI backends are now a data-driven registry instead of a hardcoded set of run modes. Every
CLI (Claude Code, Terminal/Shell, OpenCode, Codex, Gemini, Antigravity, Pi, Grok, DeepSeek
Harness and OMP) is a
CliEntryinsrc/config/cli-registry/, and the code that used tobranch on a CLI's name now reads capability flags off that entry instead.
This is an internal refactor with no behaviour change: no new endpoints, no new settings,
no change to any request or response shape, and the spawn command every CLI receives is
byte-identical to what the hand-written builders produced.
test/cli-registry-spawn-golden.test.tspins those command lines as literal strings, captured from the previous builders before they
were removed, and
test/location-overlay-commands.test.tsdoes the same for every remote andin-container pane command.
What the registry owns: binary discovery (search paths, version and identity probes), the
launch argv template, environment handling (exports,
tmux setenvkeys, the env-overrideallowlist), the multi-user privileged-parameter and privileged-env-key clamps, the
remote/docker location overlays, and the behavioural capabilities the rest of the app reads
(
isExternalCliMode,isAltScreenStripMode,hooksAvailableForMode, alt-screen strip class,echo policy, transcript format, and friends).
codeman doctor's per-CLI rows are generatedfrom the same entries, so its version rules and the run modes' resolvers can no longer
disagree about whether a given binary counts as installed.
Registry data is resolved at call time, never frozen at module import: session-mode and
env-prefix validation, the doctor's tool list, and each resolver's search directories all
re-read the catalog, so a CLI enabled while the server is running moves every surface at once
rather than only the run menu.
Four user-visible changes, all small and all deliberate:
probeDockerCliVersion()derives the in-container binary name from the registry ratherthan assuming it equals the mode name. Only Claude reaches that path today, so nothing was
broken in practice, but
antigravityrunsagyand the assumption would not have survivedthe next CLI that needs a version.
replaces simply omitted — its own comment said the rule was "every mode except shell", so
the two were an oversight from when those CLIs were added, and a remote session in either
mode reported no version at all.
session.tscarried a hand-written list ofmodes with no direct-PTY fallback and omp was missing from it, even though CLAUDE.md's own
text says "all eight require tmux" — so an omp session whose mux creation failed silently
fell back to a direct PTY.
requiresMuxcomes off the entry now, so the list cannot driftfrom the rule again.
codeman doctor's CLI rows come from the registry, so Claude's install hint is now thedocumented install command rather than a docs URL, five CLIs gain install hints they never
had, and the row order follows the catalog (Claude now sorts below tmux).
A user-editable
~/.codeman/clis.jsoncan override any stock entry or add a custom CLI. Itis READ-ONLY in this release — nothing writes it, so importing the registry has no filesystem
side effects. Config never contains shell text: an entry declares typed argv tokens, every
literal is validated against a safe-word pattern at load, and values resolve through named
patterns that live in code, so a
clis.jsoncannot widen its own validation.test/cli-registry-no-id-branching.test.tsfails the build if per-CLI-id branching reappearsoutside the stock catalog, in any of its four shapes (
===,!==,switch/case, andincludes).