|
| 1 | +name: Feature Request |
| 2 | +description: Suggest a new feature or enhancement for Semantic Foragecast Engine |
| 3 | +title: "[Feature]: " |
| 4 | +labels: ["enhancement", "needs-discussion"] |
| 5 | +assignees: [] |
| 6 | + |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + Thanks for suggesting a new feature! Please provide as much detail as possible. |
| 12 | +
|
| 13 | + - type: textarea |
| 14 | + id: summary |
| 15 | + attributes: |
| 16 | + label: Feature Summary |
| 17 | + description: A brief, clear description of the feature you'd like to see |
| 18 | + placeholder: Add support for 3D mesh animation mode |
| 19 | + validations: |
| 20 | + required: true |
| 21 | + |
| 22 | + - type: textarea |
| 23 | + id: problem |
| 24 | + attributes: |
| 25 | + label: Problem Statement |
| 26 | + description: What problem does this feature solve? What's your use case? |
| 27 | + placeholder: | |
| 28 | + I'm trying to create more realistic character animations, but the current 2D mode... |
| 29 | + validations: |
| 30 | + required: true |
| 31 | + |
| 32 | + - type: textarea |
| 33 | + id: solution |
| 34 | + attributes: |
| 35 | + label: Proposed Solution |
| 36 | + description: How would you like this feature to work? |
| 37 | + placeholder: | |
| 38 | + Add a new animation mode `mode: "3d"` that: |
| 39 | + 1. Creates a 3D mesh from the input image |
| 40 | + 2. Rigs it with bones |
| 41 | + 3. Animates based on phonemes and beats |
| 42 | + validations: |
| 43 | + required: true |
| 44 | + |
| 45 | + - type: textarea |
| 46 | + id: alternatives |
| 47 | + attributes: |
| 48 | + label: Alternative Solutions |
| 49 | + description: Have you considered any alternative approaches? |
| 50 | + placeholder: I also thought about using particle systems, but... |
| 51 | + |
| 52 | + - type: dropdown |
| 53 | + id: category |
| 54 | + attributes: |
| 55 | + label: Feature Category |
| 56 | + description: What type of feature is this? |
| 57 | + options: |
| 58 | + - Animation Mode |
| 59 | + - Audio Analysis |
| 60 | + - Visual Effect |
| 61 | + - Performance Optimization |
| 62 | + - Configuration Option |
| 63 | + - Documentation |
| 64 | + - Developer Experience |
| 65 | + - Other |
| 66 | + validations: |
| 67 | + required: true |
| 68 | + |
| 69 | + - type: dropdown |
| 70 | + id: priority |
| 71 | + attributes: |
| 72 | + label: Priority (Your Opinion) |
| 73 | + description: How important is this feature to you? |
| 74 | + options: |
| 75 | + - Critical (Blocking my use case) |
| 76 | + - High (Would greatly improve my workflow) |
| 77 | + - Medium (Nice to have) |
| 78 | + - Low (Minor improvement) |
| 79 | + validations: |
| 80 | + required: true |
| 81 | + |
| 82 | + - type: textarea |
| 83 | + id: examples |
| 84 | + attributes: |
| 85 | + label: Examples / Mockups |
| 86 | + description: Links to similar features in other tools, mockups, or example outputs |
| 87 | + placeholder: | |
| 88 | + Similar to how Tool X handles this: |
| 89 | + https://example.com/feature |
| 90 | +
|
| 91 | + Or here's a mockup of the config I envision: |
| 92 | + ```yaml |
| 93 | + animation: |
| 94 | + mode: "3d" |
| 95 | + mesh_detail: high |
| 96 | + ``` |
| 97 | +
|
| 98 | + - type: textarea |
| 99 | + id: impact |
| 100 | + attributes: |
| 101 | + label: Impact & Benefits |
| 102 | + description: Who would benefit from this feature? What's the expected impact? |
| 103 | + placeholder: | |
| 104 | + - Benefit users who need realistic animations |
| 105 | + - Would enable use case X |
| 106 | + - Could attract Y type of users |
| 107 | +
|
| 108 | + - type: checkboxes |
| 109 | + id: contribution |
| 110 | + attributes: |
| 111 | + label: Contribution |
| 112 | + description: Would you be willing to help implement this? |
| 113 | + options: |
| 114 | + - label: I would like to implement this feature myself |
| 115 | + - label: I can help with testing |
| 116 | + - label: I can help with documentation |
| 117 | + - label: I can provide sample data/files |
| 118 | + |
| 119 | + - type: checkboxes |
| 120 | + id: checklist |
| 121 | + attributes: |
| 122 | + label: Pre-submission Checklist |
| 123 | + description: Please confirm the following |
| 124 | + options: |
| 125 | + - label: I have searched existing issues to avoid duplicates |
| 126 | + required: true |
| 127 | + - label: I have checked the roadmap to see if this is already planned |
| 128 | + required: true |
| 129 | + - label: This feature aligns with the project's goals |
| 130 | + required: false |
0 commit comments