Delegate WordPress execution to WP Codebox#2294
Merged
Merged
Conversation
This was referenced Jul 18, 2026
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
wordpress_directoryinstead of plugin mountsextra_plugins,wp_codebox_source_root, andwp_codebox_source_subpathWhy
The WordPress extension independently rebuilt WP Codebox source resolution, recipe construction, PHPUnit discovery, dependency handling, browser orchestration, and artifact parsing. That duplicated the runtime owner and allowed the two contracts to drift.
This change leaves Homeboy Extensions responsible for Homeboy request/result projection while WP Codebox owns runtime construction and execution.
Upstream dependency: Automattic/wp-codebox#1865
How to test
cd wordpressfrom a fresh checkout.node tests/wp-codebox-canonical-cli-adapters-smoke.mjs.node tests/codebox-client-boundary.test.js.node tests/wordpress-fuzz-runner-smoke.js.node tests/wp-codebox-fuzz-run-smoke.js.npm pack --dry-run --ignore-scripts.Compatibility
This deliberately removes legacy Codebox settings, camelCase request aliases, sibling-worktree/cache/global-module discovery, and the legacy artifact preflight path. Existing callers must use the canonical installed runtime binary and canonical snake_case input contract. No backwards-compatibility shim is retained.
AI assistance