Skip to content

Commit 660f427

Browse files
committed
Refactor documentation structure and update lesson references for clarity
1 parent cc12eeb commit 660f427

File tree

6 files changed

+25
-25
lines changed

6 files changed

+25
-25
lines changed

docs/2-custom-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Next we'll use [agent mode to add functionality to the site][next-lesson].
220220
[instruction-files]: https://code.visualstudio.com/docs/copilot/copilot-customization
221221
[python-type-hints]: https://docs.python.org/3/library/typing.html
222222
[games-endpoints]: ../server/routes/games.py
223-
[games-tests]: ../server/tests/test_routes/test_games.py
223+
[games-tests]: ../server/tests/test_games.py
224224
[instructions-best-practices]: https://docs.github.com/en/enterprise-cloud@latest/copilot/using-github-copilot/coding-agent/best-practices-for-using-copilot-to-work-on-tasks#adding-custom-instructions-to-your-repository
225225
[personal-instructions]: https://docs.github.com/en/copilot/customizing-copilot/adding-personal-custom-instructions-for-github-copilot
226226

docs/4-copilot-coding-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ These are both examples of tasks which can quickly find themselves deprioritized
2222

2323
## Introducing GitHub Copilot coding agent
2424

25-
[GitHub Copilot coding agent][coding-agent-overview] can perform tasks in the background, much in the same way a human developer would. And, just like with working with a human developer, this is done by [assigning a GitHub issue to Copilot][assign-issue]. Once assigned, Copilot will create a draft pull request to track its progress, setup an environment, and begin working on the task. You can dig into Copilot's session while it's still in flight or after its completed. Once its ready for you to review the proposed solution, it'll tag you in the pull request!
25+
[GitHub Copilot coding agent][coding-agent-overview] can perform tasks in the background, much in the same way a human developer would. And, just like with working with a human developer, this can be done in multiple ways, including [assigning a GitHub issue to Copilot][assign-issue]. Once assigned, Copilot will create a draft pull request to track its progress, setup an environment, and begin working on the task. You can dig into Copilot's session while it's still in flight or after its completed. Once its ready for you to review the proposed solution, it'll tag you in the pull request!
2626

2727
## The importance of well-scoped instructions
2828

docs/5-custom-agents.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
| [← Previous lesson: GitHub Copilot coding agent][previous-lesson] | [Next lesson: Reviewing coding agent →][next-lesson] |
44
|:--|--:|
55

6-
| [← Previous lesson: GitHub Copilot coding agent][previous-lesson] | [Next lesson: Mission control][next-lesson] |
6+
| [← Previous lesson: GitHub Copilot coding agent][previous-lesson] | [Next lesson: Managing agents][next-lesson] |
77
|:--|--:|
88

99
[Custom agents][custom-agents] in GitHub Copilot allow you to create specialized AI assistants tailored to specific tasks or domains within your development workflow. By defining agents through markdown files in the `.github/agents` folder of your repository, you can provide Copilot with focused instructions, best practices, coding patterns, and domain-specific knowledge that guide it to perform particular types of work more effectively. This allows teams to codify their expertise and standards into reusable agents—such as an accessibility agent that ensures [WCAG][wcag] compliance, a security agent that follows secure coding practices, or a testing agent that maintains consistent test patterns—enabling developers to leverage these specialized capabilities on-demand for faster, more consistent implementations.
@@ -76,7 +76,7 @@ You explored these concepts:
7676
- how to create a custom agent.
7777
- assigning a task to a custom agent.
7878
79-
With Copilot working on implementing the high contrast mode, we can now turn our attention to our next lesson, [using mission control to monitor and guide agent sessions][next-lesson]. Custom agents help ensure that Copilot follows your organization's best practices and domain-specific requirements, enabling faster and more consistent implementations across your team.
79+
With Copilot working on implementing the high contrast mode, we can now turn our attention to our next lesson, [using Copilot HQ to monitor and guide agent sessions][next-lesson]. Custom agents help ensure that Copilot follows your organization's best practices and domain-specific requirements, enabling faster and more consistent implementations across your team.
8080
8181
## Resources
8282
@@ -86,12 +86,12 @@ With Copilot working on implementing the high contrast mode, we can now turn our
8686
8787
---
8888
89-
| [← Previous lesson: GitHub Copilot coding agent][previous-lesson] | [Next lesson: Mission control →][next-lesson] |
89+
| [← Previous lesson: GitHub Copilot coding agent][previous-lesson] | [Next lesson: Managing agents →][next-lesson] |
9090
|:--|--:|
9191
9292
[custom-agents]: https://docs.github.com/copilot/concepts/agents/coding-agent/about-custom-agents
9393
[wcag]: https://www.w3.org/WAI/standards-guidelines/wcag/
9494
[org-custom-agents]: https://docs.github.com/copilot/how-tos/administer-copilot/manage-for-organization/prepare-for-custom-agents
9595
[enterprise-custom-agents]: https://docs.github.com/copilot/how-tos/administer-copilot/manage-for-enterprise/manage-agents/prepare-for-custom-agents
96-
[next-lesson]: ./6-mission-control.md
96+
[next-lesson]: ./6-managing-agents.md
9797
[previous-lesson]: ./4-copilot-coding-agent.md
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
# Exercise 6 - Monitoring agent tasks in mission control
1+
# Exercise 6 - Monitoring and managing agents
22

