|
10 | 10 | - Hardware-related proposals must address the Hardware Considerations section. |
11 | 11 | - Protocol/API changes must include backward compatibility analysis. |
12 | 12 | - Write as if teaching the feature to a new Jumpstarter contributor. |
| 13 | + - Each design decision should document alternatives considered and rationale |
| 14 | + (following the ADR pattern used in the project). |
| 15 | + - Sections marked (mandatory) must be filled in. Sections marked (optional) |
| 16 | + may be omitted if not applicable. |
13 | 17 | --> |
14 | 18 |
|
15 | 19 | | Field | Value | |
|
28 | 32 |
|
29 | 33 | --- |
30 | 34 |
|
31 | | -## Abstract |
| 35 | +## Abstract *(mandatory)* |
32 | 36 |
|
33 | 37 | <!-- |
34 | 38 | One paragraph (3-5 sentences) summarizing the proposal. A reader should be |
35 | 39 | able to decide whether this JEP is relevant to them from the abstract alone. |
36 | 40 | --> |
37 | 41 |
|
38 | | -## Motivation |
| 42 | +## Motivation *(mandatory)* |
39 | 43 |
|
40 | 44 | <!-- |
41 | 45 | Why is this change needed? What problem does it solve? Who benefits? |
|
48 | 52 | Do not describe the solution here — that belongs in the Proposal section. |
49 | 53 | --> |
50 | 54 |
|
51 | | -### User Stories (Optional) |
| 55 | +### User Stories *(optional)* |
52 | 56 |
|
53 | 57 | <!-- |
54 | 58 | Describe 2-3 concrete scenarios from the perspective of a Jumpstarter user. |
|
59 | 63 | specific device is offline. |
60 | 64 | --> |
61 | 65 |
|
62 | | -## Proposal |
| 66 | +## Proposal *(mandatory)* |
63 | 67 |
|
64 | 68 | <!-- |
65 | 69 | Explain the proposal as if it were already implemented and you are teaching |
|
76 | 80 | someone could begin implementation from it. |
77 | 81 | --> |
78 | 82 |
|
79 | | -### API / Protocol Changes (if applicable) |
| 83 | +### API / Protocol Changes *(if applicable)* |
80 | 84 |
|
81 | 85 | <!-- |
82 | 86 | If this JEP modifies gRPC .proto definitions, operator CRDs, driver |
|
87 | 91 | - For breaking changes, describe the migration path. |
88 | 92 | --> |
89 | 93 |
|
90 | | -### Hardware Considerations (if applicable) |
| 94 | +### Hardware Considerations *(if applicable)* |
91 | 95 |
|
92 | 96 | <!-- |
93 | 97 | Jumpstarter operates at the hardware-software boundary. If this proposal |
|
101 | 105 | - Are there power/thermal/physical safety implications? |
102 | 106 | --> |
103 | 107 |
|
104 | | -## Design Details |
| 108 | +## Design Decisions *(mandatory for Standards Track)* |
| 109 | + |
| 110 | +<!-- |
| 111 | + Document each significant design decision using the pattern below. |
| 112 | + This follows the Architecture Decision Record (ADR) convention used |
| 113 | + elsewhere in the project (see python/docs/source/contributing/adr/). |
| 114 | +
|
| 115 | + For each decision, state what was decided, what alternatives were |
| 116 | + considered, and why the chosen approach was preferred. This section |
| 117 | + is the most important part of the JEP for long-term project memory — |
| 118 | + future contributors will refer to it to understand *why* things are |
| 119 | + the way they are. |
| 120 | +--> |
| 121 | + |
| 122 | +### DD-1: *Decision title* |
| 123 | + |
| 124 | +**Alternatives considered:** |
| 125 | + |
| 126 | +1. **Option A** — Brief description. |
| 127 | +2. **Option B** — Brief description. |
| 128 | + |
| 129 | +**Decision:** Option A. |
| 130 | + |
| 131 | +**Rationale:** Explain why this option was chosen over the alternatives. |
| 132 | +Reference specific project constraints, prior art, or technical tradeoffs. |
| 133 | + |
| 134 | +<!-- |
| 135 | + Add more DD-N subsections as needed. Each decision should be |
| 136 | + independently understandable. |
| 137 | +--> |
| 138 | + |
| 139 | +## Design Details *(mandatory for Standards Track)* |
105 | 140 |
|
106 | 141 | <!-- |
107 | 142 | The technical heart of the JEP. Cover: |
|
116 | 151 | interactions. |
117 | 152 | --> |
118 | 153 |
|
119 | | -## Test Plan |
| 154 | +## Test Plan *(mandatory for Standards Track)* |
120 | 155 |
|
121 | 156 | <!-- |
122 | 157 | How will this feature be tested? Jumpstarter's HiL nature means pure unit |
|
137 | 172 | the implementation? |
138 | 173 | --> |
139 | 174 |
|
140 | | -## Graduation Criteria (Optional) |
| 175 | +## Graduation Criteria *(optional)* |
141 | 176 |
|
142 | 177 | <!-- |
143 | 178 | For features that should be introduced incrementally (e.g., behind a |
|
152 | 187 | - How long should the feature be in experimental before promotion? |
153 | 188 | --> |
154 | 189 |
|
155 | | -## Backward Compatibility |
| 190 | +## Backward Compatibility *(mandatory for Standards Track)* |
156 | 191 |
|
157 | 192 | <!-- |
158 | 193 | - Does this change break existing users, drivers, exporters, or deployments? |
|
162 | 197 | - For protocol changes: is the wire format backward compatible? |
163 | 198 | --> |
164 | 199 |
|
165 | | -## Rejected Alternatives |
| 200 | +## Consequences *(mandatory)* |
| 201 | + |
| 202 | +<!-- |
| 203 | + Summarize the expected outcomes of this proposal, following ADR convention. |
| 204 | +--> |
| 205 | + |
| 206 | +### Positive |
| 207 | + |
| 208 | +<!-- |
| 209 | + What benefits does this proposal deliver? Be specific. |
| 210 | +--> |
| 211 | + |
| 212 | +### Negative |
| 213 | + |
| 214 | +<!-- |
| 215 | + What downsides or costs does this proposal introduce? Be honest. |
| 216 | +--> |
| 217 | + |
| 218 | +### Risks *(optional)* |
| 219 | + |
| 220 | +<!-- |
| 221 | + What could go wrong? What assumptions might prove incorrect? |
| 222 | +--> |
| 223 | + |
| 224 | +## Rejected Alternatives *(mandatory)* |
166 | 225 |
|
167 | 226 | <!-- |
168 | 227 | What other designs were considered? Why were they not chosen? |
|
171 | 230 | explored and helps future contributors understand why the chosen approach |
172 | 231 | was preferred. Include brief descriptions of alternatives and the reasons |
173 | 232 | they were rejected. |
| 233 | +
|
| 234 | + Note: If you used the Design Decisions section above with alternatives |
| 235 | + for each decision, you may keep this section brief and refer back to |
| 236 | + those decisions. Use this section for higher-level alternatives that |
| 237 | + don't fit into individual design decisions (e.g., "we considered not |
| 238 | + doing this at all"). |
174 | 239 | --> |
175 | 240 |
|
176 | | -## Prior Art (Optional) |
| 241 | +## Prior Art *(optional)* |
177 | 242 |
|
178 | 243 | <!-- |
179 | 244 | Are similar features present in other HiL frameworks, testing tools, or |
|
186 | 251 | - Remote access solutions (if relevant) |
187 | 252 | --> |
188 | 253 |
|
189 | | -## Unresolved Questions |
| 254 | +## Unresolved Questions *(optional)* |
190 | 255 |
|
191 | 256 | <!-- |
192 | 257 | What aspects of the design are still open? List specific questions that |
193 | 258 | should be resolved during the JEP review process. Questions that can wait |
194 | 259 | until implementation should be noted as such. |
195 | 260 | --> |
196 | 261 |
|
197 | | -## Future Possibilities (Optional) |
| 262 | +## Future Possibilities *(optional)* |
198 | 263 |
|
199 | 264 | <!-- |
200 | 265 | What natural extensions or follow-up work does this proposal enable? This |
|
0 commit comments