Skip to content

Bump AWF to v0.25.44 and add firewall.effective-token-steering compiler support#31796

Merged
pelikhan merged 11 commits into
mainfrom
copilot/bump-awf-firewall-to-v02544
May 12, 2026
Merged

Bump AWF to v0.25.44 and add firewall.effective-token-steering compiler support#31796
pelikhan merged 11 commits into
mainfrom
copilot/bump-awf-firewall-to-v02544

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented May 12, 2026

This updates gh-aw’s AWF integration from v0.25.43 to v0.25.44 and wires the new token-steering surface into compiler output. Per issue guidance, --max-model-multiplier follow-up work is intentionally excluded from this PR.

  • ## ✨ Enhancement
    • Version + release alignment
      • Bumped default AWF version to v0.25.44.
      • Recompiled lock/golden artifacts so generated workflows now pin 0.25.44 images and AWF install version consistently.
    • Compiler mapping for token steering
      • Added support for frontmatter:
        • firewall.effective-token-steering: true
      • Propagates to AWF config as:
        • apiProxy.enableTokenSteering: true
      • Preserved this setting across string-engine import normalization paths so it survives engine setup orchestration.
    • Version gating + schema updates
      • Added AWFTokenSteeringMinVersion = v0.25.44 and gated emission of enableTokenSteering for older pinned AWF versions.
      • Updated embedded AWF config schema copy to include apiProxy.enableTokenSteering.
      • Extended main frontmatter schema to accept top-level firewall.effective-token-steering.
    • Spec-facing metadata/docs
      • Added a patch changeset describing the AWF bump and token-steering support addition.
# workflow frontmatter
firewall:
  effective-token-steering: true
// generated awf-config.json (apiProxy excerpt)
{
  "apiProxy": {
    "enabled": true,
    "enableTokenSteering": true
  }
}

Copilot AI linked an issue May 12, 2026 that may be closed by this pull request
Copilot AI and others added 2 commits May 12, 2026 21:30
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot AI changed the title [WIP] Bump AWF firewall dependency to v0.25.44 Bump AWF to v0.25.44 and add firewall.effective-token-steering compiler support May 12, 2026
Copilot AI requested a review from pelikhan May 12, 2026 21:46
@pelikhan
Copy link
Copy Markdown
Collaborator

@copilot enable feature flag on 30% of agentic workflows

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

@copilot enable this feature on 50% of daily agentic workflows

Copy link
Copy Markdown
Contributor Author

Copilot AI commented May 12, 2026

@copilot enable feature flag on 30% of agentic workflows

Implemented in f055b9d. Enabled firewall.effective-token-steering: true on 5 of 16 centralized agentic command workflows (~31%), and recompiled their .lock.yml files so apiProxy.enableTokenSteering is active for that rollout slice.

Copilot AI and others added 2 commits May 12, 2026 22:03
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented May 12, 2026

@copilot enable this feature on 50% of daily agentic workflows

Implemented in 635dbdf. Enabled firewall.effective-token-steering: true on 27 of 53 daily-* workflows (~50.9%) and recompiled those .lock.yml files so apiProxy.enableTokenSteering is enabled for that rollout cohort.

@pelikhan pelikhan marked this pull request as ready for review May 12, 2026 22:45
Copilot AI review requested due to automatic review settings May 12, 2026 22:45
@pelikhan
Copy link
Copy Markdown
Collaborator

@copilot merge main and recompile

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

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Updates gh-aw’s AWF integration to v0.25.44 and adds compiler/frontmatter support for firewall.effective-token-steering, emitting it into generated AWF config as apiProxy.enableTokenSteering with version gating.

Changes:

  • Bump default AWF version to v0.25.44 and refresh generated lock + golden artifacts to match.
  • Add firewall.effective-token-steering parsing/schema support and propagate to AWF config as apiProxy.enableTokenSteering (gated to AWF >= v0.25.44).
  • Add unit tests for extraction, orchestration preservation, version gating, and schema validation.
