chore: update versions - #93
Merged
Merged
Conversation
biraj21
approved these changes
Jul 30, 2026
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 main, this PR will be updated.
Releases
shellular@0.0.49
Patch Changes
b804aa1: feat: faster chat reopens, paged transcripts, and ACP elicitation support.
Transcript cache (SQLite). Agent chat transcripts are now cached in a shared
~/.shellular/shellular.sqlite, so reopening a chat renders immediately insteadof waiting on ACP's 20–30s full replay. The cache is never a source of truth —
the agent's own session storage stays authoritative and rows are replaced
wholesale (with a generation bump) after each full replay. SQLite is fail-soft:
if it can't be opened, everything degrades to the previous in-memory behavior.
Migrations live in
src/db/sql/*.sqland are append-only, with a generatedschema.sqland a CI check that catches edits to already-shipped migrations.Paged transcripts.
ai:session:attachacceptstailorfrom/totorequest a slice of the transcript, and
ai:messages:listacceptsto/limitfor scroll-back. Both responses report the window actually served (
from,to,totalCount,hasMoreBefore,generation) so clients can page backwardswithout overlap.
ai:session:loadis removed —ai:session:attachcovers it.Compressed payloads. Encrypted envelopes may now carry
enc: "gzip",compressing before encryption so the relay still sees only routing fields and
opaque ciphertext. Only sent to apps new enough to decode it (inferred from
appVersion), and only above 4 KB; older apps keep receiving raw UTF-8.ACP elicitation. Agents can request structured input mid-turn
(
ai:elicitation:reply), covering agent question forms, MCP serverelicitations, and sign-in URLs. Tool calls also carry
locations, and planscarry
entries.Fixes.
tail of a replay could previously be dropped.
messageIdas a message boundary, so consecutivesame-role messages no longer merge and message ids stay stable across reloads.
relay is still immediate.
second-resolution
toUTCString().Updated dependencies [b804aa1]
@shellular/protocol@0.0.30
Patch Changes
b804aa1: feat: faster chat reopens, paged transcripts, and ACP elicitation support.
Transcript cache (SQLite). Agent chat transcripts are now cached in a shared
~/.shellular/shellular.sqlite, so reopening a chat renders immediately insteadof waiting on ACP's 20–30s full replay. The cache is never a source of truth —
the agent's own session storage stays authoritative and rows are replaced
wholesale (with a generation bump) after each full replay. SQLite is fail-soft:
if it can't be opened, everything degrades to the previous in-memory behavior.
Migrations live in
src/db/sql/*.sqland are append-only, with a generatedschema.sqland a CI check that catches edits to already-shipped migrations.Paged transcripts.
ai:session:attachacceptstailorfrom/totorequest a slice of the transcript, and
ai:messages:listacceptsto/limitfor scroll-back. Both responses report the window actually served (
from,to,totalCount,hasMoreBefore,generation) so clients can page backwardswithout overlap.
ai:session:loadis removed —ai:session:attachcovers it.Compressed payloads. Encrypted envelopes may now carry
enc: "gzip",compressing before encryption so the relay still sees only routing fields and
opaque ciphertext. Only sent to apps new enough to decode it (inferred from
appVersion), and only above 4 KB; older apps keep receiving raw UTF-8.ACP elicitation. Agents can request structured input mid-turn
(
ai:elicitation:reply), covering agent question forms, MCP serverelicitations, and sign-in URLs. Tool calls also carry
locations, and planscarry
entries.Fixes.
tail of a replay could previously be dropped.
messageIdas a message boundary, so consecutivesame-role messages no longer merge and message ids stay stable across reloads.
relay is still immediate.
second-resolution
toUTCString().