[WIP] Debug workflow failure in agent performance analyzer#14057
Closed
[WIP] Debug workflow failure in agent performance analyzer#14057
Conversation
Copilot stopped work on behalf of
pelikhan due to an error
February 6, 2026 06:02
This was referenced Feb 6, 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.
Investigation: Agent Performance Analyzer - Meta-Orchestrator Failure
Root Cause
The workflow failed because the
agentic-workflowsMCP server requiresGH_TOKENenvironment variable to be passed to the MCP gateway Docker container forghextension operations. Currently, onlyGITHUB_TOKENis configured in the container environment.Fix Plan
GH_TOKENin agentic-workflows MCP configGH_TOKENto envVars array inrenderAgenticWorkflowsMCPConfigWithOptionsGH_TOKENis included in configmake agent-finishfor full validationTechnical Details
File:
pkg/workflow/mcp_config_builtin.goFunction:
renderAgenticWorkflowsMCPConfigWithOptions(line 161)Issue: The
envVarsarray only includesDEBUGandGITHUB_TOKEN, but notGH_TOKENThe Codex engine version (line 463 in mcp_renderer.go) correctly includes both tokens:
But the JSON format (used by Copilot) only includes:
{"DEBUG", "*", true}, {"GITHUB_TOKEN", "GITHUB_TOKEN", false}, // Missing: GH_TOKENError from Logs
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.