microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
.github/ISSUE_TEMPLATE/prompt-request.yml
51lines · modecode
| 1 | name: Prompt Template Request |
| 2 | description: Request a new prompt template |
| 3 | title: "feat(prompts): " |
| 4 | labels: ["prompt", "needs-triage"] |
| 5 | body: |
| 6 | - type: markdown |
| 7 | attributes: |
| 8 | value: | |
| 9 | Request a new prompt template for a specific task or workflow. |
| 10 | |
| 11 | - type: input |
| 12 | id: prompt-name |
| 13 | attributes: |
| 14 | label: Prompt Name |
| 15 | description: What should the prompt be named? |
| 16 | placeholder: e.g., "Generate Unit Tests" |
| 17 | validations: |
| 18 | required: true |
| 19 | |
| 20 | - type: dropdown |
| 21 | id: category |
| 22 | attributes: |
| 23 | label: Category |
| 24 | description: What category does this prompt belong to? |
| 25 | options: |
| 26 | - Code Generation |
| 27 | - Testing |
| 28 | - Documentation |
| 29 | - Refactoring |
| 30 | - Analysis |
| 31 | - Other |
| 32 | validations: |
| 33 | required: true |
| 34 | |
| 35 | - type: textarea |
| 36 | id: use-case |
| 37 | attributes: |
| 38 | label: Use Case |
| 39 | description: What problem does this prompt solve? |
| 40 | placeholder: Describe when and why this prompt would be used |
| 41 | validations: |
| 42 | required: true |
| 43 | |
| 44 | - type: textarea |
| 45 | id: requirements |
| 46 | attributes: |
| 47 | label: Requirements |
| 48 | description: What specific behaviors should this prompt enable? |
| 49 | placeholder: List the key requirements for this prompt |
| 50 | validations: |
| 51 | required: false |
| 52 | |