Release 0.1.7 - #114
Merged
Merged
Conversation
Two defects closed since 0.1.6, both found by re-verifying a stale bug backlog against main rather than by a report: - admission accepted `END` as an edge source and `START` as a target, so a graph that cannot be built was admitted and failed in materialisation — charged to the execution-failure allowance rather than the rejection one, and reaching the planner as prose instead of a code and a remedy (#108/#109). - a sandboxed child that died without sending escaped as a bare `EOFError('')`, which the agent loop rendered to the model as `TOOL_ERROR:` and nothing else (#111/#112). The version moves in the two places CI compares and the six where prose states it. `tests/test_deep_dive.py` and `tests/test_cookbook_*.py` assert all but the README line, which is how they stay right. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
Two defects closed since 0.1.6, both found by re-verifying a stale bug backlog against
mainrather than from a report.END -> x/x -> STARTwas admitted and then died inMaterializer, charged tomax_consecutive_execution_failures(2) rather thanmax_consecutive_rejections(3), and reaching the planner as prose instead of a coded rejection.EOFError('')(harness: a sandboxed child that dies without sending escapes as a bare EOFError, so the agent is told 'TOOL_ERROR:' and nothing else #111 → A sandboxed child that dies without sending names the tool it was running #112), whichAgentNoderendered to the model asTOOL_ERROR:with nothing after the colon.Both shipped with tests that go red without the fix.
Why now
0.1.6is already on PyPI and a version can only be uploaded once, so the two fixes above are not installable until this goes out.Verification
uv run pytestgreen ·uv run ruff check .clean. The version moves in the two places CI compares and the six where prose states it; all but the README line are asserted by tests.🤖 Generated with Claude Code