microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
.github/ISSUE_TEMPLATE/skill-request.yml
45lines · modecode
| 1 | name: Skill Request |
| 2 | description: Request a new skill package |
| 3 | title: "feat(skills): " |
| 4 | labels: ["skill", "needs-triage"] |
| 5 | body: |
| 6 | - type: markdown |
| 7 | attributes: |
| 8 | value: | |
| 9 | Request a new skill package for GitHub Copilot. |
| 10 | |
| 11 | - type: input |
| 12 | id: skill-name |
| 13 | attributes: |
| 14 | label: Skill Name |
| 15 | description: What should this skill be named? |
| 16 | placeholder: e.g., "docker-compose-gen" |
| 17 | validations: |
| 18 | required: true |
| 19 | |
| 20 | - type: textarea |
| 21 | id: purpose |
| 22 | attributes: |
| 23 | label: Purpose |
| 24 | description: What problem does this skill solve? |
| 25 | placeholder: Describe when and why this skill would be used |
| 26 | validations: |
| 27 | required: true |
| 28 | |
| 29 | - type: textarea |
| 30 | id: prerequisites |
| 31 | attributes: |
| 32 | label: Prerequisites |
| 33 | description: What external tools or dependencies are needed? |
| 34 | placeholder: List any required installations (e.g., ffmpeg, docker, jq) |
| 35 | validations: |
| 36 | required: false |
| 37 | |
| 38 | - type: textarea |
| 39 | id: requirements |
| 40 | attributes: |
| 41 | label: Requirements |
| 42 | description: What specific behaviors should this skill enable? |
| 43 | placeholder: List the key capabilities or features needed |
| 44 | validations: |
| 45 | required: false |
| 46 | |