require-qualified-agent-handoff-models
Require Copilot custom-agent handoff models to use qualified Model Name (vendor) names.
Rule catalog ID: R013
Targeted pattern scopeâ
.github/agents/**/*.agent.md
What this rule reportsâ
- handoff entries whose
modelvalue is present but not written in a qualified format such asGPT-5 (copilot)
Why this rule existsâ
VS Code custom-agent docs specify that handoffs.model should use a qualified model name in the format Model Name (vendor). That keeps handoff execution explicit and avoids ambiguous shorthand model names in multi-vendor Copilot environments.
â Incorrectâ
---
description: Plan work carefully
handoffs:
- label: Start Implementation
agent: Implementer
model: GPT-5
---
Plan the requested change before implementation.
â Correctâ
---
description: Plan work carefully
handoffs:
- label: Start Implementation
agent: Implementer
model: GPT-5 (copilot)
---
Plan the requested change before implementation.