Skip to content

Commit 02fc985

Browse files
matthewwilsonclaude
andcommitted
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>
1 parent c07e1ad commit 02fc985

19 files changed

Lines changed: 39 additions & 39 deletions

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ The tutorial includes an optional QA track for QA engineers. It is controlled by
9595

9696
### QA Lessons
9797

98-
- **20: Test Planning from Requirements**Analyze a feature request and create a structured test plan
98+
- **20: Test Planning from Requirements**Analyse a feature request and create a structured test plan
9999
- **21: Test Case Design & Coverage** — Identify coverage gaps and design test cases using QA techniques
100100
- **22: Automated Test Generation** — Turn test cases into running Vitest tests
101101
- **23: E2E Testing with Playwright** — Write Playwright tests for the web UI

tutorial/lessons/00-welcome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You can also use `/agent` and select from the list of tutorial agents.
2929
11. **Agent Delegation** — Push work to coding agents and built-in specialists
3030
12. **Hooks in Action** — The automation that powers this tutorial itself
3131
13. **Git Workflow** — Commits, PRs, and code review with Copilot
32-
14. **Session Management** — Resume, compress, and organize your work
32+
14. **Session Management** — Resume, compress, and organise your work
3333
15. **Programmatic Mode** — Run Copilot from scripts and CI/CD
3434
16. **Model Selection** — Choose the right model for each task
3535
17. **CLI Tools & MCP Servers** — Use any CLI tool and structured tool access

tutorial/lessons/03-context.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ Use `/clear` (or `/new`) to reset the conversation between unrelated tasks. If y
4444

4545
**This is the single most impactful habit you can build.** Most sessions should be short and focused.
4646

47-
### `/compact`summarize without losing everything
47+
### `/compact`summarise without losing everything
4848

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:
5050

5151
```
5252
/compact Focus on the API changes

tutorial/lessons/07-planning-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Planning mode is Copilot's way of avoiding that:
1616
4. **Present** that plan to you for review
1717
5. **Only then** proceed — and only if you approve
1818

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.
2020

2121
### When to use Plan Mode
2222

tutorial/lessons/09-custom-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ How to create your own custom agents in Copilot CLI. You've been using them thro
88

99
### What are custom agents?
1010

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.
1212

1313
### Where do agents live?
1414

tutorial/lessons/10-agent-skills.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## What You'll Learn
44

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.
66

77
## Concepts
88

@@ -18,7 +18,7 @@ When you invoke a skill, Copilot reads the `SKILL.md` instructions and follows t
1818
|---------|-------------------|--------|--------|
1919
| File | `copilot-instructions.md` | `SKILL.md` in a named folder | `.agent.md` |
2020
| 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 |
2222
| Scope | Global context | Focused instructions for one task type | Full conversation takeover |
2323
| Best for | Coding standards, architecture rules | Repeatable workflows, generation recipes | Complex multi-step workflows |
2424

tutorial/lessons/11-agent-delegation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## What You'll Learn
44

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.
66

77
## Concepts
88

@@ -15,7 +15,7 @@ Copilot CLI comes with agents that handle specific types of work:
1515
| **Explore** | Read-only codebase search. Fast, lightweight. Good for "find all uses of X" or "what does module Y do?" |
1616
| **Task** | Full-capability agent for complex, multi-step work. Can read, write, and run commands. |
1717
| **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. |
1919

2020
### The `/delegate` command
2121

@@ -48,7 +48,7 @@ This opens an interactive selector showing all built-in and custom agents. You c
4848
- **Parallel work** — Delegate tasks while you keep working on something else
4949
- **Focused context** — Each agent works in its own context, not polluting your conversation
5050
- **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
5252

5353
### When to delegate vs do it yourself
5454

@@ -68,7 +68,7 @@ Ask Copilot a broad question that touches multiple parts of the sample app simul
6868

6969
> "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."
7070
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.
7272

7373
After observing, try the `/agent` command to see what agents are available.
7474

tutorial/lessons/13-git-workflow.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ When you ask Copilot to commit your changes, it doesn't just slap on a generic m
1212

1313
1. **Runs `git diff`** — reads exactly what changed
1414
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"
1616
4. **Stages and commits** — handles the git commands for you
1717

1818
Try: `"commit my changes with a descriptive message"`
@@ -32,7 +32,7 @@ Copilot has a built-in code review command:
3232
/review
3333
```
3434

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.
3636

3737
You can also provide specific review instructions:
3838

@@ -87,7 +87,7 @@ Pay attention to:
8787
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"
8888
2. After the edit is made, say: "commit my changes with a descriptive message"
8989
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
9191

9292
## Completion Criteria
9393

tutorial/lessons/14-session-management.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## What You'll Learn
44

5-
How to manage Copilot CLI sessions across multiple tasks and days. Resume conversations, compress context, and keep parallel workstreams organized.
5+
How to manage Copilot CLI sessions across multiple tasks and days. Resume conversations, compress context, and keep parallel workstreams organised.
66

77
## Concepts
88

@@ -35,7 +35,7 @@ As conversations grow, the context window fills up. Copilot handles this automat
3535

3636
This keeps you in flow without the hard reset of `/clear`.
3737

38-
### Token visualization
38+
### Token visualisation
3939

4040
**`/context`** — See exactly where your tokens are being used:
4141

@@ -67,7 +67,7 @@ Sometimes it's better to start over than to correct course:
6767

6868
**Practice session management commands.**
6969

70-
1. Try `/context` to see your token usage visualization
70+
1. Try `/context` to see your token usage visualisation
7171
2. Try `/usage` to see your session statistics
7272
3. Think about when you'd use `--continue` vs `/resume`:
7373
- `--continue`: "I closed my terminal but want to pick up exactly where I left off"
@@ -78,7 +78,7 @@ Sometimes it's better to start over than to correct course:
7878

7979
1. `/context` shows a visual breakdown — it's the quickest way to understand your token budget
8080
2. `/usage` gives you raw session stats
81-
3. `/compact` is your friend for long sessions — it summarizes without losing the thread
81+
3. `/compact` is your friend for long sessions — it summarises without losing the thread
8282
4. This is about building habits: use `/clear` between tasks, `/compact` when sessions get long, and `/resume` to pick up where you left off
8383

8484
## Completion Criteria

tutorial/lessons/15-programmatic-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Export a session for sharing or archiving:
6868
"lint:copilot": "copilot -p 'review changes vs main for typos and style issues'"
6969
```
7070

71-
**Fan-out processing**analyze multiple files:
71+
**Fan-out processing**analyse multiple files:
7272
```bash
7373
for file in src/*.ts; do
7474
copilot -sp "summarize what $file does in one sentence"

0 commit comments

Comments
 (0)