You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ GitHub Copilot inside **Visual Studio Code** and GitHub Codespaces. Work with Co
27
27
28
28
### 🤖 [Copilot App](app/)
29
29
30
-
The **GitHub Copilot app** — a desktop application built on Copilot CLI. Run parallel agent sessions, switch session modes, collaborate on canvases, and manage GitHub issues and pull requests natively — including **Agent Merge**, which shepherds a pull request through rebases, review feedback, CI fixes, and merge.
30
+
The **GitHub Copilot app** — a desktop application built on Copilot CLI. Follow the same setup and nine core modules through the star-rating, instructions, filtering, skill, MCP, QA, and feature-PR workflow, using the app's isolated sessions and **Agent Merge**. Create and merge a repository-backed canvas as the fourth pull-request milestone, then wrap up.
Copy file name to clipboardExpand all lines: docs/app/0-prerequisites.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,18 +15,18 @@ In this lesson, you will:
15
15
16
16
## Install Node.js
17
17
18
-
Several lessons ask an agent to build features and run the Tailspin Toys test suite locally, which needs **[Node.js][nodejs]** — the only runtime the project requires. Install version **22 or newer**; the current **LTS** release is a safe choice.
18
+
Several lessons ask an agent to build features and run the Tailspin Toys test suite locally, which needs **[Node.js][nodejs]**. Use **Node.js 22.13 or later**, and confirm the supported version in your checkout's `package.json` and README.
19
19
20
20
The simplest option on every platform is the official installer:
21
21
22
22
1. In your operating system, open a terminal window using Windows Terminal, macOS terminal, or whatever you typically use.
23
-
2. Run the following command to confirm you have at least Node.js 22 or higher installed:
23
+
2. Run the following command to confirm you have Node.js 22.13 or later installed:
24
24
25
25
```shell
26
26
node --version
27
27
```
28
28
29
-
3. If you see `v22` or a higher number, you can skip to the next section!
29
+
3. If the reported version is at least `v22.13.0` and supported by the project, you can skip to the next section.
30
30
31
31
> [!TIP]
32
32
> You only need to complete these steps if you don't have Node installed, or you need to update.
@@ -41,10 +41,10 @@ The simplest option on every platform is the official installer:
41
41
node --version
42
42
```
43
43
44
-
9. You should see `v22.x.x` or higher.
44
+
9. Confirm the reported version is at least `v22.13.0` and supported by the project.
45
45
46
-
> [!TIP]
47
-
> Prefer containers? If you have **[Docker][docker]**, you can use the repository's [dev container][dev-containers] instead of installing Node.js locally — it bundles Node foryou. You don't need both.
46
+
> [!IMPORTANT]
47
+
> This App path uses local worktrees. A runtime installed only in a container is not available to those local sessions. Each worktree also needs the project dependencies and Playwright Chromium for E2E checks. Follow the learner repository's README when preparing a worktree, and review any installation request before approving it.
48
48
49
49
## Set up the lab repository
50
50
@@ -64,6 +64,8 @@ You'll work against your own copy of the Tailspin Toys project. Create it now fr
64
64
> [!NOTE]
65
65
> When you create your repository from the template, a backlog of GitHub issues is created for you automatically. You'll work from these issues throughout the workshop — there's nothing to file yourself.
66
66
67
+
Use a fresh copy of the revised template: it includes repository instructions, application code, tests, and an existing canvas extension, but no supplied custom agents or skills. You will create your own quality-checks skill and QA profile during the workshop. If you use an older copy, inspect existing customizations rather than overwrite them.
68
+
67
69
## Summary and next steps
68
70
69
71
You're set up! You installed Node.js so the project can build and test on your machine, and you created your own copy of the Tailspin Toys repository from the template.
@@ -79,7 +81,5 @@ Next, you'll install the GitHub Copilot app, connect the repository you just cre
Copy file name to clipboardExpand all lines: docs/app/1-install-copilot-app.md
+13-7Lines changed: 13 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,23 +41,23 @@ To use the GitHub Copilot app the first step, as you might imagine, is to instal
41
41
42
42
With your project connected, take a moment to learn your way around. The app organizes everything into a few areas in the sidebar:
43
43
44
-
-**Sessions** — where agents do their work. Each session runs in its own isolated workspace, so you can run several at once without their changes colliding. You'll start your first session in the next lesson.
44
+
-**Sessions** — where agents do their work. For this workshop, choose a **new working tree** so each PR milestone has an isolated checkout and branch. Other workspace choices exist, but are not used here.
45
45
-**Quick chats** — lightweight conversations for questions and brainstorming that don't need a branch or workspace of their own. You'll try one at the end of this lesson.
46
46
-**My work** — your issues and pull requests, surfaced through the app's **native GitHub integration**. From here you can browse and filter issues and pull requests, check CI status, start a session from an issue, and review pull requests — all without leaving the app.
47
-
-**Automations** — saved agent tasks that run on a schedule or on demand. You'll create one near the end of the harness.
47
+
-**Customize** — discover and manage MCP servers, skills, and canvases. You'll use it to configure Playwright MCP.
48
+
-**Automations** — saved agent tasks that run on a schedule or on demand. The wrap-up links to these as a next step, not another workshop exercise.
48
49
49
50
### Find your seeded backlog
50
51
51
52
Because the app integrates with GitHub natively, the work waiting in your repository shows up right inside the app. When you created your repository from the template, a backlog of issues was filed for you — let's confirm it's there.
52
53
53
54
1. Select **My work** in the sidebar.
54
-
2.The template seeded eight issues in your backlog. This harness focuses on the following three — confirm you can see them:
55
+
2.Find these issues by title rather than assuming their issue numbers:
55
56
56
57
- Allow users to filter games by category and publisher
57
58
- Update our repository coding standards
58
-
- Implement pagination on the game list page
59
59
60
-
3. Select an issue to read its details. Each issue is also a launch point for an agent session — you'll start work from these issues later in the harness.
60
+
3. Select an issue to read its details. Each issue is also a launch point for an agent session — you'll start work from these issues later in the harness. Other backlog issues provide context for the canvas, not another implementation task.
61
61
62
62
> [!NOTE]
63
63
> The list of items in My work is automatically filtered to only display items from the repositories you've added to Copilot app. Want to see work items from other repos? Add them to the app!
@@ -84,15 +84,21 @@ Congratulations! You've installed the GitHub Copilot app, connected your project
84
84
- get oriented in the workspace and find your seeded backlog in **My work**.
85
85
- use a quick chat to ask a fast, throwaway question.
86
86
87
-
Next, you'll start your first agent session and make your first change to the project — showing a star rating on the game cards. Continue to [Lesson 2 - Running your first agent session][next-lesson].
87
+
## Keep PR milestones separate
88
+
89
+
You will merge four PRs: star ratings; instructions with a small demonstration; filtering with the skill, QA profile, and tests; then the triage canvas. Use one branch per PR milestone. Lessons 4–8 stay in the same filtering session, worktree, and branch, with checkpoint commits rather than extra PRs.
90
+
91
+
A new App worktree can start from stale local state. Before each new milestone edits files, fetch the repository and fast-forward the new session branch to the latest `origin/main`. The next lessons show this explicitly. Do not stack branches, cherry-pick earlier work, or switch an active filtering session to another branch.
92
+
93
+
Next, you'll start your first agent session and make your first change to the project — showing a star rating on the game cards. Continue to [Lesson 2 - Add star ratings: a quick win][next-lesson].
88
94
89
95
## Resources
90
96
91
97
-[About the GitHub Copilot app][about-copilot-app]
92
98
-[Getting started with the GitHub Copilot app][getting-started]
93
99
-[Working with agent sessions in the GitHub Copilot app][agent-sessions]
Copy file name to clipboardExpand all lines: docs/app/10-review.md
+25-21Lines changed: 25 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,44 +1,43 @@
1
1
---
2
-
title: "Lesson 8 - Review and next steps"
3
-
description: "Recap the GitHub Copilot app harness, automate recurring work, and explore where to go next."
2
+
title: "Lesson 10 - Wrap-up and next steps"
3
+
description: "Recap the nine core App modules, four PR milestones, and reusable quality workflow, then explore further resources."
4
4
authors:
5
5
- geektrainer
6
-
lastUpdated: 2026-07-09
6
+
lastUpdated: 2026-09-11
7
7
---
8
8
9
9
Over the last several lessons, you took a feature from idea to merge with the GitHub Copilot app, including:
10
10
11
11
- connecting a repository and orienting to the app's workspace and your seeded backlog.
12
12
- starting sessions from a direct task and from issues, and using Plan and Autopilot modes to control how the agent works.
13
-
- guiding the agent with custom instructions and a reusable skill.
13
+
- guiding the agent with custom instructions, then asking it to create a reusable skill with shell scripts that you inspected and ran for lint, unit tests, end-to-end tests, and type checks.
14
14
- testing your work with the Playwright MCP server in a real browser.
15
+
- creating and selecting a QA custom agent to assess requirements, coverage, skill-script results, and browser evidence.
15
16
- collaborating with the agent on a shared canvas.
16
-
-shipping changes up a ladder of merge automation — from merging on github.com yourself to letting**Agent Merge**land a pull request.
17
+
-explicitly merging the early PRs yourself, then authorizing**Agent Merge**within the feature and canvas PR workflows.
17
18
18
-
Let's automate some recurring work, talk through best practices, and look at where to go next.
19
+
Setup Lessons 0–1 led into nine core modules, Lessons 2–10. Take a moment to review the artifacts and where to go next; this wrap-up does not launch another hands-on task.
19
20
20
-
## Automate recurring work
21
+
## What you shipped
21
22
22
-
The app can run agents for you on a schedule or on demand through **automations** — great for routine tasks like triaging new issues or recapping recent activity. Let's create a simple, non-destructive one.
23
+
The workshop has four PR milestones, each on its own branch from updated `main`:
23
24
24
-
1.Select **Automations**in the sidebar, then select **New automation**.
25
-
2.Give it a name, such as `Recap my recent work`.
26
-
3.Choose a trigger. **Manual** lets you run it on demand; **On a schedule** runs it automatically; **When an issue is created** reacts to new issues. Choose **Manual** for this lesson.
27
-
4.Enter a read-only prompt so the automation can't change anything, for example:
25
+
1.**Star ratings:**display the existing `starRating` and an explicit unrated state on game cards.
26
+
2.**Instructions and demonstration:** add the documentation convention and verify its effect on a small real code change.
27
+
3.**Filtering and quality workflow:** implement the issue, create the shell-bundled `quality-checks` skill and QA profile, and include the associated tests.
28
+
4.**Repository-backed triage canvas:** share a board that adds issue context without automatically implementing another feature.
28
29
29
-
```plaintext
30
-
Summarize the pull requests merged in this repository over the last week, and list any issues still open in the backlog.
31
-
```
30
+
Lessons 4–8 used the same filtering session, worktree, and branch. Checkpoint commits preserved progress within PR 3; skills, MCP configuration, and QA did not need separate feature branches. Each later milestone began only after the earlier PR merged and the fresh session branch was updated from `origin/main`.
32
31
33
-
5. Pick the project (your Tailspin Toys repository) and create the automation.
34
-
6. Run it on demand to see the result.
32
+
## Different kinds of verification
35
33
36
-
> [!TIP]
37
-
> Automations can run locally or in the cloud. Enable **Run in the cloud** and pick the **Tools** an automation may use when you want it to run unattended on a schedule. Keep scheduled automations scoped and non-destructive until you trust their output.
34
+
The early features used existing npm checks. Filtering added your manual browser inspection. The skill made the four checks repeatable through bundled scripts, MCP added direct agent browser observations, and QA combined requirements and coverage with final verification. The PR reused QA evidence only while it applied to the submitted revision.
35
+
36
+
Tests added should close genuine gaps; a QA run that needs no new tests can be correct. Missing tools, skipped checks, and failures are visible blockers, not passes. Review code and evidence before authorizing merge, and refresh affected evidence after changes.
38
37
39
38
## Best practices
40
39
41
-
When using any AI tool, the infrastructure around it drives the quality of what you get out. Instructions files, skills, and custom agents all played a part in this workshop — invest in them and reuse them across sessions.
40
+
When using any AI tool, the infrastructure around it drives the quality of what you get out. You created instructions, a skill, and a QA profile in this workshop — review them and reuse them across sessions. Custom agents define specialist roles and instructions, with available tools governed by configuration and harness permissions; skills package reusable task instructions, executable scripts, and supporting resources loaded on demand. A custom agent can execute scripts too, including those bundled with a skill. Confirm actual script execution and custom-agent selection rather than relying on a convincing description.
42
41
43
42
Match the **mode and model** to the task. Use **Plan** to think through an approach before building, **Interactive** to stay in the loop on focused changes, and **Autopilot** only for well-scoped, isolated tasks. Choose a faster model for routine edits and a more capable model with higher reasoning effort for complex work.
44
43
@@ -49,6 +48,7 @@ Context still matters as much as infrastructure. Clearly describing *what* you w
49
48
You've covered the core workflow. A few more features worth a look:
50
49
51
50
-**Quick chats** for fast, throwaway questions that don't need a full session.
51
+
-[**Automations**][using-automations] for recurring or on-demand tasks such as summarizing recent work. Review the schedule, permissions, and scope before adopting one; creating an automation is a next step, not part of this workshop.
52
52
-**Rubber duck** to talk through a problem and get high-signal feedback before you build.
53
53
-[**Custom agents**][custom-agents] to package a role, its tools, and its instructions for repeatable, specialized work.
54
54
-[`/chronicle`][chronicle] to generate a narrative of what happened in a session.
@@ -60,7 +60,7 @@ You've covered the core workflow. A few more features worth a look:
60
60
61
61
The best way to improve with any tool is to keep using it! Use it for production code, for hobby code, for the little app you've had in mind for years but never got around to building. Share your learnings with your team, and learn from theirs. And, as always, explore the documentation.
62
62
63
-
If you'd like to explore more of the GitHub Copilot ecosystem, check out the [VS Code harness](../../vscode/), the [Copilot CLI harness](../../cli/), or the [Cloud agent harness](../../cloud/).
63
+
If you'd like to explore more of the GitHub Copilot ecosystem, check out the [VS Code harness][vscode-harness], the [Copilot CLI harness][cli-harness], or the [Cloud agent harness][cloud-harness].
64
64
65
65
## Resources
66
66
@@ -71,6 +71,10 @@ If you'd like to explore more of the GitHub Copilot ecosystem, check out the [VS
0 commit comments