|
| 1 | +name: Feature Request |
| 2 | +description: Propose a new feature or enhancement for lambda-rs. |
| 3 | +title: "[Feature] " |
| 4 | +labels: ["enhancement"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Use this template to propose new functionality or enhancements. Provide |
| 10 | + sufficient detail for maintainers to evaluate scope, feasibility, and |
| 11 | + alignment with project goals. |
| 12 | +
|
| 13 | + - type: textarea |
| 14 | + id: overview |
| 15 | + attributes: |
| 16 | + label: Overview |
| 17 | + description: A concise summary of the proposed feature and its purpose. |
| 18 | + placeholder: | |
| 19 | + Describe the feature in one paragraph. Include the problem it solves and |
| 20 | + the expected outcome. |
| 21 | + validations: |
| 22 | + required: true |
| 23 | + |
| 24 | + - type: textarea |
| 25 | + id: current-state |
| 26 | + attributes: |
| 27 | + label: Current State |
| 28 | + description: Describe the current behavior or limitation that motivates this request. |
| 29 | + placeholder: | |
| 30 | + Reference existing code, APIs, or behavior. Include file paths or code snippets where relevant. |
| 31 | + Example: |
| 32 | + ```rust |
| 33 | + // crates/lambda-rs/src/example.rs:42-50 |
| 34 | + // Current implementation does X but lacks Y |
| 35 | + ``` |
| 36 | + validations: |
| 37 | + required: false |
| 38 | + |
| 39 | + - type: textarea |
| 40 | + id: scope |
| 41 | + attributes: |
| 42 | + label: Scope |
| 43 | + description: Define goals and non-goals for this feature. |
| 44 | + placeholder: | |
| 45 | + **Goals:** |
| 46 | + - Goal 1 |
| 47 | + - Goal 2 |
| 48 | +
|
| 49 | + **Non-Goals:** |
| 50 | + - Item explicitly out of scope |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + |
| 54 | + - type: textarea |
| 55 | + id: proposed-api |
| 56 | + attributes: |
| 57 | + label: Proposed API |
| 58 | + description: Outline the public API surface, types, and usage patterns. |
| 59 | + placeholder: | |
| 60 | + ```rust |
| 61 | + pub struct ExampleBuilder { |
| 62 | + // fields |
| 63 | + } |
| 64 | +
|
| 65 | + impl ExampleBuilder { |
| 66 | + pub fn new() -> Self; |
| 67 | + pub fn with_option(self, value: u32) -> Self; |
| 68 | + pub fn build(self) -> Result<Example, ExampleError>; |
| 69 | + } |
| 70 | + ``` |
| 71 | +
|
| 72 | + **Example Usage:** |
| 73 | + ```rust |
| 74 | + let example = ExampleBuilder::new() |
| 75 | + .with_option(42) |
| 76 | + .build()?; |
| 77 | + ``` |
| 78 | + validations: |
| 79 | + required: false |
| 80 | + |
| 81 | + - type: textarea |
| 82 | + id: acceptance-criteria |
| 83 | + attributes: |
| 84 | + label: Acceptance Criteria |
| 85 | + description: List concrete, testable criteria for completion. |
| 86 | + placeholder: | |
| 87 | + - [ ] Criterion 1 |
| 88 | + - [ ] Criterion 2 |
| 89 | + - [ ] Documentation updated |
| 90 | + - [ ] Example added or updated |
| 91 | + validations: |
| 92 | + required: true |
| 93 | + |
| 94 | + - type: dropdown |
| 95 | + id: affected-crates |
| 96 | + attributes: |
| 97 | + label: Affected Crates |
| 98 | + description: Select the crate(s) this feature impacts. |
| 99 | + multiple: true |
| 100 | + options: |
| 101 | + - lambda-rs |
| 102 | + - lambda-rs-platform |
| 103 | + - lambda-rs-args |
| 104 | + - lambda-rs-logging |
| 105 | + - Other/Multiple |
| 106 | + validations: |
| 107 | + required: true |
| 108 | + |
| 109 | + - type: textarea |
| 110 | + id: notes |
| 111 | + attributes: |
| 112 | + label: Notes |
| 113 | + description: Additional context, constraints, or considerations. |
| 114 | + placeholder: | |
| 115 | + - Related issues or PRs |
| 116 | + - Platform-specific considerations |
| 117 | + - Future work explicitly deferred |
| 118 | + validations: |
| 119 | + required: false |
0 commit comments