You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(claude): keep IDE-context envelopes out of first_message previews
The VS Code extension often prepends a <ide_opened_file> or
<ide_selection> wrapper directly onto a real prompt in the same user
entry. PR kenn-io#1252 promoted standalone envelopes to hidden system
metadata, but this mixed case (envelope + real prompt in one message)
falls outside that strict standalone match by design, so the raw
markup stayed in first_message and the visible transcript.
Split a leading IDE-context envelope off from the rest of the
message: the envelope becomes its own hidden system-metadata message
(same ide_opened_file/ide_selection subtype as the standalone case),
and the remaining real prompt becomes an ordinary user message.
first_message and user turn counts are computed from the same
firstMessageAndUserCount pass used before, so they now derive from
the real prompt only.
Bumps the parser data version to 75 so existing rows re-parse.
0 commit comments