test(prose): only walks that can be observed, and checks that survive the trip#566
Open
leeovery wants to merge 1 commit into
Open
test(prose): only walks that can be observed, and checks that survive the trip#566leeovery wants to merge 1 commit into
leeovery wants to merge 1 commit into
Conversation
… the trip Two findings from running all nine cases. Eight passed on Sonnet, with every invariant derived from the prose in the previous change holding up against a live walk. The ninth, smoke-start-boot-structure, came back INVALID twice. It was the one structure-only case — read the prose, trace the logic, execute nothing — so it built no world, and with no world the hook records no actions and there is no delta. The asserter was handed an expected path and no evidence of any kind, and refused to judge it. Correctly: nothing about that walk was observable, so nothing it claimed could be answered. It was scaffolding from before real cases existed, and its one claim — casing conventions load before the boot pipeline — is covered by start-lists-active-work, which walks the same skill against a world. It goes, and a world becomes required, which removes the category rather than leaving a trap for the next author. The branches that served it go with it: the structural walker prompt, the world: null response, the no-world arms in prompt, diff and assert. The second finding is subtler. The orchestrator's verdict block had no line for the deterministic checks, so the asserter reported them and the orchestrator dropped them. Nine PASSes came back and the only reason to believe the checks passed was the rule that a failing one forces FAIL — an inference, about the one part of the result that exists precisely so nothing has to infer anything. They now travel through to the block and into the skill's table, unsummarised. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This was referenced Jul 26, 2026
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
Two findings from running all nine cases. Eight passed on Sonnet, and every invariant derived from prose in #565 held up against a live walk — that PR's open caveat is now closed.
The ninth came back INVALID, twice.
smoke-start-boot-structurewas the one structure-only case — read the prose, trace the logic, execute nothing — so it built no world. No world means the hook records no actions and there's no delta, so the asserter received an expected path and no evidence of any kind. It refused to judge, correctly: nothing about that walk was observable, so nothing it claimed could be answered.It was scaffolding from before real cases existed, and its one claim (casing conventions load before the boot pipeline) is covered by
start-lists-active-work, which walks the same skill against a world. So it goes, and a world becomes required — removing the category rather than leaving a trap for the next author. The branches serving it go too: the structural walker prompt, theworld: nullresponse, the no-world arms inprompt/diff/assert.The second is subtler. The orchestrator's verdict block had no line for the deterministic checks, so the asserter reported them and the orchestrator dropped them. Nine PASSes came back and the only reason to believe the checks passed was the rule that a failing one forces FAIL — an inference, about the one part of the result that exists precisely so nothing has to infer anything. They now travel through to the block and into the skill's collation table, unsummarised.
Test plan
claude-sonnet-5, all worlds destroyed, tree clean🤖 Generated with Claude Code
Stack