Improve microsoft-foundry skill's create/debug part#1016
Merged
JasonYeMSFT merged 1 commit intomicrosoft:mainfrom Feb 24, 2026
Merged
Improve microsoft-foundry skill's create/debug part#1016JasonYeMSFT merged 1 commit intomicrosoft:mainfrom
JasonYeMSFT merged 1 commit intomicrosoft:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR improves the microsoft-foundry skill's agent creation and debugging documentation by reorganizing best practices guidance and updating debugging instructions for Agent Framework-based hosted agents.
Changes:
- Updated debugging section in agentframework.md with clearer component descriptions and corrected documentation links
- Reorganized Agent Framework best practices reference to apply to both greenfield and brownfield scenarios
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| plugin/skills/microsoft-foundry/foundry-agent/create/references/agentframework.md | Added hyperlink to AI Toolkit, rewrote debug task descriptions, and updated reference link to AI Toolkit documentation |
| plugin/skills/microsoft-foundry/foundry-agent/create/create.md | Moved Agent Framework best practices guidance from Step 2 to Common Guidelines section to apply to both greenfield and brownfield projects |
Comments suppressed due to low confidence (1)
plugin/skills/microsoft-foundry/foundry-agent/create/references/agentframework.md:81
- The debug instruction
debugpy --listen 127.0.0.1:5679is incomplete and won't work as a standalone command. It should be invoked as part of a Python command (e.g.,python -m debugpy --listen 127.0.0.1:5679 -m agentdev run <entrypoint>.py --port 8087). The current description separates these tasks but doesn't clarify how to actually run debugpy with agentdev, which could confuse users trying to set up debugging.
3. Key debug tasks: `agentdev run <entrypoint>.py --port 8087` starts the agent HTTP server, `debugpy --listen 127.0.0.1:5679` attaches the debugger, and the `ai-mlstudio.openTestTool` VS Code command opens the Agent Inspector UI
JasonYeMSFT
approved these changes
Feb 24, 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.
(Tested scenarios like "/azure:microsoft-foundry Create a Python agent-framework based hosted agent... with local debug support", "/azure:microsoft-foundry Convert to host agent and add local debug support")