|
| 1 | +name: CrowdCode Feature Request |
| 2 | +description: Submit a feature idea for AI-powered implementation |
| 3 | +title: "[FEATURE] " |
| 4 | +labels: ["crowdcode:feature-request"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + ## 🤖 CrowdCode Feature Request |
| 10 | + |
| 11 | + This feature will be reviewed and potentially implemented by AI (GitHub Copilot). |
| 12 | + PatchPanel members will vote on whether to promote it to the main branch. |
| 13 | + |
| 14 | + **How it works:** |
| 15 | + 1. You submit this feature request |
| 16 | + 2. AI generates a pull request with implementation |
| 17 | + 3. PatchPanel members review and vote |
| 18 | + 4. If approved, the feature is merged to main |
| 19 | + |
| 20 | + All feature branches remain visible, even if not merged. |
| 21 | + |
| 22 | + - type: input |
| 23 | + id: feature-name |
| 24 | + attributes: |
| 25 | + label: Feature Name |
| 26 | + description: Short, descriptive name for this feature |
| 27 | + placeholder: "e.g., Dark Mode Support, Advanced Search, Export to CSV" |
| 28 | + validations: |
| 29 | + required: true |
| 30 | + |
| 31 | + - type: textarea |
| 32 | + id: description |
| 33 | + attributes: |
| 34 | + label: Feature Description |
| 35 | + description: Detailed description of what this feature should do |
| 36 | + placeholder: | |
| 37 | + Describe the feature in detail: |
| 38 | + - What functionality should it add? |
| 39 | + - How should it work? |
| 40 | + - What should the user experience be? |
| 41 | + |
| 42 | + Be as specific as possible to help the AI generate accurate code. |
| 43 | + validations: |
| 44 | + required: true |
| 45 | + |
| 46 | + - type: textarea |
| 47 | + id: use-case |
| 48 | + attributes: |
| 49 | + label: Use Case / Motivation |
| 50 | + description: Why is this feature needed? |
| 51 | + placeholder: | |
| 52 | + Explain why this feature would be valuable: |
| 53 | + - What problem does it solve? |
| 54 | + - Who would benefit from it? |
| 55 | + - How does it align with project goals? |
| 56 | + |
| 57 | + Help the community understand the value proposition. |
| 58 | + validations: |
| 59 | + required: true |
| 60 | + |
| 61 | + - type: textarea |
| 62 | + id: acceptance-criteria |
| 63 | + attributes: |
| 64 | + label: Acceptance Criteria |
| 65 | + description: How will we know this feature is complete and working correctly? |
| 66 | + placeholder: | |
| 67 | + List specific, testable criteria: |
| 68 | + - [ ] User can toggle dark mode via button in header |
| 69 | + - [ ] Dark mode preference is saved to localStorage |
| 70 | + - [ ] All UI elements have appropriate dark mode colors |
| 71 | + - [ ] Accessibility (contrast ratios) maintained in dark mode |
| 72 | + |
| 73 | + These help validate the AI-generated implementation. |
| 74 | + validations: |
| 75 | + required: false |
| 76 | + |
| 77 | + - type: dropdown |
| 78 | + id: priority |
| 79 | + attributes: |
| 80 | + label: Priority |
| 81 | + description: How important is this feature? |
| 82 | + options: |
| 83 | + - Low - Nice to have |
| 84 | + - Medium - Would improve the project |
| 85 | + - High - Important for project goals |
| 86 | + - Critical - Blocks other work or fixes major issue |
| 87 | + default: 1 |
| 88 | + validations: |
| 89 | + required: false |
| 90 | + |
| 91 | + - type: textarea |
| 92 | + id: technical-notes |
| 93 | + attributes: |
| 94 | + label: Technical Notes (Optional) |
| 95 | + description: Any technical considerations or suggestions for implementation |
| 96 | + placeholder: | |
| 97 | + Optional technical guidance for AI implementation: |
| 98 | + - Suggested approach or architecture |
| 99 | + - Files that may need changes |
| 100 | + - Dependencies or libraries to consider |
| 101 | + - Potential challenges or edge cases to handle |
| 102 | + - Similar features in other projects for reference |
| 103 | + validations: |
| 104 | + required: false |
| 105 | + |
| 106 | + - type: textarea |
| 107 | + id: examples |
| 108 | + attributes: |
| 109 | + label: Examples or References (Optional) |
| 110 | + description: Links to similar features, mockups, or examples |
| 111 | + placeholder: | |
| 112 | + Helpful references: |
| 113 | + - Screenshots or mockups |
| 114 | + - Links to similar features in other projects |
| 115 | + - Code examples or snippets |
| 116 | + - Design inspiration |
| 117 | + validations: |
| 118 | + required: false |
| 119 | + |
| 120 | + - type: checkboxes |
| 121 | + id: terms |
| 122 | + attributes: |
| 123 | + label: CrowdCode Terms |
| 124 | + description: By submitting this issue, you agree that |
| 125 | + options: |
| 126 | + - label: This feature will be implemented by AI (GitHub Copilot) |
| 127 | + required: true |
| 128 | + - label: The implementation will be subject to PatchPanel voting |
| 129 | + required: true |
| 130 | + - label: The feature branch will remain public even if not merged |
| 131 | + required: true |
| 132 | + - label: I have searched existing issues to avoid duplicates |
| 133 | + required: true |
0 commit comments