This document outlines the custom GitHub Copilot agents available in this repository.
Located in .github/agents/ folder, these agents provide specialized assistance for TO Team plugin development.
Agents are automatically discovered by GitHub Copilot Chat when:
- Files are saved with
.agent.mdextension - Located in the
.github/agents/directory - Follow the proper agent format structure
Each agent should follow this format:
# Agent Name
## Role
Brief description of the agent's purpose and specialization.
## Core Responsibilities
- List of main tasks the agent handles
- Specific domain expertise areas
- Integration points with other systems
## Implementation Guidelines
- Code patterns and best practices
- Security considerations
- Performance optimization tipsTo create a new agent:
- Create a new file in
.github/agents/ - Use the
.agent.mdextension - Follow the agent structure guidelines above
- Test the agent through GitHub Copilot Chat
For more information on agent development, see the workspace documentation.