Skip to content

Commit 1cee145

Browse files
committed
2 parents 90616a7 + c1f58df commit 1cee145

5 files changed

Lines changed: 38 additions & 1 deletion

File tree

.github/uvs.csv

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,17 @@
9595
"06/05",662
9696
"06/06",291
9797
"06/07",299
98+
"06/08",631
99+
"06/09",744
100+
"06/10",624
101+
"06/11",685
102+
"06/12",733
103+
"06/13",288
104+
"06/14",294
105+
"06/15",674
106+
"06/16",425
107+
"06/17",612
108+
"06/18",717
109+
"06/19",568
110+
"06/20",227
111+
"06/21",244

.github/views.csv

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,17 @@
9494
"06/05",1484
9595
"06/06",665
9696
"06/07",781
97+
"06/08",1249
98+
"06/09",1507
99+
"06/10",1229
100+
"06/11",1504
101+
"06/12",1691
102+
"06/13",693
103+
"06/14",684
104+
"06/15",1280
105+
"06/16",735
106+
"06/17",1235
107+
"06/18",1826
108+
"06/19",1319
109+
"06/20",589
110+
"06/21",552

01-setup-and-first-steps/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,7 @@ That's it for getting started! As you become comfortable, you can explore additi
407407
| `/env` | Show loaded environment details — what instructions, MCP servers, skills, agents, and plugins are active |
408408
| `/init` | Initialize Copilot instructions for your repository |
409409
| `/mcp` | Manage MCP server configuration |
410+
| `/settings` | Open an interactive dialog to browse and edit all user settings in one place |
410411
| `/skills` | Manage skills for enhanced capabilities |
411412

412413
> 💡 Agents are covered in [Chapter 04](../04-agents-custom-instructions/README.md), skills are covered in [Chapter 05](../05-skills/README.md), and MCP servers are covered in [Chapter 06](../06-mcp-servers/README.md).
@@ -458,6 +459,8 @@ That's it for getting started! As you become comfortable, you can explore additi
458459
| `/usage` | Display session usage metrics and statistics, including quota progress bars |
459460
| `/session` | Show session info and workspace summary; use `/session delete`, `/session delete <id>`, or `/session delete-all` to remove sessions |
460461
| `/share` | Export session as a markdown file, GitHub gist, or self-contained HTML file |
462+
| `/every <interval> <prompt>` | Schedule a prompt to run on a recurring interval (e.g., `/every 1h summarize new commits`). Use natural language for the interval. `/loop` is an alias for `/every`. |
463+
| `/after <time> <prompt>` | Schedule a prompt to run once after a delay (e.g., `/after 30m run tests`). Use natural language for the time. |
461464

462465
### Display
463466

@@ -471,6 +474,7 @@ That's it for getting started! As you become comfortable, you can explore additi
471474

472475
| Command | What It Does |
473476
|---------|--------------|
477+
| `/app` | Open the GitHub app (or browser fallback) directly from the CLI |
474478
| `/changelog` | Display changelog for CLI versions |
475479
| `/feedback` | Submit feedback to GitHub |
476480
| `/help` | Show all available commands |
@@ -504,6 +508,8 @@ copilot
504508
505509
> 💡 **Not sure which model to pick?** Select **`Auto`** from the model picker to let Copilot automatically choose the best available model for each session. This is a great default if you're just getting started and don't want to think about model selection.
506510
511+
> 💡 **Model family shortcuts**: You can also type a short family alias — like `opus`, `sonnet`, `haiku`, `gpt`, or `gemini` — directly in the `/model` picker instead of scrolling through the full list. Copilot will pick the best available model in that family for you.
512+
507513
</details>
508514

509515
---

04-agents-custom-instructions/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ copilot --agent python-reviewer
196196
197197
> 💡 **Switching agents**: You can switch to a different agent at any time by using `/agent` or `--agent` again. To return to the standard Copilot CLI experience, use `/agent` and select **no agent**.
198198
199+
> 💡 **Agent mode is session-scoped**: The agent you select applies only to the current session. When you start a new session with `/new`, `/clear`, or by opening a fresh terminal, Copilot returns to its default mode — your agent selection does not carry over automatically. This means each session starts with a clean slate, which is a good habit to keep your work focused.
200+
199201
---
200202
201203
# Going Deeper with Agents
@@ -433,6 +435,7 @@ Copilot will scan your project and create tailored instruction files. You can ed
433435
| `AGENTS.md` | Project root or nested | **Cross-platform standard** - works with Copilot and other AI assistants |
434436
| `.github/copilot-instructions.md` | Project | GitHub Copilot specific |
435437
| `.github/instructions/*.instructions.md` | Project | Granular, topic-specific instructions |
438+
| `~/.copilot/instructions/**/*.instructions.md` | User (all projects) | Personal instructions that apply everywhere, across all your repos |
436439
| `CLAUDE.md`, `GEMINI.md` | Project root | Supported for compatibility |
437440

438441
> 🎯 **Just getting started?** Use `AGENTS.md` for project instructions. You can explore the other formats later as needed.

06-mcp-servers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Copilot opens an interactive picker showing available servers. Select one, and t
152152

153153
## MCP Configuration File
154154

155-
MCP servers are configured in `~/.copilot/mcp-config.json` (user-level, applies to all projects) or `.mcp.json` (project-level, placed in the root of your project). If you used `/mcp search` above, the CLI already created or updated this file for you, but it's useful to understand the format for customization.
155+
MCP servers can be configured at the user level in `~/.copilot/mcp-config.json`, which applies across projects, at the project level in `.mcp.json`, or in the workspace config file `.github/mcp.json`. `.github/mcp.json` is auto-loaded alongside `.mcp.json`. If you used `/mcp search`, the CLI created or updated your user-level `~/.copilot/mcp-config.json`, but understanding the JSON format is useful when you want to customize or share project-level MCP configuration.
156156

157157
> ⚠️ **Note**: `.vscode/mcp.json` is no longer supported as an MCP config source. If you have an existing `.vscode/mcp.json`, migrate it to `.mcp.json` in your project root. The CLI will show a migration hint if it detects an old config file.
158158

0 commit comments

Comments
 (0)