Add linchpin to Plugins - #183
Open
jonit-dev wants to merge 1 commit into
Open
Conversation
A Codex plugin that runs a batch of PRDs as parallel git-worktree lanes. The distinguishing part is the split: the model that implements a lane is never the model that approves it, and the reviewer runs in a separate read-only process, so delivery is gated on the PRD's own negative controls rather than on a worker's summary.
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.
Adding linchpin under Plugins.
What it is: a Codex plugin that takes a folder of PRDs and builds them. It splits the batch into lanes by file-collision graph, runs each lane in its own git worktree via
codex exec, and reports what shipped and what did not.Why it is not another orchestrator wrapper: the model that writes the code is never the model that approves it. The reviewer is a fresh
codex exec --sandbox read-onlyprocess on a different model, and a lane cannot be recorded as delivered without observed-red evidence for every negative control the PRD declared — the helper verifies the commit sha resolves before it will write the row. Executing an existing PRD never rewrites it; sections a PRD does not declare are reported missing rather than invented.Full disclosure: I am the author and the project is new (MIT, CI green, 39 tests including observed-red controls). Happy to trim the description or move it to Multi-Agent Orchestration if you prefer that section.