microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
.github/ISSUE_TEMPLATE/skill-request.yml
57lines · 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: dropdown |
| 21 | id: programming-language |
| 22 | attributes: |
| 23 | label: Programming Language |
| 24 | description: Primary language for skill logic. All skills require Bash (macOS/Linux) and PowerShell (Windows) scripts for cross-platform support. |
| 25 | options: |
| 26 | - PowerShell |
| 27 | - Python |
| 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 skill solve? |
| 37 | placeholder: Describe when and why this skill would be used |
| 38 | validations: |
| 39 | required: true |
| 40 | |
| 41 | - type: textarea |
| 42 | id: prerequisites |
| 43 | attributes: |
| 44 | label: Prerequisites |
| 45 | description: What external tools or dependencies are needed? |
| 46 | placeholder: List any required installations (e.g., ffmpeg, docker, jq) |
| 47 | validations: |
| 48 | required: false |
| 49 | |
| 50 | - type: textarea |
| 51 | id: requirements |
| 52 | attributes: |
| 53 | label: Requirements |
| 54 | description: What specific behaviors should this skill enable? |
| 55 | placeholder: List the key capabilities or features needed |
| 56 | validations: |
| 57 | required: false |
| 58 | |