Show a summary per file
File Description
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden Updates golden output to AWF v0.25.44 pins/metadata.
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden Updates golden output to AWF v0.25.44 pins/metadata.
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden Updates golden output to AWF v0.25.44 pins/metadata.
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden Updates golden output to AWF v0.25.44 pins/metadata.
pkg/workflow/schemas/awf-config.schema.json Adds schema support for apiProxy.enableTokenSteering.
pkg/workflow/engine.go Parses firewall.effective-token-steering into EngineConfig.
pkg/workflow/engine_config_test.go Adds tests validating extraction of token steering config.
pkg/workflow/compiler_orchestrator_engine.go Preserves token steering across string-engine import expansion.
pkg/workflow/compiler_orchestrator_engine_test.go Adds regression test ensuring preservation of token steering.
pkg/workflow/awf_helpers.go Adds AWF version gate helper for token steering support.
pkg/workflow/awf_helpers_test.go Adds tests for token steering version gating behavior.
pkg/workflow/awf_config.go Emits apiProxy.enableTokenSteering with AWF min-version gating.
pkg/workflow/awf_config_test.go Adds tests for emission/omission of enableTokenSteering.
pkg/parser/schemas/main_workflow_schema.json Extends frontmatter schema to allow firewall.effective-token-steering.
pkg/parser/schema_test.go Adds schema validation tests for the new firewall frontmatter field.
pkg/constants/version_constants.go Bumps default firewall version and adds AWFTokenSteeringMinVersion.
pkg/constants/spec_test.go Adds spec assertion for AWFTokenSteeringMinVersion.
.github/workflows/test-workflow.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/smoke-opencode.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/smoke-ci.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/release.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/hippo-embed.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/gpclean.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/github-remote-mcp-auth-test.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/firewall.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/example-permissions-warning.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/bot-detection.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/copilot-token-optimizer.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version (incl. cli-proxy).
.github/workflows/codex-github-remote-mcp-test.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/code-simplifier.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/changeset.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/ai-moderator.lock.yml Refreshes locked workflow to AWF 0.25.44 images/version.
.github/workflows/agentic_commands.yml Updates generated centralized commands metadata (compiler version field).
.github/workflows/daily-mcp-concurrency-analysis.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-malicious-code-scan.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-issues-report.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-hippo-learn.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-grafana-otel-instrumentation-advisor.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-geo-optimizer.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-function-namer.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-firewall-report.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-file-diet.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-fact.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-experiment-report.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-doc-updater.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-doc-healer.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-compiler-threat-spec-optimizer.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-compiler-quality.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-community-attribution.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-code-metrics.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-cli-tools-tester.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-cli-performance.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-choice-test.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-caveman-optimizer.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-cache-strategy-analyzer.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-aw-cross-repo-compile-check.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-astrostylelite-markdown-spellcheck.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-assign-issue-to-user.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-architecture-diagram.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/daily-agentrx-trace-optimizer.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/cloclo.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/brave.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/archie.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/approach-validator.md Enables firewall.effective-token-steering in workflow frontmatter.
.github/workflows/ace-editor.md Enables firewall.effective-token-steering in workflow frontmatter.
.changeset/patch-bump-awf-v0-25-44.md Adds changeset documenting the AWF bump and token steering support.

Copilot's findings

Tip

Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

  • Files reviewed: 80/274 changed files
  • Comments generated: 0

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

Copilot AI commented May 12, 2026

@copilot merge main and recompile

Implemented in 26ba207. Merged origin/main into this branch and recompiled the affected workflow lock files to keep the branch up to date on top of main.

@pelikhan
Copy link
Copy Markdown
Collaborator

@copilot merge main and recompile

…wall-to-v02544

