최신 GH-600 무료덤프 - Microsoft GitHub Agentic AI Developer
You want to grant the Copilot coding agent access to only a narrowly scoped set of repository permissions (e.g., read code, write pull requests) rather than full admin access. What governs this scope?
정답: B
설명: (DumpTOP 회원만 볼 수 있음)
You have a GitHub repository that uses the GitHub Copilot coding agent and GitHub Copilot Chat.
You need to add a GitHub Actions workflow that meets the following requirements:
Blocks merges unless agent changes are reviewed by a human.
Fails if the pull request author is the Copilot coding agent.
How should you complete the workflow? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

You need to add a GitHub Actions workflow that meets the following requirements:
Blocks merges unless agent changes are reviewed by a human.
Fails if the pull request author is the Copilot coding agent.
How should you complete the workflow? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

정답:

You have a GitHub repository that uses the following GitHub Copilot CLI command in a Bash script.
#!/usr/bin/env bash
set -euo pipefail
PROMPT="Update dependencies, run tests, and open a pull request if changes are needed." copilot --autopilot --yolo --max-autopilot-continues 10 -p "$PROMPT" For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

#!/usr/bin/env bash
set -euo pipefail
PROMPT="Update dependencies, run tests, and open a pull request if changes are needed." copilot --autopilot --yolo --max-autopilot-continues 10 -p "$PROMPT" For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

정답:

You have a GitHub Actions workflow that starts multiple agent jobs in parallel.
You need to prevent two runs in the same job from executing simultaneously on the same branch. The solution must ensure, at most, one running instance and one pending instance per branch.
What should you add to the job?
You need to prevent two runs in the same job from executing simultaneously on the same branch. The solution must ensure, at most, one running instance and one pending instance per branch.
What should you add to the job?
정답: C
설명: (DumpTOP 회원만 볼 수 있음)
You need to implement agent2 to meet the technical requirements.
How should you complete the YAML configuration? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
name: implementation-planner
description: Creates detailed implementation plans and technical specifications in markdown format tools: [
<Dropdown 1>,
<Dropdown 2>,
'microsoftdocs/mcp/docs_search',
'microsoftdocs/mcp/docs_fetch'
]
The accompanying image includes empty dropdown controls and recreated practice alternatives.

How should you complete the YAML configuration? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
name: implementation-planner
description: Creates detailed implementation plans and technical specifications in markdown format tools: [
<Dropdown 1>,
<Dropdown 2>,
'microsoftdocs/mcp/docs_search',
'microsoftdocs/mcp/docs_fetch'
]
The accompanying image includes empty dropdown controls and recreated practice alternatives.

정답:

Topic 1, Contoso Ltd,
Overview
Contoso Ltd. is a software development company located in the United States.
Existing Environment
GitHub Environment
Contoso uses GitHub Enterprise and assigns GitHub Copilot Pro+ licenses to its developers. The developers use Microsoft Visual Studio Code as their IDE.
Contoso has a customer portal. The code for the portal is stored in a GitHub repository named repo1 that contains the following:
A custom agent named agent1 that includes instructions to review specs related to best practices A custom instruction file named validate-instructions.md that is used to validate tone of voice and applies to all .md and .txt files A custom instruction file named codereview.instructions.md that is used by the Copilot coding agent but is excluded for use by the Copilot code review repo1 has the following structure:
The front-end is stored in the /frontend folder.
The API logic is stored in the /api folder.
Contoso has a second repository named repo2 that contains a legacy .NET application named App1 built by using .NET 6. repo2 has a multi-agent workflow for modernization tasks.
Contoso enables the Model Context Protocol (MCP) registry and allows the Microsoft Learn MCP Server. Every developer must configure their own connection to the Learn MCP Server.
Problem Statements
The developers working in repo1 report that the Microsoft Learn documentation is NOT being retrieved when they attempt to validate a design by using agent1.
The testing team at Contoso identifies that the customer portal uses inconsistent UI styles, which leads to customer confusion and branding issues. The UI inconsistencies stem from variations in the folder structure.
Agent Logs
You have the following logs for the multi-agent workflow used in repo2.
Requirements
Planned Changes
Contoso plans to have all agents and developers in repo1 use the Microsoft Learn MCP to ensure that reviews are validated by using the appropriate documentation. This must be implemented centrally.
Contoso plans to leverage AI-powered coding agents to implement new portal features and pages.
Technical Requirements
App1 must be upgraded to .NET 10. A previous upgrade attempt was started by using the Copilot modernization agent, but the attempt was never finalized.
You plan to retry the upgrade. You must first analyze App1 by using AI, and then generate a report that contains breaking changes and deprecated patterns before retrying the upgrade.
All AI-generated code for UI styling must adhere to a predefined folder structure.
The architects at Contoso need help building implementation plans for repo1. The company wants to implement a new agent named agent2 to analyze the code base and the code requirements, and then respond with a detailed plan. The agent must NOT be able to edit files or run local commands.
The developers must be able to delegate work to the Copilot coding agent by assigning issues to the agent.
You have a GitHub repository that uses a custom GitHub Copilot coding agent defined in the rollout-bot.agent.md file.
You need to update a workflow so that agent-profile changes can be rolled back by reverting a single commit and rerunning the workflow. The workflow must check out the exact commit being deployed and apply the agent profile from the repository at that commit.
How should you complete the workflow? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

You need to update a workflow so that agent-profile changes can be rolled back by reverting a single commit and rerunning the workflow. The workflow must check out the exact commit being deployed and apply the agent profile from the repository at that commit.
How should you complete the workflow? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

정답:

You have a GitHub Copilot Enterprise subscription. Developers use Microsoft Visual Studio Code and GitHub Copilot.
You have the following Model Context Protocol (MCP) configuration in Visual Studio Code:
{
"servers": {
"mcp1": {
"command": "npx",
"args": ["-y", "@microsoft/mcp-server-test"]
},
"mcp2": {
"command": "uvx",
"args": ["mcp-server-test", "--db-path", "pubs.db"]
}
}
}
For each statement, select Yes if the statement is true. Otherwise, select No.

You have the following Model Context Protocol (MCP) configuration in Visual Studio Code:
{
"servers": {
"mcp1": {
"command": "npx",
"args": ["-y", "@microsoft/mcp-server-test"]
},
"mcp2": {
"command": "uvx",
"args": ["mcp-server-test", "--db-path", "pubs.db"]
}
}
}
For each statement, select Yes if the statement is true. Otherwise, select No.

정답:

You have a GitHub repository that stores custom GitHub Copilot agents in the .github/agents/ folder.
You have an agent named lead-dev.agent.md that must invoke a specialist subagent named security-reviewer.
Evaluation results show that lead-dev attempts to invoke security-reviewer, but the subagent call fails to run.
You need to ensure that lead-dev can invoke security-reviewer.
How should you complete the YAML frontmatter of the agent profile? To answer, drag the appropriate values to the correct targets.

You have an agent named lead-dev.agent.md that must invoke a specialist subagent named security-reviewer.
Evaluation results show that lead-dev attempts to invoke security-reviewer, but the subagent call fails to run.
You need to ensure that lead-dev can invoke security-reviewer.
How should you complete the YAML frontmatter of the agent profile? To answer, drag the appropriate values to the correct targets.

정답:
