microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
.github/ISSUE_TEMPLATE/custom-agent-request.yml
48lines · modecode
| 1 | name: Custom Agent Request |
| 2 | description: Request a new custom agent or slash command |
| 3 | title: "feat(agents): " |
| 4 | labels: ["custom-agent", "needs-triage"] |
| 5 | body: |
| 6 | - type: markdown |
| 7 | attributes: |
| 8 | value: | |
| 9 | Request a new custom agent or slash command for GitHub Copilot. |
| 10 | |
| 11 | - type: input |
| 12 | id: name |
| 13 | attributes: |
| 14 | label: Custom Agent Name |
| 15 | description: What should this be called? |
| 16 | placeholder: e.g., "/security-review" |
| 17 | validations: |
| 18 | required: true |
| 19 | |
| 20 | - type: dropdown |
| 21 | id: type |
| 22 | attributes: |
| 23 | label: Type |
| 24 | description: What type of enhancement is this? |
| 25 | options: |
| 26 | - Custom Agent |
| 27 | - Slash Command |
| 28 | - Other |
| 29 | validations: |
| 30 | required: true |
| 31 | |
| 32 | - type: textarea |
| 33 | id: purpose |
| 34 | attributes: |
| 35 | label: Purpose |
| 36 | description: What problem does this solve? |
| 37 | placeholder: Describe when and why this would be used |
| 38 | validations: |
| 39 | required: true |
| 40 | |
| 41 | - type: textarea |
| 42 | id: requirements |
| 43 | attributes: |
| 44 | label: Requirements |
| 45 | description: What specific behaviors should this enable? |
| 46 | placeholder: List the key capabilities or features needed |
| 47 | validations: |
| 48 | required: false |
| 49 | |