chore: sync actions from gh-aw@v0.87.10 - #222
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
Runtime-relative stop times reset their deadline on every run instead of retaining the compilation-time anchor.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
Syncs runtime actions from gh-aw v0.87.10.
Changes:
- Migrates MCP gateway authentication to agent IDs.
- Adds Copilot SDK tool controls, web fetching, cooldown checks, and telemetry.
- Updates provider routing and AI-credit accounting.
File summaries
| File | Description |
|---|---|
setup/sh/stop_mcp_gateway.sh |
Uses agent ID during shutdown |
setup/sh/start_mcp_gateway.sh |
Migrates gateway startup contract |
setup/sh/check_mcp_servers.sh |
Renames authentication argument |
setup/js/trace_graders.cjs |
Validates grader severity |
setup/js/testdata/copilot_sdk_web_fetch_contract.json |
Adds web-fetch contract fixture |
setup/js/start_mcp_gateway.cjs |
Migrates gateway authentication |
setup/js/send_otlp_span.cjs |
Adds grader and eval telemetry |
setup/js/pi_provider.cjs |
Routes OpenAI through Responses API |
setup/js/pi_models_json.cjs |
Selects provider API families |
setup/js/pi_agent_core_driver.cjs |
Supports OpenAI Responses models |
setup/js/parse_token_usage.cjs |
Improves deduplication and credit output |
setup/js/parse_mcp_gateway_log.cjs |
Uses AWF-reported AI credits |
setup/js/mount_mcp_as_cli.cjs |
Migrates mounted MCP authentication |
setup/js/model_costs.cjs |
Handles explicit cache semantics |
setup/js/fixtures/awf-v0.28.7-aic-token-usage.jsonl |
Adds AI-credit fixture data |
setup/js/copilot_sdk_web_fetch.cjs |
Adds proxy-enforced web fetching |
setup/js/copilot_sdk_tool_config.cjs |
Adds compiler-controlled tool filtering |
setup/js/copilot_sdk_session.cjs |
Applies tool configuration to sessions |
setup/js/copilot_sdk_driver.cjs |
Loads the structured tool contract |
setup/js/codex_harness.cjs |
Detects unsupported tool schemas |
setup/js/check_stop_time.cjs |
Supports runtime relative stop times |
setup/js/check_cooldown.cjs |
Adds workflow cooldown gating |
setup/js/add_reaction_and_edit_comment.cjs |
Consolidates event-field validation |
Review details
- Files reviewed: 23/23 changed files
- Comments generated: 1
- Review effort level: Balanced
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| let stopTimeDate; | ||
| if (isRelativeStopTime(stopTime)) { | ||
| try { | ||
| stopTimeDate = resolveRelativeStopTime(stopTime, new Date()); |
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.
Automated sync of actions from gh-aw at
v0.87.10.