chore(release): cut v0.4.1#66
Merged
Merged
Conversation
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.
Summary
Cuts
v0.4.1. BumpsCargo.toml0.4.0 → 0.4.1, rotates the[Unreleased]CHANGELOG block into a dated section, and updates the README install snippet'sVERSIONconstant to point at the new release.Headline change in this release (curated in
CHANGELOG.md):SessionStarthook output now reaches the model ashookSpecificOutput.additionalContextinstead of the terminal-onlysystemMessagechip, so the pinned-conventions index and meta-instruction actually seed the conversation on session start (fix: deliver SessionStart hook payload to model context; silence PostCompact #65).PostCompactno longer emits a hook payload. Claude Code's hook output validator rejectshookSpecificOutputfor this event, leaving only the chip-onlysystemMessageenvelope — which never reaches the model and renders as long terminal noise on every/compact. The handler now does its dedup-file truncation silently; on-demand pattern injection viaPreToolUsecontinues to work (fix: deliver SessionStart hook payload to model context; silence PostCompact #65).No breaking changes to the binary or hook protocol. The
HookOutputRust type was reshaped internally; lore has no documented Rust library consumers.Background and limitation context:
docs/hook-pipeline-reference.md— per-event envelope table and thePostCompactknown-limitation note.ROADMAP.md— candidate workarounds for restoring a post-compaction re-prime channel.docs/solutions/integration-issues/verify-host-delivery-not-just-hook-exit-2026-05-22.md— institutional learning from the investigation.See
docs/release-process.mdfor the full runbook.Test plan
just ciclean locally (release-prepruns it before printing the next-steps banner)SessionStartpayload reaches the model onstartup/resume/clear/compact;/compactno longer raises a validator error and produces no terminal chip;PreToolUsecontinues to inject on demand.