Skip to content

Commit 0057b07

Browse files
Fix 5 inaccuracies found in tutorial content review
Co-authored-by: matthewwilson <7092887+matthewwilson@users.noreply.github.com>
1 parent 22223f8 commit 0057b07

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

exercises/sample-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "task-manager",
33
"version": "1.0.0",
4-
"description": "A simple task management utility — used as a practice codebase for the Claude Code tutorial",
4+
"description": "A simple task management utility — used as a practice codebase for the GitHub Copilot CLI tutorial",
55
"private": true,
66
"type": "module",
77
"devDependencies": {

tutorial/lessons/08-writing-and-running-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Things to think about:
4141
1. Look at the existing tests in `tasks.test.ts` — notice the `describe`/`it` structure and how `beforeEach` resets state
4242
2. Include verification in your prompt — ask Copilot to both write the tests and run them: "Add tests for `deleteTask` in the sample app's test file, then run `npm test` to make sure they pass"
4343
3. Watch the test output — Copilot should show you the results of `npm test` so you can see the tests running
44-
4. If any tests fail, that is a teaching moment — it might mean the lesson 5 bug has not been fixed yet
44+
4. If any tests fail, that is a teaching moment — it might mean the lesson 6 bug has not been fixed yet
4545

4646
## Completion Criteria
4747

tutorial/lessons/18-graduation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You have worked through the core of Copilot CLI hands-on:
1212
- Wrote and ran tests using Copilot's shell access
1313
- Created a custom agent for your own workflow
1414
- Watched Copilot delegate work to specialised agents
15-
- Learned how hooks automate workflows behind the scenes
15+
- Built reusable agent skills to give Copilot on-demand capabilities
1616

1717
## Key Takeaways
1818

@@ -54,7 +54,7 @@ If you hit these problems in real work, here's where to look:
5454

5555
| Frustration | Fix | Lesson |
5656
|---|---|---|
57-
| "Copilot forgets things between sessions" | Put standing instructions in copilot-instructions.md. Use `--continue` or `/resume` to pick up where you left off. | L3-4, L12 |
57+
| "Copilot forgets things between sessions" | Put standing instructions in copilot-instructions.md. Use `--continue` or `/resume` to pick up where you left off. | L3-4, L13 |
5858
| "Copilot changes too much / goes rogue" | Scope your prompts explicitly. Switch to Normal mode (use Shift+Tab to cycle modes) to review each edit. Use `/diff` to check changes. | L5, L12 |
5959
| "The code is too complex or over-engineered" | Add style rules to copilot-instructions.md ("prefer simple solutions", "no unnecessary abstractions"). Tell Copilot "write the simplest implementation." | L3-4, L5 |
6060
| "Endless back-and-forth refinement" | Stop. `/clear`. Use the "interview me" pattern to write a spec first. Put it in instructions. Start fresh. | L2, L7 |

tutorial/lessons/23-qa-track-graduation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Ask Copilot to generate a comprehensive test suite covering ALL remaining untest
2727

2828
### 2. QA Auditor Agent
2929

30-
Create a custom agent at `.github/agents/qa-audit/AGENT.md` that tells Copilot to perform a QA audit: read all source files, check test coverage, identify risks, and produce a QA report. This is a practical example of building tools for your QA workflow.
30+
Create a custom agent at `.github/agents/qa-audit.agent.md` that tells Copilot to perform a QA audit: read all source files, check test coverage, identify risks, and produce a QA report. This is a practical example of building tools for your QA workflow.
3131

3232
### 3. CI Pipeline Design
3333

0 commit comments

Comments
 (0)