You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/docs/Ways-of-Working/Issue-Format.md
+13-12Lines changed: 13 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -229,10 +229,11 @@ The task-level roadmap. Implementers track progress here; reviewers use it to un
229
229
Structure:
230
230
231
231
- Every discrete piece of work is a checkbox: `- [ ]`.
232
-
- Tasks are grouped under subheadings when work spans multiple areas (files, components, tests).
232
+
- Tasks are grouped under subheadings when work spans multiple behaviors or dependencies. Keep each behavior's tests with its implementation tasks.
233
233
- Each task is specific and actionable — file paths, function names, modules.
234
234
- All tasks start unchecked. Checking happens during implementation.
235
-
- Tasks are ordered logically — dependencies first, tests last.
235
+
- Order groups and tasks so scope and dependencies are clear; the checklist layout is not a mandatory execution sequence.
236
+
- Follow [test-first development](../Coding-Standards/Testing.md#test-first): define and run a behavior's test before implementing that behavior, regardless of how its checkboxes are organized.
236
237
237
238
For PBIs and Epics, Section 3 is **a list of links to child issues**, not inline tasks. See [Issue Hierarchy](Issue-Hierarchy.md).
238
239
@@ -243,17 +244,17 @@ For PBIs and Epics, Section 3 is **a list of links to child issues**, not inline
243
244
244
245
## Implementation plan
245
246
246
-
### Core changes
247
+
### Paged responses
247
248
249
+
-[ ] Add unit test for single-page response
250
+
-[ ] Add unit test for multi-page response
248
251
-[ ] Add a paged-request helper in `src/lib/`
249
252
-[ ] Update the `repo list` command to call the paged variant in `src/commands/repository/`
250
-
-[ ] Add a `--limit` option with integer type and validation
251
253
252
-
### Tests
254
+
### Result limiting
253
255
254
-
-[ ] Add unit test for single-page response
255
-
-[ ] Add unit test for multi-page response
256
256
-[ ] Add unit test for `--limit` option limiting results
257
+
-[ ] Add a `--limit` option with integer type and validation
257
258
258
259
### Documentation
259
260
@@ -375,17 +376,17 @@ multi-page, and `--limit` limiting.
375
376
376
377
## Implementation plan
377
378
378
-
### Core changes
379
+
### Paged responses
379
380
381
+
-[ ] Add unit test for single-page response
382
+
-[ ] Add unit test for multi-page response
380
383
-[ ] Add a paged-request helper in `src/lib/`
381
384
-[ ] Update the `repo list` command to call the paged variant in `src/commands/repository/`
382
-
-[ ] Add a `--limit` option with integer type and validation
383
385
384
-
### Tests
386
+
### Result limiting
385
387
386
-
-[ ] Add unit test for single-page response
387
-
-[ ] Add unit test for multi-page response
388
388
-[ ] Add unit test for `--limit` option limiting results
389
+
-[ ] Add a `--limit` option with integer type and validation
0 commit comments