# Conflicts:
#	.github/workflows/agentic_commands.yml
#	.github/workflows/api-consumption-report.lock.yml
#	.github/workflows/audit-workflows.lock.yml
#	.github/workflows/changeset.lock.yml
#	.github/workflows/cli-version-checker.lock.yml
#	.github/workflows/cloclo.lock.yml
#	.github/workflows/copilot-opt.lock.yml
#	.github/workflows/daily-issues-report.lock.yml
#	.github/workflows/daily-news.lock.yml
#	.github/workflows/daily-security-red-team.lock.yml
#	.github/workflows/deep-report.lock.yml
#	.github/workflows/discussion-task-miner.lock.yml
#	.github/workflows/glossary-maintainer.lock.yml
#	.github/workflows/issue-arborist.lock.yml
#	.github/workflows/org-health-report.lock.yml
#	.github/workflows/prompt-clustering-analysis.lock.yml
#	.github/workflows/safe-output-health.lock.yml
#	.github/workflows/scout.lock.yml
#	.github/workflows/stale-repo-identifier.lock.yml
#	.github/workflows/technical-doc-writer.lock.yml

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

Copilot AI commented May 12, 2026

@copilot merge main and recompile

Done in 9a1c128. I merged latest main, resolved conflicts, and recompiled the affected workflow output.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 12, 2026

🚀 Smoke Pi MISSION COMPLETE! Pi delivered. 🥧

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 12, 2026

🎬 THE ENDSmoke Claude MISSION: ACCOMPLISHED! The hero saves the day! ✨

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 12, 2026

🌑 The shadows whisper... Smoke Codex failed to deliver outputs. The oracle requires further meditation...

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 12, 2026

🚀 Smoke Gemini MISSION COMPLETE! Gemini has spoken. ✨

Caution

Security scanning requires review for Smoke Gemini

Details

The threat detection results could not be parsed. The workflow output should be reviewed before merging.

Review the workflow run logs for details.

@github-actions
Copy link
Copy Markdown
Contributor

📰 BREAKING: Smoke Copilot is now investigating this pull request. Sources say the story is developing...

@github-actions github-actions Bot removed the smoke label May 12, 2026
@github-actions
Copy link
Copy Markdown
Contributor

Agent Container Tool Check

Tool Status Version
bash 5.2.21
sh available
git 2.53.0
jq 1.7
yq v4.52.5
curl 8.5.0
gh 2.89.0
node v22.22.2
python3 3.10.16 (PyPy 7.3.19)
go 1.24.13
java openjdk 21.0.10
dotnet 10.0.201

Result: 12/12 tools available ✅

Overall Status: PASS

🔧 Tool validation by Agent Container Smoke Test · ● 1.2M ·

@github-actions
Copy link
Copy Markdown
Contributor

Caution

Security scanning requires review for Smoke Gemini

Details

The threat detection results could not be parsed. The workflow output should be reviewed before merging.

Review the workflow run logs for details.

Smoke Test: Gemini - 25768552824

  • GitHub MCP Testing: ✅
  • Web Fetch Testing: ✅
  • File Writing Testing: ✅
  • Bash Tool Testing: ✅
  • Build gh-aw: ❌

Overall status: FAIL

Warning

Firewall blocked 1 domain

The following domain was blocked by the firewall during workflow execution:

  • localhost

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "localhost"

See Network Configuration for more information.

Smoke Gemini — Powered by Gemini ·

@pelikhan pelikhan merged commit c1df2cd into main May 12, 2026
182 checks passed
@pelikhan pelikhan deleted the copilot/bump-awf-firewall-to-v02544 branch May 12, 2026 23:44
@github-actions
Copy link
Copy Markdown
Contributor

Smoke Test Codex 25768552833: FAIL
PRs: #31800 Fix: redirect-only workflows misidentified as shared workflow components; #31807 Add reasoning_depth A/B experiment to daily-security-red-team workflow
✅ GitHub MCP ✅ Serena ✅ Playwright ✅ File/Bash ✅ Build ✅ Cache ✅ Set field
❌ Web Fetch MCP unavailable; ❌ no comment-memory markdown files present

Warning

Firewall blocked 6 domains

