[bot] docs(learning-hub): update for Copilot CLI v1.0.64–v1.0.66 features (#2138)

* docs(learning-hub): update for Copilot CLI v1.0.64-v1.0.66 features

- building-custom-agents: add reasoningEffort frontmatter field (v1.0.66+)
- copilot-configuration-basics:
  - add proxy setting to settings table (v1.0.64+)
  - update /cd to note session-resume persistence and agent discovery (v1.0.65)
  - update /worktree to note task-in-name feature (v1.0.66+)
  - add /every and /loop commands for scheduled prompts (v1.0.64+)
  - add dynamic skill retrieval --dynamic-retrieval flag (v1.0.66+)
- understanding-mcp-servers: add MCP server toggle from list view (v1.0.66+)
- working-with-canvas-extensions: add canvas auto-resume on restart (v1.0.65)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* revert learning-hub canvas persistence docs update

Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>

* Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
Co-authored-by: Aaron Powell <me@aaron-powell.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-06-29 11:53:05 +10:00
committed by GitHub
parent bdd993f43a
commit 0938fdc524
3 changed files with 46 additions and 4 deletions
@@ -3,7 +3,7 @@ title: 'Building Custom Agents'
description: 'Learn how to create specialized GitHub Copilot agents with custom personas, tool integrations, and domain expertise.'
authors:
- GitHub Copilot Learning Hub Team
lastUpdated: 2026-06-25
lastUpdated: 2026-06-26
estimatedReadingTime: '10 minutes'
tags:
- agents
@@ -73,6 +73,18 @@ tools: ['codebase', 'terminal', 'github']
**model** (recommended): The AI model that powers the agent. Choose based on the complexity of the task—use more capable models for nuanced reasoning.
**reasoningEffort** *(v1.0.66+)*: Override the reasoning effort level for this agent. Accepted values are `low`, `medium`, and `high`. This lets you pin specific agents to a cost/quality tradeoff regardless of the user's global setting — for example, a quick code-formatting agent can use `low` effort, while a security reviewer uses `high`:
```yaml
---
name: 'Security Reviewer'
description: 'Thorough security audit for OWASP vulnerabilities'
model: Claude Sonnet 4
reasoningEffort: high
tools: ['codebase', 'terminal', 'github']
---
```
**tools** (recommended): An array of built-in tools and MCP servers the agent can access. Common tools include:
| Tool | Purpose |