v0.0.63 - #183
Merged
Merged
v0.0.63#183
Conversation
devsuitup
force-pushed
the
release/v0.0.63
branch
from
September 4, 2026 14:56
108c976 to
b7fdd1b
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.
Version bump for v0.0.63.
What's Changed
Bug Fixes
activitylevel reports what is actually known;confirmedis reserved for a transport that re-reads the effect. Readers testing forconfirmednow take their retry branch — strictly more cautious. (fix(triggers): stop reporting observed activity as a confirmed submission #168)javascript:target survived into the DOM with its href intact. (fix(viewer): sanitize marked output in transcript renderer #169)schedule-*.mdinside a known project's.claude/commands/. The sensitive-path and memory-path guards only normalised strings, so a symlinked directory could serve a file from outside an allowed root or hide~/.sshbehind an innocuous name; both now resolve on disk before deciding, and the memory guard hands back the resolved path so the read or write lands where the check looked.preLaunchCmd, which previously rejected only newlines, is restricted to a closed character allowlist — this refuses bare$VARexpansion and quoted arguments, neither of which belongs to the documented prefix form. (fix(ipc): close path and command guard gaps on 4 handlers #180)Features
expectedCwd. A writer declares the working directory it believes the target session runs in, and the transport refuses to write anything if the session disagrees or if its directory cannot be determined, reporting the two cases distinctly. Omit the field and behaviour is unchanged. This guards against a stale or racing session id delivering a command to a session that never asked for it. It does not separate two sessions running in the same folder. (feat(triggers): add an optional expectedCwd target guard #182)Documentation
.ai/were corrected against the repository as it actually is: paths that never existed on this machine, stale file sizes and line numbers, and a trigger-watcher measurement protocol that the same section already disproved. The Linux AppImage warnings are kept and labelled as Linux-specific rather than deleted — they record real incidents whose underlying principle still applies. (docs: fix stale facts across .ai/ and README #179)CI / Tooling
npm run coverage, and npm only chainspretesttotest, so lint had never executed on a pull request; it is now its own job. The test matrix gainswindows-2022on Node 20 and 22 — the platform the app is developed on was the one platform never exercised. Adding it immediately surfaced a real defect: the activity trace signalled a finished stream onfinish(data flushed) rather thanclose(file descriptor released), and Windows refuses to remove a directory still holding an open handle. Both that and the case of several retired streams closing at once are fixed, and waiting on a close is now bounded so a descriptor that never releases degrades instead of freezing the Diagnostics toggle. (ci(test): fix silent lint gate, add Windows to test matrix, tooling cleanup #181)