The following domains were blocked by the firewall during workflow execution:

  • accounts.google.com
  • android.clients.google.com
  • clients2.google.com
  • contentautofill.googleapis.com
  • safebrowsingohttpgateway.googleapis.com
  • www.google.com

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "accounts.google.com"
    - "android.clients.google.com"
    - "clients2.google.com"
    - "contentautofill.googleapis.com"
    - "safebrowsingohttpgateway.googleapis.com"
    - "www.google.com"

See Network Configuration for more information.

🔮 The oracle has spoken through Smoke Codex ·

@github-actions
Copy link
Copy Markdown
Contributor

Smoke Test: Claude — Run 25768552851

Overall: ⚠️ PARTIAL

Core #1#12: all ✅
PR Review #13 ✅ · #14 ✅ · #15 ✅ · #16 ⚠️ · #17 ✅ · #18 ✅ · #19 ⚠️

Skipped: resolve thread (none unresolved at resolve-time) · close PR (no safe test PR).

Warning

Firewall blocked 6 domains

The following domains were blocked by the firewall during workflow execution:

  • accounts.google.com
  • android.clients.google.com
  • clients2.google.com
  • contentautofill.googleapis.com
  • safebrowsingohttpgateway.googleapis.com
  • www.google.com

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "accounts.google.com"
    - "android.clients.google.com"
    - "clients2.google.com"
    - "contentautofill.googleapis.com"
    - "safebrowsingohttpgateway.googleapis.com"
    - "www.google.com"

See Network Configuration for more information.

💥 [THE END] — Illustrated by Smoke Claude · ● 5.4M ·

Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

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

💥 Automated smoke test review - all systems nominal!

Warning

Firewall blocked 6 domains

The following domains were blocked by the firewall during workflow execution:

  • accounts.google.com
  • android.clients.google.com
  • clients2.google.com
  • contentautofill.googleapis.com
  • safebrowsingohttpgateway.googleapis.com
  • www.google.com

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "accounts.google.com"
    - "android.clients.google.com"
    - "clients2.google.com"
    - "contentautofill.googleapis.com"
    - "safebrowsingohttpgateway.googleapis.com"
    - "www.google.com"

See Network Configuration for more information.

💥 [THE END] — Illustrated by Smoke Claude · ● 5.4M

"gh-aw": patch
---

Bump default `gh-aw-firewall` to `v0.25.44` and add compiler/frontmatter support for `firewall.effective-token-steering` mapped to AWF `apiProxy.enableTokenSteering`.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Nit: consider linking to the AWF release notes for v0.25.44 so readers can see what changed upstream.

@@ -0,0 +1,5 @@
---
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Confirm the changeset bump-type (patch) is correct since this exposes a new compiler frontmatter key.

@github-actions
Copy link
Copy Markdown
Contributor

🤖 The smoke test agent stopped by to say hello! This automated comment is brought to you by Copilot smoke testing — here to verify all the agentic workflows are humming along nicely. 👋 Everything looks great from where I stand!

Warning

Firewall blocked 6 domains

The following domains were blocked by the firewall during workflow execution:

  • accounts.google.com
  • android.clients.google.com
  • clients2.google.com
  • contentautofill.googleapis.com
  • safebrowsingohttpgateway.googleapis.com
  • www.google.com

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "accounts.google.com"
    - "android.clients.google.com"
    - "clients2.google.com"
    - "contentautofill.googleapis.com"
    - "safebrowsingohttpgateway.googleapis.com"
    - "www.google.com"

See Network Configuration for more information.

📰 BREAKING: Report filed by Smoke Copilot · ● 21.5M ·

@github-actions
Copy link
Copy Markdown
Contributor

Smoke Test Results for PR #31796

Test Status
GitHub MCP (last 2 merged PRs)
MCP Scripts GH CLI
Serena CLI (7 symbols)
Playwright CLI
Web Fetch
File Writing + Bash
Discussion Interaction
Build gh-aw
Upload artifact
Discussion Creation
Workflow Dispatch
PR Review
Comment Memory
Sub-Agent

Overall: ⚠️ PARTIAL PASS (13/15)

