From 0abaaa1e37c7bebf24bbaff5fc57a8f4ced3d877 Mon Sep 17 00:00:00 2001 From: "pullfrog[bot]" <226033991+pullfrog[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 20:26:26 +0000 Subject: [PATCH] chore(oss): add yamcodes/arkenv to OSS program (#776) * chore(oss): add yamcodes/arkenv to OSS program * fix(test): strip CODEX_AUTH_JSON in apiKeys auto-select test The beforeEach strip list omitted CODEX_AUTH_JSON, which is in `knownApiKeys` via the openai provider's managedCredentials. When the env has CODEX_AUTH_JSON set, the auto-select "throws when no provider keys are present" assertion finds it and fails to throw. --------- Co-authored-by: pullfrog[bot] <226033991+pullfrog[bot]@users.noreply.github.com> --- utils/apiKeys.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/apiKeys.test.ts b/utils/apiKeys.test.ts index c679a89..82279ad 100644 --- a/utils/apiKeys.test.ts +++ b/utils/apiKeys.test.ts @@ -15,6 +15,7 @@ const savedEnv = { ...process.env }; const STRIPPED_PREFIXES_OR_NAMES = [ /_API_KEY$/, /^CLAUDE_CODE_OAUTH_TOKEN$/, + /^CODEX_AUTH_JSON$/, /^AWS_BEARER_TOKEN_BEDROCK$/, /^AWS_ACCESS_KEY_ID$/, /^AWS_SECRET_ACCESS_KEY$/,