fix(plugins): use default tags for official plugin installs

This commit is contained in:
Vincent Koc
2026-05-02 14:36:59 -07:00
parent 2fd1e7b32d
commit 00ad13b599
16 changed files with 29 additions and 28 deletions

View File

@@ -47,7 +47,7 @@ if ! docker_e2e_run_with_harness \
-e OPENCLAW_CODEX_NPM_PLUGIN_ALLOW_BETA_COMPAT_DIAGNOSTICS="${OPENCLAW_CODEX_NPM_PLUGIN_ALLOW_BETA_COMPAT_DIAGNOSTICS:-0}" \
-e OPENCLAW_CODEX_NPM_PLUGIN_FORCE_UNSAFE_INSTALL="${OPENCLAW_CODEX_NPM_PLUGIN_FORCE_UNSAFE_INSTALL:-0}" \
-e OPENCLAW_CODEX_NPM_PLUGIN_MODEL="${OPENCLAW_CODEX_NPM_PLUGIN_MODEL:-codex/gpt-5.4}" \
-e OPENCLAW_CODEX_NPM_PLUGIN_SPEC="${OPENCLAW_CODEX_NPM_PLUGIN_SPEC:-npm:@openclaw/codex@beta}" \
-e OPENCLAW_CODEX_NPM_PLUGIN_SPEC="${OPENCLAW_CODEX_NPM_PLUGIN_SPEC:-npm:@openclaw/codex}" \
-e "OPENCLAW_TEST_STATE_SCRIPT_B64=$OPENCLAW_TEST_STATE_SCRIPT_B64" \
"${DOCKER_E2E_PACKAGE_ARGS[@]}" \
"${PROFILE_MOUNT[@]}" \

View File

@@ -96,7 +96,7 @@ function readInstallRecords() {
}
function assertPlugin() {
const spec = process.argv[3] || "npm:@openclaw/codex@beta";
const spec = process.argv[3] || "npm:@openclaw/codex";
const list = readJson("/tmp/openclaw-codex-plugins-list.json");
const inspect = readJson("/tmp/openclaw-codex-plugin-inspect.json");
const plugin = (list.plugins || []).find((entry) => entry.id === "codex");