Author: @app/copilot-swe-agent | Assignees: @pelikhan, @Copilot

Warning

Firewall blocked 6 domains

The following domains were blocked by the firewall during workflow execution:

  • accounts.google.com
  • android.clients.google.com
  • clients2.google.com
  • contentautofill.googleapis.com
  • safebrowsingohttpgateway.googleapis.com
  • www.google.com

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "accounts.google.com"
    - "android.clients.google.com"
    - "clients2.google.com"
    - "contentautofill.googleapis.com"
    - "safebrowsingohttpgateway.googleapis.com"
    - "www.google.com"

See Network Configuration for more information.

📰 BREAKING: Report filed by Smoke Copilot · ● 21.5M ·

Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

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

Smoke test review: AWF bump to v0.25.44 looks clean — compiler version updated, all lock files recompiled with matching container image versions. LGTM!

Warning

Firewall blocked 6 domains

The following domains were blocked by the firewall during workflow execution:

  • accounts.google.com
  • android.clients.google.com
  • clients2.google.com
  • contentautofill.googleapis.com
  • safebrowsingohttpgateway.googleapis.com
  • www.google.com

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "accounts.google.com"
    - "android.clients.google.com"
    - "clients2.google.com"
    - "contentautofill.googleapis.com"
    - "safebrowsingohttpgateway.googleapis.com"
    - "www.google.com"

See Network Configuration for more information.

📰 BREAKING: Report filed by Smoke Copilot · ● 21.5M

@@ -1,4 +1,4 @@
# gh-aw-commands: {"payload_version":"v1","schema_version":"v1","compiler_version":"796aca5","commands":["ace","approach-validator","archie","brave","cloclo","craft","grumpy","mergefest","nit","plan","poem-bot","review","security-review","summarize","tidy","unbloat"],"workflows":["ace-editor","approach-validator","archie","brave","cloclo","craft","grumpy-reviewer","mergefest","pdf-summary","plan","poem-bot","pr-code-quality-reviewer","pr-nitpick-reviewer","security-review","tidy","unbloat-docs"]}
# gh-aw-commands: {"payload_version":"v1","schema_version":"v1","compiler_version":"26ba207","commands":["ace","approach-validator","archie","brave","cloclo","craft","grumpy","mergefest","nit","plan","poem-bot","review","security-review","summarize","tidy","unbloat"],"workflows":["ace-editor","approach-validator","archie","brave","cloclo","craft","grumpy-reviewer","mergefest","pdf-summary","plan","poem-bot","pr-code-quality-reviewer","pr-nitpick-reviewer","security-review","tidy","unbloat-docs"]}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🔍 Smoke test review: compiler_version updated from 17b58a0 to 26ba207 — looks correct for AWF v0.25.44 bump.

@@ -1,5 +1,5 @@
# gh-aw-metadata: {"schema_version":"v3","frontmatter_hash":"cb0295dc75812c5592ebb592222783ff4bfba5b764686561a2a0e11325d510bc","strict":true,"agent_id":"claude"}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

✅ Lock file updated: gh-aw-firewall container bumped to v0.25.44 across all service images (agent, api-proxy, squid). The frontmatter hash also updated, confirming a clean recompile.

@github-actions
Copy link
Copy Markdown
Contributor

📰 DEVELOPING STORY: Smoke Copilot reports failed to deliver outputs. Our correspondents are investigating the incident...

github-actions Bot added a commit that referenced this pull request May 13, 2026
…rtifact-compat feature flag

Add reference documentation for three user-facing surfaces merged in the
last 24h that had no prior documentation:

- firewall.effective-token-steering (#31796): budget-warning system
  message injection via AWF v0.25.44+
- concurrency.queue and features.group-concurrency-queue (#31764):
  queue:max behavior and opt-out for compiler-generated groups
- features.ghes-artifact-compat (#31664): per-workflow GHES artifact
  compatibility opt-in via frontmatter or GH_AW_FEATURES env var

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Bump AWF firewall to v0.25.44

3 participants