Version Packages (alpha)#157
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
0182a52 to
68bd462
Compare
68bd462 to
4b12fb5
Compare
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.
mainis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonmain.Releases
@peekdev/mcp@0.1.0-alpha.25
Minor Changes
22743c0: Add
share_sessionMCP tool — consent-gated session bundle export.share_session(sessionId, surface?)elicits an explicit egress consent card(naming what is exported and where) before producing a portable
.peekbundletemp file from a recorded session. On deny →
{ ok: false, result: 'denied' },no file written. On approve →
{ ok: true, bundlePath, filename, sizeBytes, caveat }.The bundle contains the masked session recording (DOM + console/network events).
Every approved export is recorded to
~/.peek/audit.logastool: share_session(session ID + surface; bundle bytes are never written to the audit log).
Designed for connector-driven upload flows (e.g. Slack
@peek share this session);the connector is responsible for uploading and deleting the temp file.
99d7e1e: peek-mcp: add
render_session_journeytool for connector canvas renderingNew read tool
render_session_journey({ sessionId, errorId? })returns the fullCausalChain(timeline, narrative, error, actions, DOM mutations, network errors) for a session — the same data path asget_user_action_before_error, under a dedicated tool name so a connector can intercept only journey results for rich rendering (e.g. a Slack canvas). WhenerrorIdis omitted, the session's latest console error is selected automatically. Returns a clear text message when the session has no console errors.@peekdev/cli@0.1.0-alpha.31
Patch Changes