Add pluggable coding-agent backends - #9
Draft
areshand wants to merge 3 commits into
Draft
Conversation
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
launch.shas the source-checkout compatibility entrypointWhy
Provider command construction was mixed into workflow, permission, and tmux lifecycle code. That made new coding agents harder to add and made tracing/cancellation behavior provider-dependent. The new boundary keeps workflow authority and filesystem isolation in Rust while treating each coding agent as an existing external runtime.
The SWE image source digest also included Cargo's
target/directory, adding hundreds of megabytes of irrelevant build artifacts. The bake filter now excludes it and tests pin that provenance behavior.Impact
codex,claude, orqwenlaunch.shcontinues to locate/build and exec the Rust workflow for existing callersValidation
cargo fmt --all -- --checkcargo clippy --all-targets -- -D warningscargo test— 27 passedbash tests/run.sh— all Rust/Shell/Python integration and lifecycle suites passedThe opt-in live Qwen read/write smoke test is implemented but was not completed because no Qwen Code authentication is configured in the test environment. Offline fake-backend coverage passed.