chore: publish from main

This commit is contained in:
github-actions[bot]
2026-06-29 01:53:35 +00:00
parent 6c551a1088
commit 0d116cfeab
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 |