feat(xgodriver): implement SPX project-driver source mode - #1753
Draft
joeykchen wants to merge 1 commit into
Draft
feat(xgodriver): implement SPX project-driver source mode#1753joeykchen wants to merge 1 commit into
joeykchen wants to merge 1 commit into
Conversation
joeykchen
force-pushed
the
feat/xgo-project-driver-spx
branch
from
August 21, 2026 02:04
500dfd5 to
6a96067
Compare
joeykchen
force-pushed
the
feat/xgo-project-driver-spx
branch
from
August 21, 2026 04:09
6a96067 to
ff0bb2d
Compare
This was referenced Aug 21, 2026
joeykchen
force-pushed
the
feat/xgo-project-driver-spx
branch
2 times, most recently
from
August 21, 2026 04:44
487feeb to
c8f0450
Compare
joeykchen
force-pushed
the
feat/xgo-project-driver-spx
branch
from
August 21, 2026 10:28
c8f0450 to
81ded25
Compare
joeykchen
force-pushed
the
feat/xgo-project-driver-spx
branch
from
August 21, 2026 13:04
81ded25 to
9d66020
Compare
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
Supersedes goplus/spx#1742, which GitHub closed when its fork head branch was renamed.
This PR implements the SPX side of XGo Project Driver v1 described in #1741. It intentionally completes source mode only; published SPX module/bridge mode remains fail-closed until immutable bridge manifests and the coordinated release pipeline are available.
Project Driver integration
driver v1 github.com/goplus/spx/v3/cmd/xgodriveringox.mod.cmd/xgodriverandinternal/xgodriver, usingdriverprotocol,DriverPackage,DriverOrigin, and thexgo-driver-v1preamble.xgo run,xgo build, andxgo installwhen SPX is the main module, a workspace module, or an unversioned local replacement.Engine runtime and packaging
Project Driver is separate from the true Engine runtime layer:
xgo run.xgo install.The bilingual design document is now:
docs/en/dev/engine/xgo-project-driver-proposal-issue.mddocs/zh/dev/engine/xgo-project-driver-proposal-issue.mdVerification
A local
go.workcontaining the Mod, XGo, and SPX checkouts was used for coordinated verification.The local XGo binary also passed real
tutorial/05-Animationsmoke tests for:xgo run . -- -headlessxgo build -o <output> ., followed by launching the executableGOBIN=<bin> xgo install ., followed by launching the installed executableProcess-chain inspection confirmed XGo ->
xgo-driver-v1-> SPX driver ->gdspxrt2.4.3, with no child processes left after cancellation.Dependencies and release order
driverprotocol, and resolved provenance.Part of #1741. This PR must not close the proposal while published mode and coordinated release remain pending.