Fix Codex runner variant dispatcher - #25
Merged
Merged
Conversation
KeyffMS
added a commit
that referenced
this pull request
Sep 7, 2026
…rotocol (#34) Preserve the exact source-bound full run #25 archive, provenance and capability results. Make the C08 missing-checkpoint stop and same-run repaired completion finite and fail closed on timeout, incomplete observation or changed files. Separate fresh unexecuted templates from historical qualified evidence, strengthen production provenance/product-identity checks, add scoped c08 live mode and protected real-CLI conformance. Keep product payload, C09/C10/C13 runtimes and self-hosted runner security unchanged. PR CI #118 passed all eight jobs including actual Codex 0.153.4 loopback tests; the new model-backed C08 result remains pending.
This was referenced Sep 7, 2026
KeyffMS
added a commit
that referenced
this pull request
Sep 7, 2026
…ure (#35) Documentation-only alignment with the existing full-archive production validator. Record the merged finite C08 repair and the automated run #26 rejected by the local initiating-actor policy before Codex. Require a fresh main/full run by an allowed account; retain runner security and distinguish offline conformance from live evidence. Preserve archived run #25 and leave all product, runtime, tests and release guards unchanged. PR CI #120 passed.
KeyffMS
added a commit
that referenced
this pull request
Sep 8, 2026
Preserve full self-hosted run #27 (34140846679) exactly, with its actual source a9cdcdc and all C01-C16 REPRODUCED. C08 now proves expected stop and repaired completion without timeout; C09/C10 regressions passed and C13 retains the explicit non-ephemeral fallback. Update current evidence/provenance and status/release documentation while keeping original #25, product/runtime/security and release guards unchanged. Strict release validation passed on the exact reviewed tree; PR CI #124 passed all eight jobs. No new live run or production tag is created. Closes #7.
KeyffMS
added a commit
that referenced
this pull request
Sep 8, 2026
Reconcile compliance and release notes with immutable full #27 evidence, preserve #25 history and the C13 non-ephemeral limitation, and add three documentation consistency regressions. PR CI #126 passed all eight jobs. VERSION and qualified product/runtime bytes remain unchanged. Production publication still requires strict validation and a verified signed annotated tag. Closes #17.
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
Fixes the diagnostic runner crash from qualification run #13:
TypeError: _hook_variant() takes 3 positional arguments but 8 were givenThe matrix dispatcher stores variants as tuples and expands them positionally. The hook, compaction, and subagent helpers all declared their variant fields as keyword-only, so all three families were vulnerable to the same runtime failure.
Changes
_hook_variant,_compact_variant, and_subagent_variantsignatures with the tuple-based dispatcher;No capability contract, runner policy, workflow, sandbox, or release gate behavior is changed.