You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@codex Please implement the exact architecture cleanup defined by the RED tests on this PR. Scope is behavior-preserving only: (1) rename the sole internal runtime package scripts/workflow_v2/ to scripts/workflow/ and update all imports, test filenames/classes, docs/help strings and current references; (2) remove legacy schema API (LEGACY_COMPATIBLE_KINDS, ParsedDocument.legacy, allow_legacy, legacy normalization) and update all callers/tests to the strict current-only API; (3) fold source_schema.py and parallel_schema.py validators directly into canonical schemas.py, remove import-time validator monkey-patching and delete those extension modules; coordination must support only current operations (claim_admission, finalize_admission, proposal_reconcile, translation_acceptance), not workflow upgrade; (4) remove the accidentally committed docs/superpowers/ plan; (5) update naming-only defaults such as workflow-v2 temp lock/commit prefixes to unversioned workflow where safe, without changing durable .workflow/ paths or state semantics; (6) keep all existing behavior and regression coverage, including claims, translation acceptance, review, corpus restore/integrity, GitHub/filesystem storage, finalize, Markdown/EPUB and representative dogfood. Do not touch main or PR #36. Run the full unittest suite and commit the implementation to this PR branch. Do not weaken the new architecture tests.
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
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.
Goal
Finish the current-only workflow consolidation without changing supported behavior.
Scope
scripts/workflow_v2/toscripts/workflow/;TDD state
This PR intentionally starts RED with architecture-contract tests.
mainremains unchanged until the exact-head Python 3.10/3.12 matrix is fully GREEN.Historical PR #36 is out of scope and must remain untouched.