chore: re-sync bundled guest-room protocol to 0.4.0 (drop stale bun import)#17
Merged
Conversation
…bun" import door-kit bundles the guest-room protocol (self-contained SDK). Its copy of protocol.ts was stale — it still imported the bare "bun" specifier, while upstream (#39) switched to declaring Bun locally so the package stays JSR-resolvable. This syncs protocol.ts to @bounded-systems/guest-room@0.4.0 (mod.ts/daemon.ts were already current) and tightens the seam claim back to its real surface — the four node builtins, no "bun". JSR dry-run clean (the whole bundle type-checks against the synced protocol); seam test passes. Surfaced while publishing guest-room 0.4.0 for de-vendoring — which turned out to fight door-kit's deliberate self-contained-bundle design, so re-syncing the bundle (not de-vendoring) is the architecture-respecting fix. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
door-kit bundles the guest-room protocol (self-contained SDK); its protocol.ts was stale (still imported bare
"bun", vs upstream #39 declaring Bun locally). Syncs protocol.ts to@bounded-systems/guest-room@0.4.0(mod/daemon already current) and tightens the seam claim to its real 4-builtin surface (nobun). JSR dry-run clean; seam test passes. Architecture-respecting fix (re-sync the bundle, not de-vendor).