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
Replace American English spelling with UK English across tutorial content
Standardise spelling in all lesson files, copilot-instructions.md, and
validator scripts: analyze→analyse, specialized→specialised,
summarize→summarise, organize→organise, customize→customise,
optimize→optimise, behaviors→behaviours, visualization→visualisation,
initialized→initialised, synthesized→synthesised.
Code blocks, commands, CSS properties, and technical terms left unchanged.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: tutorial/lessons/03-context.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,9 +44,9 @@ Use `/clear` (or `/new`) to reset the conversation between unrelated tasks. If y
44
44
45
45
**This is the single most impactful habit you can build.** Most sessions should be short and focused.
46
46
47
-
### `/compact` — summarize without losing everything
47
+
### `/compact` — summarise without losing everything
48
48
49
-
If you're mid-task but your context is getting long, `/compact` tells Copilot to summarize the conversation so far and continue with a compressed context. You can add focus instructions:
49
+
If you're mid-task but your context is getting long, `/compact` tells Copilot to summarise the conversation so far and continue with a compressed context. You can add focus instructions:
Copy file name to clipboardExpand all lines: tutorial/lessons/07-planning-mode.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
@@ -16,7 +16,7 @@ Planning mode is Copilot's way of avoiding that:
16
16
4.**Present** that plan to you for review
17
17
5.**Only then** proceed — and only if you approve
18
18
19
-
In Plan Mode, Copilot uses read-only operations to analyze your codebase and asks clarifying questions to understand your requirements before proposing any changes.
19
+
In Plan Mode, Copilot uses read-only operations to analyse your codebase and asks clarifying questions to understand your requirements before proposing any changes.
Copy file name to clipboardExpand all lines: tutorial/lessons/09-custom-agents.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
@@ -8,7 +8,7 @@ How to create your own custom agents in Copilot CLI. You've been using them thro
8
8
9
9
### What are custom agents?
10
10
11
-
Custom agents are specialized versions of Copilot that you can tailor to specific workflows, coding conventions, and use cases. When you invoke an agent, Copilot reads the corresponding `.agent.md` file and follows its instructions. Think of them as tailored teammates that follow your standards, use the right tools, and implement team-specific practices.
11
+
Custom agents are specialised versions of Copilot that you can tailor to specific workflows, coding conventions, and use cases. When you invoke an agent, Copilot reads the corresponding `.agent.md` file and follows its instructions. Think of them as tailored teammates that follow your standards, use the right tools, and implement team-specific practices.
Copy file name to clipboardExpand all lines: tutorial/lessons/10-agent-skills.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## What You'll Learn
4
4
5
-
How to create and use **skills** — reusable knowledge packages that give Copilot on-demand capabilities via `SKILL.md` files. Skills are the counterpart to agents: where agents are specialized personas, skills are focused instruction sets that any agent can invoke.
5
+
How to create and use **skills** — reusable knowledge packages that give Copilot on-demand capabilities via `SKILL.md` files. Skills are the counterpart to agents: where agents are specialised personas, skills are focused instruction sets that any agent can invoke.
6
6
7
7
## Concepts
8
8
@@ -18,7 +18,7 @@ When you invoke a skill, Copilot reads the `SKILL.md` instructions and follows t
18
18
|---------|-------------------|--------|--------|
19
19
| File |`copilot-instructions.md`|`SKILL.md` in a named folder |`.agent.md`|
20
20
| When loaded | Every session, always on | On demand — only when invoked | On demand — when selected |
21
-
| Purpose | Project-wide conventions | Reusable task-specific knowledge |Specialized persona with tool restrictions |
21
+
| Purpose | Project-wide conventions | Reusable task-specific knowledge |Specialised persona with tool restrictions |
22
22
| Scope | Global context | Focused instructions for one task type | Full conversation takeover |
23
23
| Best for | Coding standards, architecture rules | Repeatable workflows, generation recipes | Complex multi-step workflows |
Copy file name to clipboardExpand all lines: tutorial/lessons/11-agent-delegation.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## What You'll Learn
4
4
5
-
How Copilot CLI delegates work to specialized agents — including the powerful `/delegate` command that pushes tasks to a coding agent and creates pull requests automatically. You will see how built-in agents handle different types of work.
5
+
How Copilot CLI delegates work to specialised agents — including the powerful `/delegate` command that pushes tasks to a coding agent and creates pull requests automatically. You will see how built-in agents handle different types of work.
6
6
7
7
## Concepts
8
8
@@ -15,7 +15,7 @@ Copilot CLI comes with agents that handle specific types of work:
15
15
|**Explore**| Read-only codebase search. Fast, lightweight. Good for "find all uses of X" or "what does module Y do?" |
16
16
|**Task**| Full-capability agent for complex, multi-step work. Can read, write, and run commands. |
17
17
|**General-purpose**| The default agent you've been talking to. Balances exploration with implementation. |
18
-
|**Code-review**|Specialized for reviewing code changes. Checks for bugs, style issues, and best practices. |
18
+
|**Code-review**|Specialised for reviewing code changes. Checks for bugs, style issues, and best practices. |
19
19
20
20
### The `/delegate` command
21
21
@@ -48,7 +48,7 @@ This opens an interactive selector showing all built-in and custom agents. You c
48
48
-**Parallel work** — Delegate tasks while you keep working on something else
49
49
-**Focused context** — Each agent works in its own context, not polluting your conversation
50
50
-**PR workflow** — `/delegate` creates a PR, so you review the output through your normal code review process
51
-
-**Specialization** — Different agents are optimized for different tasks
51
+
-**Specialisation** — Different agents are optimised for different tasks
52
52
53
53
### When to delegate vs do it yourself
54
54
@@ -68,7 +68,7 @@ Ask Copilot a broad question that touches multiple parts of the sample app simul
68
68
69
69
> "Are there any inconsistencies between how tasks are validated in validators.ts vs how they're created in tasks.ts? Also check if the test coverage matches the actual API surface."
70
70
71
-
Watch the output — you will see Copilot using agents to work in parallel, each with a focused scope. The results are synthesized back into a single answer.
71
+
Watch the output — you will see Copilot using agents to work in parallel, each with a focused scope. The results are synthesised back into a single answer.
72
72
73
73
After observing, try the `/agent` command to see what agents are available.
Copy file name to clipboardExpand all lines: tutorial/lessons/13-git-workflow.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ When you ask Copilot to commit your changes, it doesn't just slap on a generic m
12
12
13
13
1.**Runs `git diff`** — reads exactly what changed
14
14
2.**Checks recent commit history** — matches your project's message style
15
-
3.**Drafts a descriptive message** — summarizes the "why", not just the "what"
15
+
3.**Drafts a descriptive message** — summarises the "why", not just the "what"
16
16
4.**Stages and commits** — handles the git commands for you
17
17
18
18
Try: `"commit my changes with a descriptive message"`
@@ -32,7 +32,7 @@ Copilot has a built-in code review command:
32
32
/review
33
33
```
34
34
35
-
This triggers the specialized Code-review agent, which examines your changes and provides feedback — checking for bugs, style issues, security concerns, and best practices.
35
+
This triggers the specialised Code-review agent, which examines your changes and provides feedback — checking for bugs, style issues, security concerns, and best practices.
36
36
37
37
You can also provide specific review instructions:
38
38
@@ -87,7 +87,7 @@ Pay attention to:
87
87
1. Start with: "Add a JSDoc comment to the `createTask` function in `exercises/sample-app/src/tasks.ts` describing what it does, its parameters, and return value"
88
88
2. After the edit is made, say: "commit my changes with a descriptive message"
89
89
3. Watch the output — Copilot will run `git diff`, `git log`, and then `git commit` with a crafted message
90
-
4. If there's no git repo initialized, Copilot will let you know — that's fine, the learning is in seeing the workflow
90
+
4. If there's no git repo initialised, Copilot will let you know — that's fine, the learning is in seeing the workflow
0 commit comments