3-
| [← Previous lesson: Custom agents][previous-lesson] | [Next lesson: Reviewing coding agent →][next-lesson] |
3+
| [← Previous lesson: Custom agents][previous-lesson] | [Next lesson: Iterating on coding agent's work][next-lesson] |
44
|:--|--:|
55

6-
As the number of agents assigned to various tasks grows we need a centralized location to monitor and guide our agents. [Mission control][mission-control] is built to support supporting your agents.
6+
As the number of agents assigned to various tasks grows we need a centralized location to monitor and guide our agents. [The agents page][agents-page] in Copilot HQ is built to support supporting your agents.
77

8-
From mission control you can see all sessions, past and present. You can explore the operations performed, and even redirect an in-progress session to help guide it.
8+
From this mission control you can see all sessions, past and present. You can explore the operations performed, and even steer an in-progress session to help guide it.
99

1010
## Scenario
1111

1212
After assigning the agent to create a high-accessible mode, the team realized it would be a good time to add a light mode as well. Since work was already being done to update the style of the site and add toggle functionality, it seemed logical to include this functionality. You want to update the agent's work to ensure it introduces this update.
1313

1414
In this lesson you will:
1515

16-
- explore mission control to monitor coding agent sessions.
17-
- redirect an in-flight session to request additional functionality.
16+
- explore the agents page to monitor coding agent sessions.
17+
- steer an in-flight session to request additional functionality.
1818

1919
## Review Copilot coding agent sessions
2020

2121
Let's start by seeing the tasks we've already assigned to GitHub Copilot coding agent in mission control.
2222

23-
1. Navigate to mission control at [https://github.com/copilot/agents](https://github.com/copilot/agents).
23+
1. Navigate to agents page at [https://github.com/copilot/agents](https://github.com/copilot/agents).
2424
2. Note the list of sessions, both on the main pane and on the left pane. You should see the list of the tasks you've assigned to Copilot, including:
2525
- Updating documentation for your codebase.
2626
- Generating APIs for modifying products.
@@ -36,7 +36,7 @@ Let's start by seeing the tasks we've already assigned to GitHub Copilot coding
3636
3737
4. Also note the pull request (PR) pane which appears on the right side. This allows you to see the PR and files changed for additional monitoring.
3838

39-
## Redirect coding agent
39+
## Steering coding agent
4040

4141
Now that we've seen the sessions which are active, let's request Copilot include the light mode toggle while it works on the high-contrast mode.
4242

@@ -63,26 +63,26 @@ From here, Copilot will get to work on the updated task! This will take several
6363
6464
## Summary and next steps
6565
66-
This lesson explored mission control, your central hub for monitoring and guiding GitHub Copilot coding agent sessions. With mission control you can track all active and completed sessions, review the work being performed, and even redirect in-flight sessions to adjust scope or provide additional guidance.
66+
This lesson explored Copilot HQ and the agents page, your central hub for monitoring and guiding GitHub Copilot coding agent sessions. With this mission control you can track all active and completed sessions, review the work being performed, and even redirect in-flight sessions to adjust scope or provide additional guidance.
6767
6868
You explored these concepts:
6969
70-
- explored mission control to monitor coding agent sessions.
70+
- explored Copilot HQ and the agents page to monitor coding agent sessions.
7171
- redirected an in-flight session to request additional functionality.
7272
73-
With Copilot completing its work on the accessibility features, we can now turn our attention to our next lesson, [reviewing the pull requests Copilot created][next-lesson]. Mission control provides visibility into agent work and enables dynamic collaboration with coding agents as they work on tasks.
73+
With Copilot completing its work on the accessibility features, we can now turn our attention to our next lesson, [iterating on the pull requests Copilot created][next-lesson]. Mission control provides visibility into agent work and enables dynamic collaboration with coding agents as they work on tasks.
7474
7575
## Resources
7676
77-
- [Mission control][mission-control]
77+
- [Copilot HQ agents page][agents-page]
7878
- [Custom agents][custom-agents]
7979
8080
---
8181
82-
| [← Previous lesson: Custom agents][previous-lesson] | [Next lesson: Reviewing coding agent →][next-lesson] |
82+
| [← Previous lesson: Custom agents][previous-lesson] | [Next lesson: Iterating on coding agent's work →][next-lesson] |
8383
|:--|--:|
8484
85-
[mission-control]: https://github.blog/changelog/2025-10-28-a-mission-control-to-assign-steer-and-track-copilot-coding-agent-tasks
85+
[agents-page]: https://github.blog/changelog/2025-10-28-a-agents-page-to-assign-steer-and-track-copilot-coding-agent-tasks
8686
[custom-agents]: https://docs.github.com/copilot/concepts/agents/coding-agent/about-custom-agents
87-
[next-lesson]: ./7-reviewing-coding-agent.md
87+
[next-lesson]: ./7-iterating-coding-agent.md
8888
[previous-lesson]: ./5-custom-agents.md
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Exercise 7: Review GitHub Copilot coding agent's work
1+
# Exercise 7: Iterating on GitHub Copilot coding agent's work
22

33
| [← Previous lesson: Mission control][previous-lesson] |
44
|:--|
@@ -159,7 +159,7 @@ This is just the beginning, and we can't wait to see how you use Copilot to help
159159

160160
---
161161

162-
| [← Previous lesson: Mission control][previous-lesson] |
162+
| [← Previous lesson: Managing agents][previous-lesson] |
163163
|:--|
164164

165165
[github-copilot]: https://github.com/features/copilot
@@ -170,4 +170,4 @@ This is just the beginning, and we can't wait to see how you use Copilot to help
170170
[coding-agent-best-practices]: https://docs.github.com/copilot/using-github-copilot/coding-agent/best-practices-for-using-copilot-to-work-on-tasks
171171
[agent-firewall]: https://docs.github.com/copilot/customizing-copilot/customizing-or-disabling-the-firewall-for-copilot-coding-agent
172172

173-
[previous-lesson]: ./6-mission-control.md
173+
[previous-lesson]: ./6-managing-agents.md

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The labs will walk you through the most common workloads with the agent capabili
1818
4. [Assign issues to GitHub Copilot coding agent](./4-copilot-coding-agent.md) to allow Copilot to work on tasks asynchronously.
1919
5. [Create and use custom agents](./5-custom-agents.md) to provide specialized guidance for specific tasks.
2020
6. [Monitor and guide agent sessions in mission control](./6-mission-control.md) to track progress and redirect work.
21-
7. [Review Copilot coding agent's work](./7-reviewing-coding-agent.md) to ensure everything looks good!
21+
7. [Iterate on Copilot coding agent's work](./7-iterating-coding-agent.md) to refine and improve the generated code.
2222

2323
## Scenario
2424

0 commit comments

Comments
 (0)