Skip to content

feat: add models endpoint querying to agentic engine JS harness (all engines)#28579

Draft
Copilot wants to merge 5 commits intomainfrom
copilot/update-agentic-engine-models-endpoint
Draft

feat: add models endpoint querying to agentic engine JS harness (all engines)#28579
Copilot wants to merge 5 commits intomainfrom
copilot/update-agentic-engine-models-endpoint

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 26, 2026

Summary

Adds support for querying the models endpoint of agentic engines before agent execution starts. The fetched model list is stored in /tmp/gh-aw/agents.json (included in the agent artifact), logged to the driver log, and appended to the step summary as a collapsible <details> section. The query runs directly inside the existing driver harness or as a shell preamble — no separate GitHub Actions step is emitted.

Changes

Go — engine layer

File Change
pkg/workflow/agentic_engine.go Extended ModelsRouteProvider optional interface with GetModelsRoute(), GetModelsBaseURLEnvVar(), GetModelsDefaultBaseURL(), and GetModelsTokenEnvVar(). Added shared applyModelsRouteEnvVarsToMap() and generateModelsQueryPreamble() helpers.
pkg/workflow/copilot_engine.go CopilotEngine implements all four ModelsRouteProvider methods (/models, GITHUB_COPILOT_BASE_URL, https://api.githubcopilot.com, COPILOT_GITHUB_TOKEN).
pkg/workflow/claude_engine.go ClaudeEngine implements ModelsRouteProvider (/v1/models, ANTHROPIC_BASE_URL, https://api.anthropic.com, ANTHROPIC_API_KEY). Models query injected as shell preamble before agent command.
pkg/workflow/codex_engine.go CodexEngine implements ModelsRouteProvider (/v1/models, OPENAI_BASE_URL, https://api.openai.com, CODEX_API_KEY). Models query injected as shell preamble.
pkg/workflow/gemini_engine.go GeminiEngine implements ModelsRouteProvider (/v1/models, GEMINI_API_BASE_URL, https://generativelanguage.googleapis.com, GEMINI_API_KEY). Models query injected as shell preamble.
pkg/workflow/copilot_engine_execution.go Uses shared applyModelsRouteEnvVarsToMap() helper instead of inline code.

JavaScript — harness

File Change
actions/setup/js/agent_models.cjs New queryModels({ endpoint, token, engineId, engineVersion, agentsJsonPath?, stepSummaryPath?, logFn? }) — driver-compatible, no core.* dependency. Uses native fetch (Node 24). Added resolveModelsEndpoint() and resolveModelsToken() helpers that read generic GH_AW_MODELS_BASE_URL_ENV, GH_AW_MODELS_DEFAULT_BASE_URL, and GH_AW_MODELS_TOKEN_ENV env vars, making the module work with any engine. Standalone runner (require.main === module) uses the same generic env vars — invoked by the shell preamble for non-driver engines.
actions/setup/js/copilot_driver.cjs Uses resolveModelsEndpoint() and resolveModelsToken() instead of hardcoded Copilot-specific env vars. getAgentVersion(command) runs command --version to dynamically obtain the installed agent version.
actions/setup/js/agent_models.test.cjs 30 unit tests covering extractModelsList, buildModelsMarkdown, logModels, resolveModelsEndpoint, resolveModelsToken, queryModels (with in-process HTTP server), and main() error paths including multi-engine URL assembly.
actions/setup/js/copilot_driver.test.cjs 3 tests for getAgentVersion.

Test / lock files

  • All golden test files updated (TestWasmGolden_CompileFixtures + WasmBinary sets).
  • All 202 .lock.yml workflow files recompiled.

Behaviour at runtime

  1. For Copilot workflows, models are queried inside copilot_driver.cjs before the retry loop.
  2. For Claude, Codex, and Gemini workflows, node agent_models.cjs is injected as a best-effort shell preamble before the main agent command (AWF and non-AWF modes).
  3. The JS helpers assemble the full URL as (runtime base URL from GH_AW_MODELS_BASE_URL_ENV || GH_AW_MODELS_DEFAULT_BASE_URL) + GH_AW_MODELS_ROUTE, so requests are always routed through the configured gateway when present.
  4. The driver runs command --version to obtain the actual installed agent version before querying, ensuring agents.json always reflects the runtime version.
  5. The query is best-effort — failures are logged as warnings and the agent run always continues.
  6. If GH_AW_MODELS_ROUTE or the auth token env var are absent (e.g. inside the AWF sandbox where secrets are excluded) the query is skipped silently.
  7. On success, /tmp/gh-aw/agents.json is written and the models list appears in the step summary as a collapsible table.

agents.json format

{
  "<engineId>": {
    "version": "<actual runtime version from command --version>",
    "models": { ...raw API response... }
  }
}

- Add ModelsEndpointProvider interface to agentic engine (agentic_engine.go)
- Implement GetModelsEndpoint() for CopilotEngine returning https://api.githubcopilot.com/models
- Add generateAgentModelsStep() to compiler_yaml_ai_execution.go
- Wire models step into compiler_yaml_main_job.go before agent execution
- Create agent_models.cjs for fetching models and writing agents.json
- Create agent_models.test.cjs with 19 unit tests
- Update all golden test files to include the new pre-agent step
- Recompile all 202 workflow .lock.yml files

Agent-Logs-Url: https://github.com/github/gh-aw/sessions/a52a9d81-6d9f-4942-9b6e-99059098461f

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
@pelikhan
Copy link
Copy Markdown
Collaborator

@copilot do not emit step, query from the agent JavaScript driver / harness

…s harness

Instead of emitting a separate 'Query agent models' github-script step, pass
GH_AW_MODELS_ENDPOINT and GH_AW_ENGINE_VERSION as env vars on the execution
step and have copilot_driver.cjs call queryModels() before the retry loop.

- Remove generateAgentModelsStep() from compiler_yaml_ai_execution.go
- Remove step call from compiler_yaml_main_job.go
- Add GH_AW_MODELS_ENDPOINT + GH_AW_ENGINE_VERSION to CopilotEngine execution env
- Add queryModels() to agent_models.cjs (no core.* dependency, takes logFn callback)
- Call queryModels() from copilot_driver.cjs before agent retry loop
- Refactor logModels() to accept logFn parameter instead of using global core
- Update agent_models.test.cjs to cover new queryModels() API
- Regenerate all golden files and 202 lock.yml files

Agent-Logs-Url: https://github.com/github/gh-aw/sessions/f9c034ab-2b6d-4b23-b519-84130ca3f905

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Apr 26, 2026

@copilot do not emit step, query from the agent JavaScript driver / harness

Done in 8580a17. The separate github-script step is removed. Instead:

  • GH_AW_MODELS_ENDPOINT and GH_AW_ENGINE_VERSION are now passed as env vars on the existing execution step
  • agent_models.cjs exposes a new queryModels({ endpoint, token, engineId, engineVersion, stepSummaryPath, logFn }) function with no core.* dependency
  • copilot_driver.cjs calls queryModels() before the retry loop, logging via the driver's log() function and writing the step summary directly to $GITHUB_STEP_SUMMARY (the file path)
  • In AWF sandbox mode where COPILOT_GITHUB_TOKEN is excluded, the query is silently skipped

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/graphql
    • Triggering command: /usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw (http block)
  • https://api.github.com/repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv -c=4 -nolocalimports -importcfg /tmp/go-build3041848208/b369/importcfg -pack /home/REDACTED/work/gh-aw/gh-aw/pkg/workflow/features_import_test.go /home/REDACTED/work/gh-aw/gh-aw/pkg/workflow/import_schema_test.go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv (http block)
  • https://api.github.com/repos/github/gh-aw
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw --jq .default_branch (http block)

If you need me to access, download, or install something from one of these locations, you can either:

@pelikhan
Copy link
Copy Markdown
Collaborator

@copilot

ignore the "static" version, the driver should run the agent version command to get the actual version number

failure to query models endpoint should be warning, not stop the rest of the execution

…c env var

- Add getAgentVersion(command) to copilot_driver.cjs: runs `command --version`,
  parses first semver token with /v?(\d+\.\d+\.\d+)/, returns "unknown" on failure
- Use dynamically obtained version in queryModels() call (replaces static GH_AW_ENGINE_VERSION)
- Make unexpected errors in models query explicitly warn and continue (not stop execution)
- Remove GH_AW_ENGINE_VERSION from execution step env in copilot_engine_execution.go
- Export getAgentVersion for testing; add 3 tests in copilot_driver.test.cjs
- Regenerate all golden files and 202 lock.yml files

Agent-Logs-Url: https://github.com/github/gh-aw/sessions/995a3434-3e79-4cee-b148-fd7e1636987f

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Apr 26, 2026

@copilot

ignore the "static" version, the driver should run the agent version command to get the actual version number...

Done in 89f73a0:

  1. Dynamic version: Added getAgentVersion(command) to copilot_driver.cjs which runs command --version, parses the first semver token (/v?(\d+\.\d+\.\d+)/), and returns "unknown" on failure. The static GH_AW_ENGINE_VERSION env var is no longer emitted on the execution step.

  2. Non-fatal failures: Both queryModels() (inner try-catch logs warning and returns) and the outer catch in the driver (warning: unexpected error querying models — agent run will continue) ensure failure never stops execution.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/graphql
    • Triggering command: /usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE node (http block)
    • Triggering command: /usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE sh (http block)
    • Triggering command: /usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD GOMODCACHE node /opt�� run lint:cjs 64/bin/go GOSUMDB GOWORK 64/bin/go sh (http block)
  • https://api.github.com/repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv GOSUMDB GOWORK 64/bin/go GOINSECURE GOMOD GOMODCACHE sh -c npx prettier --cGOINSECURE GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go sh (http block)
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv &#34;prettier&#34; --cheGOINSECURE GOPROXY $name) { hasDiscussionsEnabled } } GOSUMDB GOWORK 64/bin/go /opt/hostedtoolcGO111MODULE -V=f�� (http block)
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv &#34;prettier&#34; --cheGOINSECURE GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go /opt/hostedtoolcGOPROXY -o /tmp/go-build356GOSUMDB -trimpath 64/bin/go -p main -lang=go1.25 go (http block)
  • https://api.github.com/repos/github/gh-aw
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw --jq .default_branch -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD GOMODCACHE go (http block)

If you need me to access, download, or install something from one of these locations, you can either:

Copy link
Copy Markdown
Collaborator

@pelikhan pelikhan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot the agentic engine should provide the route (usually /models), then the JavaScript should use the configured API BASE environement variable to assemble the models URL that will work within the gateway. This is meant to run from the gateway.

The agent_models is meant to be invoked from the driver JavaScript .

Comment thread actions/setup/js/agent_models.cjs Outdated
*/

const fs = require("fs");
const https = require("https");
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot this is node 24, use fetch instead

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 91b08fc. Replaced the https/http modules with native fetch using AbortSignal.timeout() for the timeout.

…OPILOT_BASE_URL; use fetch

- Rename ModelsEndpointProvider → ModelsRouteProvider; GetModelsEndpoint() → GetModelsRoute()
  returns just "/models" (route path, not full URL)
- Emit GH_AW_MODELS_ROUTE env var (route only) instead of full URL
- copilot_driver.cjs: construct URL from (GITHUB_COPILOT_BASE_URL || default) + route
  so requests are correctly routed through the gateway
- agent_models.cjs: replace https/http modules with native fetch (Node 24)
- agent_models.cjs: main() reads GH_AW_MODELS_ROUTE + GITHUB_COPILOT_BASE_URL to assemble URL
- Update tests: new env var names, URL assembly test, DEFAULT_COPILOT_BASE_URL constant test
- Regenerate all golden files and 202 lock.yml files

Agent-Logs-Url: https://github.com/github/gh-aw/sessions/09aa3874-f957-4ba0-88a7-0b9c34764670

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Apr 26, 2026

@copilot the agentic engine should provide the route (usually /models), then the JavaScript should use the configured API BASE environement variable to assemble the models URL that will work within th...

Done in 91b08fc:

  • GetModelsRoute() on the engine now returns just "/models" (route path)
  • GH_AW_MODELS_ROUTE=/models is emitted as the env var (no longer a full URL)
  • The driver assembles the full URL as (GITHUB_COPILOT_BASE_URL || "https://api.githubcopilot.com") + route, so it routes through the gateway when GITHUB_COPILOT_BASE_URL is set

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/graphql
    • Triggering command: /usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE node (http block)
    • Triggering command: /usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD GOMODCACHE /bin/sh -c if ! cd actions/GOINSECURE GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go sh (http block)
    • Triggering command: /usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD s,MFiles,HFiles,-json node /opt�� run lint:cjs 64/bin/go GOSUMDB GOWORK 64/bin/go sh (http block)
  • https://api.github.com/repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv GOSUMDB GOWORK 64/bin/go GOINSECURE GOMOD GOMODCACHE sh -c npx prettier --cGOINSECURE GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go sh (http block)
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv &#34;prettier&#34; --cheGOINSECURE GOPROXY $name) { hasDiscussionsEnabled } } GOSUMDB GOWORK 64/bin/go git cat-�� --end-of-optionsGOINSECURE blob 64/bin/go --write ../../../**/*.js-C 64/bin/go go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv che/go-build/c1/GOINSECURE GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go /opt/hostedtoolcGOPROXY -o /tmp/go-build376GOSUMDB -trimpath 64/bin/go -p main -lang=go1.25 go (http block)
  • https://api.github.com/repos/github/gh-aw
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw --jq .default_branch -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD GOMODCACHE go (http block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI requested a review from pelikhan April 26, 2026 15:43
@pelikhan
Copy link
Copy Markdown
Collaborator

@copilot this must work for all agentic engines

…ines

- Extend ModelsRouteProvider interface with GetModelsBaseURLEnvVar(),
  GetModelsDefaultBaseURL(), GetModelsTokenEnvVar() methods
- Implement ModelsRouteProvider for CopilotEngine, ClaudeEngine,
  CodexEngine, and GeminiEngine with engine-specific values
- Add applyModelsRouteEnvVarsToMap() shared helper that emits
  GH_AW_MODELS_ROUTE, GH_AW_MODELS_BASE_URL_ENV,
  GH_AW_MODELS_DEFAULT_BASE_URL, and GH_AW_MODELS_TOKEN_ENV
- Add generateModelsQueryPreamble() that injects a node call into
  non-driver engine shell commands (AWF + non-AWF modes)
- Inject models query preamble into Claude, Codex, Gemini commands
- Update copilot_driver.cjs to use generic GH_AW_MODELS_BASE_URL_ENV
  and GH_AW_MODELS_TOKEN_ENV instead of hardcoded Copilot vars
- Add resolveModelsEndpoint() and resolveModelsToken() helpers in
  agent_models.cjs for any-engine URL/token resolution
- Update main() and standalone runner to use generic env vars
- Fix GeminiEngineFirewallIntegration test assertion for new env vars
- Recompile all 202 workflow lock files and update golden test files

Agent-Logs-Url: https://github.com/github/gh-aw/sessions/9a388aa3-0def-4893-bac3-72967ae597cc

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Apr 26, 2026

@copilot this must work for all agentic engines

Done in 8ed0028. The mechanism now works for all agentic engines:

  • Extended ModelsRouteProvider with GetModelsBaseURLEnvVar(), GetModelsDefaultBaseURL(), and GetModelsTokenEnvVar() — implemented for Copilot, Claude, Codex, and Gemini
  • Added applyModelsRouteEnvVarsToMap() shared helper that emits GH_AW_MODELS_ROUTE, GH_AW_MODELS_BASE_URL_ENV, GH_AW_MODELS_DEFAULT_BASE_URL, and GH_AW_MODELS_TOKEN_ENV for all engines
  • Added generateModelsQueryPreamble() that injects node agent_models.cjs into the shell command for non-driver engines (Claude, Codex, Gemini) — works in both AWF and non-AWF mode; silently skips when the token is unavailable (e.g. excluded inside AWF sandbox)
  • Updated agent_models.cjs with resolveModelsEndpoint() and resolveModelsToken() helpers that use the generic env vars instead of Copilot-specific ones
  • Updated copilot_driver.cjs to use the same generic helpers

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/graphql
    • Triggering command: /usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD GOMODCACHE go env -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE node (http block)
    • Triggering command: /usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD GOMODCACHE npm run lint:cjs GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go sh (http block)
    • Triggering command: /usr/bin/gh /usr/bin/gh api graphql -f query=query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } -f owner=github -f name=gh-aw GOMOD s,MFiles,HFiles,-json node /opt�� run lint:cjs 64/bin/go GOSUMDB GOWORK 64/bin/go sh (http block)
  • https://api.github.com/orgs/test-owner/actions/secrets
    • Triggering command: /usr/bin/gh gh api /orgs/test-owner/actions/secrets --jq .secrets[].name -json GO111MODULE me: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD ed } } go (http block)
  • https://api.github.com/repos/actions/ai-inference/git/ref/tags/v1
    • Triggering command: /usr/bin/gh gh api /repos/actions/ai-inference/git/ref/tags/v1 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git 0444/001/stabiligit show /usr/bin/gh git rev-�� --show-toplevel /usr/bin/gh /usr/bin/git ithub/workflows -f /usr/local/sbin/install git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/ai-inference/git/ref/tags/v1 --jq [.object.sha, .object.type] | @tsv --noprofile git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel node ache/go/1.25.8/xinstall git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/ai-inference/git/ref/tags/v1 --jq [.object.sha, .object.type] | @tsv --noprofile git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v3
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv --get remote.origin.url /opt/hostedtoolcache/node/24.14.1/x64/bin/node -json GO111MODULE ck.yml node /tmp�� /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/archie.md go /usr/bin/git k/gh-aw/gh-aw/.ggit GO111MODULE yml git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel ache/go/1.25.8/xrev-parse /usr/bin/git git rev-�� --show-toplevel git .cfg --show-toplevel ache/go/1.25.8/xrev-parse /usr/bin/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v3 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git .cfg --show-toplevel bash /usr/bin/git git (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v5
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv inspect ghcr.io/github/serena-mcp-server:latest cal/bin/bash -json GO111MODULE 64/bin/go git -C 1715-27863/test-3345155334/.github/workflows config /usr/bin/git remote.origin.urgit GO111MODULE $name) { has--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git t287745953 config .yml git rev-�� --show-toplevel git /usr/bin/git /home/REDACTED/worgit rev-parse sh git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v5 --jq [.object.sha, .object.type] | @tsv --show-toplevel /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet /usr/bin/git -aw/git/ref/tagsgit -buildtags bject.type] | @t--show-toplevel git rev-�� --show-toplevel git /usr/bin/git --show-toplevel -tests /usr/bin/git git (http block)
  • https://api.github.com/repos/actions/checkout/git/ref/tags/v6
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv ons-test1390000154 go /usr/bin/git -json GO111MODULE r: $owner, name:--show-toplevel git conf�� thImports2524587406/001 url /usr/bin/git ithub/workflows GO111MODULE /opt/hostedtoolc--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv --show-toplevel git 64/pkg/tool/linux_amd64/vet --show-toplevel docker /usr/bin/git 64/pkg/tool/linux_amd64/vet rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/checkout/git/ref/tags/v6 --jq [.object.sha, .object.type] | @tsv --show-toplevel git 64/pkg/tool/linux_amd64/compile --show-toplevel git /usr/bin/git 64/pkg/tool/linux_amd64/compile rev-�� _.a git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v8
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv --show-toplevel ache/go/1.25.8/x64/pkg/tool/linuremote2 /usr/bin/git Onlymin-integritbash rev-parse 9039727/b001/importcfg.link git rev-�� --show-toplevel RusVHL4w6gwFP/kEbNWvQuTuy_M0sPjZ3I/V-0_XNdPd8Ai3UQM1mIh/0B6VI58R-buildtags /usr/bin/git ry=1 -f e/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/local/sbin/--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v8 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
  • https://api.github.com/repos/actions/github-script/git/ref/tags/v9
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv ithub/workflows GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env ithub/workflows GO111MODULE r: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD ed } } go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE mption-report.lock.yml GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE r: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/github-script/git/ref/tags/v9 --jq [.object.sha, .object.type] | @tsv -json GO111MODULE repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD GOMODCACHE go env ithub/workflows GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
  • https://api.github.com/repos/actions/setup-go/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv user.email test@example.com /usr/bin/gh source-field-vargit rev-parse me: String!) { --show-toplevel gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts /usr/bin/gh .artifacts[].namgit itbranch_with_hyrev-parse /usr/bin/docker gh (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git 3031479/b416/vet.cfg --show-toplevel /bin/sh /usr/bin/git git rev-�� --show-toplevel git /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet --show-toplevel git /usr/bin/git /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel gh 3288597/b419/vet.cfg /repos/github/ghgit --jq /usr/bin/git git rev-�� --show-toplevel git /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet --show-toplevel git /usr/bin/git /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
  • https://api.github.com/repos/actions/setup-node/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv xterm-color go /usr/bin/git -json GO111MODULE oken-optimizer.l--show-toplevel git remo�� GOMODCACHE go om/other/repo.git -json GO111MODULE me: String!) { --show-toplevel gh (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv add origin /usr/bin/gh ithub/workflows -f (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/setup-node/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel ROOT&#34; ] &amp;&amp; expo 64/pkg/tool/linux_amd64/vet --show-toplevel git /usr/bin/git 64/pkg/tool/linux_amd64/vet rev-�� --show-toplevel git /usr/bin/git --show-toplevel infocmp /usr/bin/git git (http block)
  • https://api.github.com/repos/actions/upload-artifact/git/ref/tags/v4
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv . -tests /usr/bin/git -json GO111MODULE me: String!) { --show-toplevel git -C /tmp/TestGuardPolicyMinIntegrityOnlymin-integrity_only_defaults_repo3905381703/001 config /usr/bin/git remote.origin.urgit :latest r_pin_test.go git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/gh --show-toplevel git /usr/bin/git /usr/bin/gh (http block)
    • Triggering command: /usr/bin/gh gh api /repos/actions/upload-artifact/git/ref/tags/v4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
  • https://api.github.com/repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv GOSUMDB GOWORK 64/bin/go GOINSECURE GOMOD GOMODCACHE sh -c npx prettier --cGOINSECURE GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go sh (http block)
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv &#34;prettier&#34; --cheGOINSECURE GOPROXY $name) { hasDiscussionsEnabled } } GOSUMDB GOWORK 64/bin/go git cat-�� --end-of-optionsGOINSECURE blob 64/bin/go --noprofile (http block)
    • Triggering command: /usr/bin/gh gh api /repos/astral-sh/setup-uv/git/ref/tags/eac588ad8def6316056a12d4907a9d4d84ff7a3b --jq [.object.sha, .object.type] | @tsv che/go-build/67/GOINSECURE GOPROXY 64/bin/go GOSUMDB GOWORK 64/bin/go /opt/hostedtoolcGOPROXY -o /tmp/go-build149GOSUMDB -trimpath 64/bin/go -p main -lang=go1.25 go (http block)
  • https://api.github.com/repos/github/gh-aw
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw --jq .default_branch -json GO111MODULE 64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v0.1.2
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v0.1.2 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git /workflows rev-parse n-dir/bash /usr/bin/git conf�� --get-regexp ^remote\..*\.gh-resolved$ /usr/bin/infocmp k/gh-aw/gh-aw/.ggit show /usr/bin/git infocmp (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v0.1.2 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel /usr/lib/git-correv-parse /usr/bin/git git rev-�� --show-toplevel git /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet --show-toplevel node /usr/bin/infocmp--show-toplevel /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v0.1.2 --jq [.object.sha, .object.type] | @tsv --show-toplevel git 3288597/b403/vet.cfg --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet --show-toplevel infocmp /usr/bin/git /opt/hostedtoolcache/go/1.25.8/x64/pkg/tool/linux_amd64/vet (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv git-upload-pack &#39;/tmp/TestParseDefaultBranchFromLsRemoteWithRealGitbranch_with_hyphen3088321890/git l /usr/bin/git ithub/workflows GO111MODULE ache/go/1.25.8/x--show-toplevel git -C /tmp/TestGuardPolicyMinIntegrityOnlyrepos_only_without_min-integrity2720274721/001 config 0&#34;}} remote.origin.urgit GO111MODULE repository(owne--show-toplevel git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv --show-toplevel git n-dir/bash --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
  • https://api.github.com/repos/github/gh-aw-actions/git/ref/tags/v1.2.3
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv --bare (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel /usr/bin/gh .0/x64/bin/go git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw-actions/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv --show-toplevel ROOT&#34; ] &amp;&amp; expo /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/1/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/1/artifacts --jq .artifacts[].name config 1/x64/bin/bash remote.origin.urgit **/*.cjs 64/bin/go git -C k/gh-aw/gh-aw show kflows/smoke-agent-public-none.lock.yml -json GO111MODULE 64/bin/go git (http block)
    • Triggering command: /usr/bin/gh gh run download 1 --dir test-logs/run-1 config 64/pkg/tool/linux_amd64/link l --check $name) { has--show-toplevel 64/pkg/tool/linux_amd64/link -C mpiledOutput3982448424/001 show /usr/bin/git l GO111MODULE 64/bin/go git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/12345/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12345/artifacts --jq .artifacts[].name itcustom_branch2324465539/002/work er@0.32.0 che/go-build/4c/git GOPROXY DiscussionsEnablremove /usr/bin/gh api graphql erena-mcp-server:latest 64/pkg/tool/linux_amd64/vet -f owner=github -f 64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh run download 12345 --dir test-logs/run-12345 mLsRemoteWithRealGitcustom_branch2324465539/001&#39; 64/pkg/tool/linux_amd64/vet l **/*.cjs $name) { hasadd 64/pkg/tool/linuremote2 -C y_with_explicit_repo1954178053/001 config /usr/bin/git remote.origin.urgit GO111MODULE 64/bin/go git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/12346/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/12346/artifacts --jq .artifacts[].name LsRemoteWithRealGitcustom_branch2324465539/001&#39; er@0.32.0 -f owner=github -f infocmp -1 01/main.md /opt/hostedtoolc-s -w -X main.version=91b08fc-dirty 64/pkg/tool/linux_amd64/vet /tmp/go-build149git -trimpath 64/bin/go 64/pkg/tool/linux_amd64/vet (http block)
    • Triggering command: /usr/bin/gh gh run download 12346 --dir test-logs/run-12346 config 64/pkg/tool/linux_amd64/link remote.origin.urgit **/*.cjs DiscussionsEnabl--get 64/pkg/tool/linuremote.origin.url -C 01/main.md show /usr/bin/git l GO111MODULE $name) { has--get git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/2/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/2/artifacts --jq .artifacts[].name -f kflows/org-health-report.lock.yml -f owner=github -f infocmp -1 y_with_repos_array_c1237016698/001 go kflows/smoke-agent-public-approved.lock.yml -json GO111MODULE 64/bin/go git (http block)
    • Triggering command: /usr/bin/gh gh run download 2 --dir test-logs/run-2 show 64/pkg/tool/linux_amd64/vet prettier --check 64/bin/go 64/pkg/tool/linux_amd64/vet api mpiledOutput3982448424/001 -f kflows/smoke-codex.lock.yml -f owner=github -f git (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/3/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/3/artifacts --jq .artifacts[].name rev-parse 64/bin/bash --check **/*.cjs $name) { has--show-toplevel git -C 1/test1.md config /usr/bin/git l GO111MODULE 64/bin/go git (http block)
    • Triggering command: /usr/bin/gh gh run download 3 --dir test-logs/run-3 LsRemoteWithRealGitbranch_with_hyphen3088321890/001&#39; 64/pkg/tool/linux_amd64/vet prettier --check 64/bin/go 64/pkg/tool/linux_amd64/vet -C mpiledOutput3982448424/001 config /usr/bin/docker remote.origin.urgit GO111MODULE DiscussionsEnabled } } docker (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/4/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/4/artifacts --jq .artifacts[].name LsRemoteWithRealGitcustom_branch2324465539/001&#39; er: String!, $name: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabl--show-toplevel --check **/*.cjs 64/bin/go git -C y_with_repos_array_c1237016698/001 rev-parse /usr/bin/git -json GO111MODULE 64/bin/go git (http block)
    • Triggering command: /usr/bin/gh gh run download 4 --dir test-logs/run-4 rev-parse 64/pkg/tool/linux_amd64/link prettier --check 64/bin/go 64/pkg/tool/linux_amd64/link -1 7/001/inlined-a.md erena-mcp-server:latest rtcfg.link -json GO111MODULE 64/bin/go bNWvQuTuy_M0sPjZ3I/V-0_XNdPd8Ai3remote.origin.url (http block)
  • https://api.github.com/repos/github/gh-aw/actions/runs/5/artifacts
    • Triggering command: /usr/bin/gh gh api --paginate repos/{owner}/{repo}/actions/runs/5/artifacts --jq .artifacts[].name itbranch_with_hyphen3088321890/002/work /usr/bin/docker l **/*.cjs 64/bin/go docker imag�� ithout_min-integrity2720274721/001 semgrep/semgrep:latest (http block)
    • Triggering command: /usr/bin/gh gh run download 5 --dir test-logs/run-5 rev-parse kflows/poem-bot.lock.yml --check **/*.cjs 64/bin/go git -C k/gh-aw/gh-aw/.github/workflows config /usr/bin/gh l GO111MODULE DiscussionsEnabl--show-toplevel /usr/bin/gh (http block)
  • https://api.github.com/repos/github/gh-aw/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path -json GO111MODULE ession-insights.lock.yml GOINSECURE GOMOD GOMODCACHE go env ithub/workflows GO111MODULE /opt/hostedtoolcache/go/1.25.8/x-f GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --workflow nonexistent-workflow-12345 --limit 100 GOMOD GOMODCACHE go env -json GO111MODULE me: String!) { --quiet GOINSECURE GOMOD GOMODCACHE go (http block)
    • Triggering command: /usr/bin/gh gh run list --json databaseId,number,url,status,conclusion,workflowName,createdAt,startedAt,updatedAt,event,headBranch,headSha,displayTitle --workflow nonexistent-workflow-12345 --limit 6 GOPROXY 64/bin/go git -C 3861622505/.github/workflows rver 64/pkg/tool/linux_amd64/vet remote.origin.urgit go 64/bin/go 64/pkg/tool/linutest@example.com (http block)
  • https://api.github.com/repos/github/gh-aw/contents/.github/workflows/shared/reporting.md
    • Triggering command: /tmp/go-build2892181838/b404/cli.test /tmp/go-build2892181838/b404/cli.test -test.testlogfile=/tmp/go-build2892181838/b404/testlog.txt -test.paniconexit0 -test.v=true -test.parallel=4 -test.timeout=10m0s -test.run=^Test -test.short=true GOINSECURE GOMOD GOMODCACHE go env ithub/workflows GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v0.47.4
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v0.47.4 --jq [.object.sha, .object.type] | @tsv --show-toplevel /usr/bin/gh /usr/bin/git graphql -f ache/go/1.25.8/x--show-toplevel git rev-�� --show-toplevel ache/go/1.25.8/x64/pkg/tool/linux_amd64/compile /usr/bin/git 4075999599 show 1/x64/bin/node git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v0.47.4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel /usr/lib/git-correv-parse /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v0.47.4 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git i-inference/git/git git bject.type] | @t--show-toplevel git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /home/REDACTED/wor/tmp/gh-aw/aw-feature-branch.patch git (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw config kflows/smoke-crush.lock.yml remote.origin.urgit GO111MODULE 64/bin/go git -C ai-moderator.md show ache/uv/0.11.7/x86_64/bash -json GO111MODULE 64/bin/go git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git /tmp/TestCompilegit config /usr/bin/docker git rev-�� --show-toplevel docker /usr/bin/git test/concurrent-bash go /usr/bin/git git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.0.0 --jq [.object.sha, .object.type] | @tsv --show-toplevel 16800c55..HEAD /usr/bin/git heckout/git/ref/git git bject.type] | @t--show-toplevel git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v1.2.3
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v1.2.3 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw/.github/workflows GO111MODULE -docs-consolidator.lock.yml GOINSECURE GOMOD GOMODCACHE go env Gitmain_branch481931710/001&#39; Gitmain_branch481931710/001&#39; (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v2.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv ithub/workflows GO111MODULE repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD GOMODCACHE go env ithub/workflows GO111MODULE /snap/bin/bash GOINSECURE GOMOD GOMODCACHE bash (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv ithub/workflows GO111MODULE kflows/blog-audi-nilfunc GOINSECURE GOMOD ed } } go env k/gh-aw/gh-aw/.github/workflows GO111MODULE /usr/local/bin/bash GOINSECURE GOMOD GOMODCACHE bash (http block)
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v2.0.0 --jq [.object.sha, .object.type] | @tsv k/gh-aw/gh-aw/.g-errorsas GO111MODULE me: String!) { -nilfunc GOINSECURE GOMOD GOMODCACHE go env k/gh-aw/gh-aw/.gremote.origin.url GO111MODULE /usr/bin/tail GOINSECURE GOMOD ed } } tail (http block)
  • https://api.github.com/repos/github/gh-aw/git/ref/tags/v3.0.0
    • Triggering command: /usr/bin/gh gh api /repos/github/gh-aw/git/ref/tags/v3.0.0 --jq [.object.sha, .object.type] | @tsv ithub/workflows GO111MODULE yml GOINSECURE GOMOD GOMODCACHE go env y-frontmatter.md GO111MODULE /home/REDACTED/.config/composer/vendor/bin/bash l GOMOD GOMODCACHE bash (http block)
  • https://api.github.com/repos/nonexistent/action/git/ref/tags/v999.999.999
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv graphql -f /usr/bin/git -f owner=github -f git -C t287745953 config .yml remote.origin.urgh GO111MODULE 64/bin/go git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel go /usr/bin/docker git rev-�� --show-toplevel docker /usr/bin/git rhysd/actionlintbash go e/git-remote-htt--noprofile git (http block)
    • Triggering command: /usr/bin/gh gh api /repos/nonexistent/action/git/ref/tags/v999.999.999 --jq [.object.sha, .object.type] | @tsv --show-toplevel git /usr/bin/git --show-toplevel git /usr/bin/git git rev-�� --show-toplevel git /usr/bin/git --show-toplevel git sh git (http block)
  • https://api.github.com/repos/nonexistent/repo/actions/runs/12345
    • Triggering command: /usr/bin/gh gh run view 12345 --repo nonexistent/repo --json status,conclusion --check scripts/**/*.js 64/bin/go infocmp -1 k/gh-aw/gh-aw/.github/workflows go /usr/bin/git -json GO111MODULE $name) { has--show-toplevel git (http block)
  • https://api.github.com/repos/owner/repo/actions/workflows
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo me: String!) { repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD ed } } go (http block)
    • Triggering command: /usr/bin/gh gh workflow list --json name,state,path --repo owner/repo r: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE repository(owner: $owner, name: $name) { hasDiscussionsEnabled } } GOINSECURE GOMOD ed } } go (http block)
    • Triggering command: /usr/bin/gh gh workflow list --repo owner/repo --json name,path,state 64/pkg/tool/linux_amd64/vet -f owner=github -f 64/pkg/tool/linux_amd64/vet -C /home/REDACTED/work/gh-aw/gh-aw/.github/workflows rev-parse ache/go/1.25.8/x64/pkg/tool/linux_amd64/vet -json GO111MODULE r: $owner, name:--paginate ache/go/1.25.8/xrepos/{owner}/{repo}/actions/runs/12346/artifacts (http block)
  • https://api.github.com/repos/test-owner/test-repo/actions/secrets
    • Triggering command: /usr/bin/gh gh api /repos/test-owner/test-repo/actions/secrets --jq .secrets[].name -json GO111MODULE ache/go/1.25.8/x64/bin/go GOINSECURE GOMOD GOMODCACHE go env -json GO111MODULE me: String!) { -nilfunc GOINSECURE GOMOD GOMODCACHE go (http block)
  • https://api.github.com/repos/test/repo
    • Triggering command: /usr/bin/gh gh api /repos/test/repo --jq .default_branch mpiledOutput3982448424/001 -f kflows/smoke-codex.lock.yml -f owner=github -f git -C /ref/tags/v9 config sv remote.origin.urgh GO111MODULE $name) { hasdownload /usr/bin/gh (http block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI changed the title feat: add models endpoint querying to agentic engine JS harness feat: add models endpoint querying to agentic engine JS harness (all engines) Apr 26, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants