Skip to content

Commit 817d165

Browse files
committed
Fix cross-references
1 parent dde3614 commit 817d165

7 files changed

Lines changed: 17 additions & 17 deletions

File tree

docs/agent-customization/agent-skills.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ To use a shared skill:
300300
1. Optionally, modify or add resources as needed
301301

302302
> [!TIP]
303-
> Always review shared skills before using them to ensure they meet your requirements and security standards. VS Code's [terminal tool](/docs/agents/agent-tools.md#terminal-commands) provides controls for script execution, including [auto-approve options](/docs/agents/agent-tools.md#automatically-approve-terminal-commands) with configurable allow-lists and tight controls over which code runs. Learn more about [security considerations](/docs/agents/security.md#automated-approval) for auto-approval features.
303+
> Always review shared skills before using them to ensure they meet your requirements and security standards. VS Code's [terminal tool](/docs/agents/agent-tools.md#terminal-commands) provides controls for script execution, including [auto-approve options](/docs/agents/agent-tools.md#automatically-approve-terminal-commands) with configurable allow-lists and tight controls over which code runs. Learn more about [security considerations](/docs/agents/security.md#approvals-and-review) for auto-approval features.
304304
305305
## Contribute skills from extensions
306306

docs/agent-customization/custom-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Different tasks require different capabilities. A planning agent might only need
4545
Custom agents also let you provide specialized instructions that define how the AI should operate. For instance, a planning agent could instruct the AI to collect project context and generate a detailed implementation plan, while a code review agent might focus on identifying security vulnerabilities and suggesting improvements. These specialized instructions ensure consistent, task-appropriate responses every time you switch to that agent.
4646

4747
> [!NOTE]
48-
> Subagents can run with a custom agent. Learn more about running [subagents with custom agents](/docs/agents/subagents.md#run-a-custom-agent-as-a-subagent-experimental) (experimental).
48+
> Subagents can run with a custom agent. Learn more about running [subagents with custom agents](/docs/agents/subagents.md#run-a-custom-agent-as-a-subagent) (experimental).
4949
5050
## Handoffs
5151

docs/agent-customization/language-models.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Some models support configurable thinking effort, which controls how much reason
4343
By default, VS Code sets recommended effort levels and has adaptive reasoning enabled, where the model dynamically determines how much to think based on the complexity of each request. For most use cases, the defaults work well.
4444

4545
> [!TIP]
46-
> Higher thinking effort produces more thinking tokens, which increases [AI credit](/docs/copilot/concepts/language-models.md#ai-credits-and-model-costs) consumption. Only increase thinking effort for genuinely complex tasks. Learn more about [optimizing AI credit usage](/docs/copilot/guides/optimize-usage.md).
46+
> Higher thinking effort produces more thinking tokens, which increases [AI credit](/docs/agents/concepts/language-models.md#ai-credits-and-model-costs) consumption. Only increase thinking effort for genuinely complex tasks. Learn more about [optimizing AI credit usage](/docs/agents/guides/optimize-usage.md).
4747
4848
To configure the thinking effort:
4949

@@ -69,13 +69,13 @@ With auto model selection, VS Code evaluates task complexity and real-time model
6969

7070
To use auto model selection, select **Auto** from the model picker in chat. You can see which model is used for generating a response by hovering over the chat response.
7171

72-
![Screenshot of a chat response, showing the selected model on hover.](../images/language-models/chat-response-selected-model.png)
72+
![Screenshot of a chat response, showing the selected model on hover.](images/language-models/chat-response-selected-model.png)
7373

7474
## Manage language models
7575

7676
You can use the language models editor to view all available models, choose which models are shown in the model picker, and add more models by adding from built-in providers or from extension-provided model providers.
7777

78-
To open the Language Models editor, open the model picker in the Chat view and select **Manage Language Models** (gear icon) or run the **Chat: Manage Language Models** command from the Command Palette. The Language Models editor opens by default in a [modal overlay](/docs/getstarted/userinterface.md#modal-editors) on top of the editor area.
78+
To open the Language Models editor, open the model picker in the Chat view and select **Manage Language Models** (gear icon) or run the **Chat: Manage Language Models** command from the Command Palette. The Language Models editor opens by default in a [modal overlay](/docs/editing/userinterface.md#modal-editors) on top of the editor area.
7979

8080
![Screenshot that shows the Language Models editor.](images/language-models/language-models-editor.png)
8181

@@ -94,7 +94,7 @@ You can customize which models are shown in the model picker by changing the vis
9494

9595
Hover over a model in the list and select the eye icon to show or hide the model in the model picker.
9696

97-
![Screenshot that shows the Language Models editor with the eye icon to show or hide models in the model picker.](../images/language-models/language-models-hide.png)
97+
![Screenshot that shows the Language Models editor with the eye icon to show or hide models in the model picker.](images/language-models/language-models-hide.png)
9898

9999
### Pin favorite models
100100

@@ -140,7 +140,7 @@ To configure a language model from a built-in provider:
140140

141141
1. Select **Add Models**, and then select a model provider from the list.
142142

143-
![Screenshot that shows the model provider Quick Pick.](../images/language-models/model-provider-quick-pick-v2.png)
143+
![Screenshot that shows the model provider Quick Pick.](images/language-models/model-provider-quick-pick-v2.png)
144144

145145
1. Enter a group name for the models. This is the grouping label shown in the model picker and Language Models editor.
146146

docs/agents/best-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Each AI model has different strengths. Some are better at reasoning, others exce
135135
136136
* **Consider credit consumption.** More capable models consume more [AI credits](/docs/agents/concepts/language-models.md#ai-credits-and-model-costs) per token. Auto model selection balances quality and cost automatically. For more tips, see [optimize AI credit usage](/docs/agents/guides/optimize-usage.md).
137137
138-
For more information, see [selecting AI models](/docs/agents/customization/language-models.md) and [available models for Copilot Chat](https://docs.github.com/en/copilot/using-github-copilot/ai-models/changing-the-ai-model-for-copilot-chat).
138+
For more information, see [selecting AI models](/docs/agent-customization/language-models.md) and [available models for Copilot Chat](https://docs.github.com/en/copilot/using-github-copilot/ai-models/changing-the-ai-model-for-copilot-chat).
139139
140140
## Plan first, then implement
141141
@@ -186,7 +186,7 @@ For more information, see [session management](/docs/agents/sessions/chat-sessio
186186
187187
Copilot is designed to work effectively with large, complex, and multi-root workspaces. Use these practices to get the best results at scale.
188188
189-
* **Use workspace indexing.** VS Code automatically indexes your project using semantic search, language intelligence, and GitHub's code search for deep cross-file reasoning. This works for both small projects and large enterprise codebases. For large repositories, use [remote indexing](/docs/agents/reference/workspace-context.md#remote-index) for fast, comprehensive results across your repository and related repositories on GitHub.
189+
* **Use workspace indexing.** VS Code automatically indexes your project using semantic search, language intelligence, and GitHub's code search for deep cross-file reasoning. This works for both small projects and large enterprise codebases. For large repositories, use [remote indexing](/docs/agents/reference/workspace-context.md#semantic-index-sources) for fast, comprehensive results across your repository and related repositories on GitHub.
190190
191191
* **Scope work with multi-root workspaces.** For monorepos or projects with multiple services, use [multi-root workspaces](/docs/editing/workspaces/multi-root-workspaces.md) to give the AI clear boundaries and focused context.
192192

docs/agents/security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ VS Code's security model uses trust boundaries to limit the potential impact of
4545
* **Workspace**: controls whether VS Code enables features like tasks, debugging, and workspace settings that can execute code from the project. An untrusted workspace runs in [restricted mode](/docs/editing/workspaces/workspace-trust.md), which also disables agents.
4646
* **Extension publisher**: controls whether extensions from a given publisher can be installed and run. VS Code prompts you to [trust the publisher](/docs/configure/extensions/extension-runtime-security.md) before activating their extensions.
4747
* **MCP server**: controls whether an MCP server can start and provide tools. VS Code prompts you to [trust each MCP server](/docs/agent-customization/mcp-servers.md#mcp-server-trust) before it runs, and re-prompts after configuration changes.
48-
* **Network domain**: controls whether the agent can fetch content from a URL. VS Code prompts you to trust a domain before making requests to it, integrated with the [Trusted Domains](/docs/editing/editingevolved.md#_outgoing-link-protection) list. You can also enable `setting(chat.agent.networkFilter)` to restrict which domains agent tools (fetch tool, integrated browser) and sandboxed terminal commands can access. Learn more about [network filtering](/docs/agents/agent-tools.md#configure-network-access).
48+
* **Network domain**: controls whether the agent can fetch content from a URL. VS Code prompts you to trust a domain before making requests to it, integrated with the [Trusted Domains](/docs/editing/editingevolved.md#outgoing-link-protection) list. You can also enable `setting(chat.agent.networkFilter)` to restrict which domains agent tools (fetch tool, integrated browser) and sandboxed terminal commands can access. Learn more about [network filtering](/docs/agents/agent-tools.md#configure-network-access).
4949

5050
You can revoke trust at any time through dedicated commands in the Command Palette.
5151

docs/chat/copilot-chat-context.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ The context window control provides the following information:
129129
As you send more requests in a conversation, the control updates to reflect the increasing context usage. The total available context (denominator) changes based on the AI model you select, since different models have different context window sizes.
130130

131131
> [!TIP]
132-
> When the context window fills up, VS Code automatically [compacts the conversation history](#context-compaction) to free up space.
132+
> When the context window fills up, VS Code automatically compacts the conversation history to free up space.
133133
134134
## Context compaction
135135

136-
As a conversation grows, the accumulated messages and context can fill up the model's context window. Context compaction summarizes the conversation history to free up space, so you can continue working in the same session without losing important details. Compacting also reduces the number of tokens sent with each subsequent request, which helps manage [AI credit consumption](/docs/copilot/guides/optimize-usage.md).
136+
As a conversation grows, the accumulated messages and context can fill up the model's context window. Context compaction summarizes the conversation history to free up space, so you can continue working in the same session without losing important details. Compacting also reduces the number of tokens sent with each subsequent request, which helps manage [AI credit consumption](/docs/agents/guides/optimize-usage.md).
137137

138138
### Automatic compaction
139139

@@ -155,7 +155,7 @@ If you want to reset the context entirely, start a [new chat session](/docs/agen
155155

156156
## Related resources
157157

158-
* [Chat overview](/docs/chat/copilot-chat.md)
159-
* [Prompt examples](/docs/chat/prompt-examples.md)
158+
* [Chat overview](/docs/agents/chat-view.md)
159+
* [Prompt examples](/docs/agents/guides/prompt-examples.md)
160160
* [Prompt engineering guide](/docs/agents/best-practices.md)
161161
* [Debug chat interactions](/docs/agents/agent-troubleshooting/chat-debug-view.md)

docs/chat/copilot-chat.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Follow a hands-on tutorial to experience local, background, and cloud agents in
2323
* Access to [GitHub Copilot](/docs/setup/copilot.md). If you don't have a subscription, you can use Copilot for free by signing up for the [Copilot Free plan](https://github.com/github-copilot/signup).
2424

2525
> [!IMPORTANT]
26-
> **Starting April 20, 2026**, new sign-ups for Copilot Pro, Copilot Pro+, Max, and Student plans are temporarily paused.
26+
> **Starting April 20, 2026**, new sign-ups for Copilot Pro, Copilot Pro+, Max, and Student plans are temporarily paused.
2727
2828
## Access chat in VS Code
2929

@@ -111,7 +111,7 @@ After the AI makes changes to your files, review and accept or discard them.
111111
112112
Chat provides several ways to improve the quality and relevance of AI responses:
113113
114-
* **Write effective prompts**: be specific about what you want, reference relevant files and symbols, and use `/` commands for common tasks. Get inspired by [prompt examples](/docs/chat/prompt-examples.md) or review the full [prompt engineering guide](/docs/agents/best-practices.md).
114+
* **Write effective prompts**: be specific about what you want, reference relevant files and symbols, and use `/` commands for common tasks. Get inspired by [prompt examples](/docs/agents/guides/prompt-examples.md) or review the full [prompt engineering guide](/docs/agents/best-practices.md).
115115
116116
* **Customize the AI**: tailor the AI's behavior to your project by adding [custom instructions](/docs/agent-customization/custom-instructions.md), creating reusable [prompt files](/docs/agent-customization/prompt-files.md), or building [custom agents](/docs/agent-customization/custom-agents.md) for specialized workflows. For example, create a "Code Reviewer" agent that provides feedback on code quality and adherence to your team's coding standards.
117117
@@ -135,4 +135,4 @@ To learn more about Copilot's security, privacy, compliance, and transparency, s
135135
136136
* [Choose agents and configure permissions](/docs/agents/overview.md)
137137
138-
* [Prompt examples](/docs/chat/prompt-examples.md)
138+
* [Prompt examples](/docs/agents/guides/prompt-examples.md)

0 commit comments

Comments
 (0)