ci: enable agentic provider live tests (claude-code, codex, gemini-cli)#7088
Merged
codefromthecrypt merged 1 commit intomainfrom Feb 10, 2026
Merged
ci: enable agentic provider live tests (claude-code, codex, gemini-cli)#7088codefromthecrypt merged 1 commit intomainfrom
codefromthecrypt merged 1 commit intomainfrom
Conversation
Install CLI tools via npm in smoke test jobs and add CODEX_API_KEY and GEMINI_API_KEY env var mappings. Agentic providers use a file-read prompt with a known content marker instead of the shell/ls prompt, since they handle tools internally. Skip agentic providers in --code-exec mode. Signed-off-by: Adrian Cole <adrian@tetrate.io>
240da96 to
ec7d516
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Enables live CI coverage for agentic CLI-based providers by installing their CLIs in smoke-test jobs and adapting the provider test script to validate agentic behavior via a deterministic file-read prompt instead of tool-call log patterns.
Changes:
- Install
@anthropic-ai/claude-code,@openai/codex, and@google/gemini-cliin PR smoke-test workflows and map existing secrets toCODEX_API_KEY/GEMINI_API_KEY. - Update
scripts/test_providers.shto detect agentic providers and validate success by checking for known file content output. - Skip agentic providers when running in
--code-execmode.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| scripts/test_providers.sh | Adds agentic-provider detection and switches agentic verification to a file-read/content-marker check; skips agentic providers in code-exec mode. |
| .github/workflows/pr-smoke-test.yml | Installs Node + agentic provider CLIs in smoke-test jobs and exports additional env vars for Codex/Gemini CLIs. |
michaelneale
approved these changes
Feb 10, 2026
Collaborator
michaelneale
left a comment
There was a problem hiding this comment.
good to have these - not sure if copilot feedback is helpful or gaslighting in this case.
Collaborator
Author
|
yeah copilot was pretty horrible this time. complete hallucination! |
zanesq
added a commit
that referenced
this pull request
Feb 10, 2026
…tensions-deeplinks * 'main' of github.com:block/goose: [docs] update authors.yaml file (#7114) Implement manpage generation for goose-cli (#6980) docs: tool output optimization (#7109) Fix duplicated output in Code Mode by filtering content by audience (#7117) Enable tom (Top Of Mind) platform extension by default (#7111) chore: added notification for canary build failure (#7106) fix: fix windows bundle random failure and optimise canary build (#7105) feat(acp): add model selection support for session/new and session/set_model (#7112) fix: isolate claude-code sessions via stream-json session_id (#7108) ci: enable agentic provider live tests (claude-code, codex, gemini-cli) (#7088) docs: codex subscription support (#7104) chore: add a new scenario (#7107) fix: Goose Desktop missing Calendar and Reminders entitlements (#7100) Fix 'Edit In Place' and 'Fork Session' features (#6970) Fix: Only send command content to command injection classifier (excluding part of tool call dict) (#7082) Docs: require auth optional for custom providers (#7098) fix: improve text-muted contrast for better readability (#7095) Always sync bundled extensions (#7057)
tlongwell-block
added a commit
that referenced
this pull request
Feb 10, 2026
* origin/main: feat: add AGENT=goose environment variable for cross-tool compatibility (#7017) fix: strip empty extensions array when deeplink also (#7096) [docs] update authors.yaml file (#7114) Implement manpage generation for goose-cli (#6980) docs: tool output optimization (#7109) Fix duplicated output in Code Mode by filtering content by audience (#7117) Enable tom (Top Of Mind) platform extension by default (#7111) chore: added notification for canary build failure (#7106) fix: fix windows bundle random failure and optimise canary build (#7105) feat(acp): add model selection support for session/new and session/set_model (#7112) fix: isolate claude-code sessions via stream-json session_id (#7108) ci: enable agentic provider live tests (claude-code, codex, gemini-cli) (#7088) docs: codex subscription support (#7104) chore: add a new scenario (#7107) fix: Goose Desktop missing Calendar and Reminders entitlements (#7100) Fix 'Edit In Place' and 'Fork Session' features (#6970) Fix: Only send command content to command injection classifier (excluding part of tool call dict) (#7082) # Conflicts: # crates/goose/src/agents/extension.rs
jh-block
added a commit
that referenced
this pull request
Feb 10, 2026
* origin/main: (30 commits) docs: GCP Vertex AI org policy filtering & update OnboardingProviderSetup component (#7125) feat: replace subagent and skills with unified summon extension (#6964) feat: add AGENT=goose environment variable for cross-tool compatibility (#7017) fix: strip empty extensions array when deeplink also (#7096) [docs] update authors.yaml file (#7114) Implement manpage generation for goose-cli (#6980) docs: tool output optimization (#7109) Fix duplicated output in Code Mode by filtering content by audience (#7117) Enable tom (Top Of Mind) platform extension by default (#7111) chore: added notification for canary build failure (#7106) fix: fix windows bundle random failure and optimise canary build (#7105) feat(acp): add model selection support for session/new and session/set_model (#7112) fix: isolate claude-code sessions via stream-json session_id (#7108) ci: enable agentic provider live tests (claude-code, codex, gemini-cli) (#7088) docs: codex subscription support (#7104) chore: add a new scenario (#7107) fix: Goose Desktop missing Calendar and Reminders entitlements (#7100) Fix 'Edit In Place' and 'Fork Session' features (#6970) Fix: Only send command content to command injection classifier (excluding part of tool call dict) (#7082) Docs: require auth optional for custom providers (#7098) ...
Tyler-Hardin
pushed a commit
to Tyler-Hardin/goose
that referenced
this pull request
Feb 11, 2026
…i) (block#7088) Signed-off-by: Adrian Cole <adrian@tetrate.io>
Tyler-Hardin
pushed a commit
to Tyler-Hardin/goose
that referenced
this pull request
Feb 11, 2026
…i) (block#7088) Signed-off-by: Adrian Cole <adrian@tetrate.io>
This was referenced Feb 12, 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
Enable agentic provider live tests in CI. These providers were conditionally included in
test_providers.shbut always skipped because the CLI tools weren't installed.This sets up claude-code, codex, gemini-cli because we have credentials for them already. This doesn't do cursor-agent as it needs authentication we don't already have. Someone could follow-up.
Here are the main changes
@anthropic-ai/claude-code,@openai/codex,@google/gemini-clivia npm in both smoke test jobsCODEX_API_KEYandGEMINI_API_KEYenv varstest-content-abc123) instead of the shell/ls prompt, since they handle tools internally and can't produceshell | developerlog patterns--code-execmode, as we currently don't export our extensions to agents as MCP.Type of Change
AI Assistance
Testing
Verified all three agentic providers pass in CI: https://github.com/block/goose/actions/runs/21844636599