chore: version packages - #406
Closed
github-actions[bot] wants to merge 1 commit into
Closed
Conversation
github-actions
Bot
force-pushed
the
changeset-release/master
branch
2 times, most recently
from
September 12, 2026 03:18
b450c96 to
309a399
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
September 12, 2026 04:11
309a399 to
63f68f3
Compare
Owner
|
Superseded: 1.27.0 was versioned and released by hand, folding the contributor changesets into one house-style entry with a Thanks section. Released as |
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 free
to 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.27.0
Minor Changes
d9eeb03: feat(webview): open
localhostlinks from the terminal and the Response Viewer through a proxied web tabAn agent prints
http://localhost:5173/and the user taps it on a phone: that addressonly exists on the Codeman box, so the link was a guaranteed connection error from any
other device. A loopback link (
localhost, 127/8, 0.0.0.0, ::1) clicked inthe terminal or in the Response Viewer now opens as a proxied web tab whenever the
Codeman page itself is not on that box — reusing a saved proxied dashboard on the same
origin (with the link's own path opened inside it) or saving one under its host:port.
LAN and tailnet addresses, which the device may reach directly, keep opening in a new
browser tab, and on the box itself every link opens directly.
Patch Changes
bd61735: fix(web): show the whole last turn in the Claude response viewer's brief view
The eye button rendered
text, which is one row — the last assistant row — while aClaude answer is a median of 3 model messages (p90 11) split around tool calls, so the
brief view usually showed the tail of an answer ("Done.") and the substance only after
More. The brief view now asks
GET /api/sessions/:id/last-response?context=turn, whichreturns the assistant messages of the last answered turn, and renders them the way the
full view renders that turn: one badge, then continuation segments.
textstays the lastassistant row in every mode (agent pollers hash it), a prompt queued after the answer does
not blank the view, and readers without turns (Codex, the pane parser, an older server)
keep their single card.