Chat Modes -> Agents (#433)

* Migrating chat modes to agents now that's been released to stable

* Fixing collections

* Fixing names of agents

* Formatting

* name too long

* Escaping C# agent name
This commit is contained in:
Aaron Powell
2025-11-25 16:24:55 +11:00
committed by GitHub
parent 7b7f9d519c
commit 86adaa48fe
163 changed files with 1475 additions and 1013 deletions

View File

@@ -42,15 +42,15 @@ Create reusable prompt files:
- `generate-docs.prompt.md` - Documentation generation
- `debug-issue.prompt.md` - Debugging assistance
### 4. `.github/chatmodes/` Directory
### 4. `.github/agents/` Directory
Create specialized chat modes:
- `architect.chatmode.md` - Architecture planning mode
- `reviewer.chatmode.md` - Code review mode
- `debugger.chatmode.md` - Debugging mode
- `architect.agent.md` - Architecture planning mode
- `reviewer.agent.md` - Code review mode
- `debugger.agent.md` - Debugging mode
**Chat Mode Attribution**: When using content from awesome-copilot chatmodes, add attribution comments:
```markdown
<!-- Based on/Inspired by: https://github.com/github/awesome-copilot/blob/main/chatmodes/[filename].chatmode.md -->
<!-- Based on/Inspired by: https://github.com/github/awesome-copilot/blob/main/agents/[filename].agent.md -->
```
### 5. `.github/workflows/` Directory
@@ -171,10 +171,10 @@ project-root/
│ │ ├── refactor-code.prompt.md
│ │ ├── generate-docs.prompt.md
│ │ └── debug-issue.prompt.md
│ ├── chatmodes/
│ │ ├── architect.chatmode.md
│ │ ├── reviewer.chatmode.md
│ │ └── debugger.chatmode.md
│ ├── agents/
│ │ ├── architect.agent.md
│ │ ├── reviewer.agent.md
│ │ └── debugger.agent.md
│ └── workflows/
│ └── copilot-setup-steps.yml
```
@@ -233,7 +233,7 @@ Requirements for the form:
```
**Chat Modes (.chatmode.md):**
**Chat Modes (.agent.md):**
```yaml
---
description: Generate an implementation plan for new features or refactoring existing code.