backlog.md-darwin-arm64 1.32.0 β 1.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -18
- package/backlog +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
* π **Powerful search** -- fuzzy search across tasks, docs & decisions with `backlog search`
|
|
27
27
|
|
|
28
28
|
* π **Rich query commands** -- view, list, filter, or archive tasks with ease
|
|
29
|
+
* β
**Definition of Done defaults** -- add a reusable checklist to every new task
|
|
29
30
|
|
|
30
31
|
* π€ **Board export** -- `backlog board export` creates shareable markdown reports
|
|
31
32
|
|
|
@@ -194,6 +195,8 @@ You can rerun the wizard anytime with `backlog config`. All existing CLI flags (
|
|
|
194
195
|
| Create with priority | `backlog task create "Feature" --priority high` |
|
|
195
196
|
| Create with plan | `backlog task create "Feature" --plan "1. Research\n2. Implement"` |
|
|
196
197
|
| Create with AC | `backlog task create "Feature" --ac "Must work,Must be tested"` |
|
|
198
|
+
| Add DoD items on create | `backlog task create "Feature" --dod "Run tests"` |
|
|
199
|
+
| Create without DoD defaults | `backlog task create "Feature" --no-dod-defaults` |
|
|
197
200
|
| Create with notes | `backlog task create "Feature" --notes "Started initial research"` |
|
|
198
201
|
| Create with deps | `backlog task create "Feature" --dep task-1,task-2` |
|
|
199
202
|
| Create with refs | `backlog task create "Feature" --ref https://docs.example.com --ref src/api.ts` |
|
|
@@ -207,12 +210,16 @@ You can rerun the wizard anytime with `backlog config`. All existing CLI flags (
|
|
|
207
210
|
| Edit | `backlog task edit 7 -a @sara -l auth,backend` |
|
|
208
211
|
| Add plan | `backlog task edit 7 --plan "Implementation approach"` |
|
|
209
212
|
| Add AC | `backlog task edit 7 --ac "New criterion" --ac "Another one"` |
|
|
213
|
+
| Add DoD | `backlog task edit 7 --dod "Ship notes"` |
|
|
210
214
|
| Remove AC | `backlog task edit 7 --remove-ac 2` (removes AC #2) |
|
|
211
215
|
| Remove multiple ACs | `backlog task edit 7 --remove-ac 2 --remove-ac 4` (removes AC #2 and #4) |
|
|
212
216
|
| Check AC | `backlog task edit 7 --check-ac 1` (marks AC #1 as done) |
|
|
217
|
+
| Check DoD | `backlog task edit 7 --check-dod 1` (marks DoD #1 as done) |
|
|
213
218
|
| Check multiple ACs | `backlog task edit 7 --check-ac 1 --check-ac 3` (marks AC #1 and #3 as done) |
|
|
214
219
|
| Uncheck AC | `backlog task edit 7 --uncheck-ac 3` (marks AC #3 as not done) |
|
|
220
|
+
| Uncheck DoD | `backlog task edit 7 --uncheck-dod 3` (marks DoD #3 as not done) |
|
|
215
221
|
| Mixed AC operations | `backlog task edit 7 --check-ac 1 --uncheck-ac 2 --remove-ac 4` |
|
|
222
|
+
| Mixed DoD operations | `backlog task edit 7 --check-dod 1 --uncheck-dod 2 --remove-dod 4` |
|
|
216
223
|
| Add notes | `backlog task edit 7 --notes "Completed X, working on Y"` (replaces existing) |
|
|
217
224
|
| Append notes | `backlog task edit 7 --append-notes "New findings"` |
|
|
218
225
|
| Add deps | `backlog task edit 7 --dep task-1 --dep task-2` |
|
|
@@ -376,6 +383,7 @@ Whenever you revisit `backlog init` or rerun `backlog config`, the wizard pre-po
|
|
|
376
383
|
|-------------------|--------------------|-------------------------------|
|
|
377
384
|
| `defaultAssignee` | Preβfill assignee | `[]` |
|
|
378
385
|
| `defaultStatus` | First column | `To Do` |
|
|
386
|
+
| `definition_of_done` | Default DoD checklist items for new tasks | `(not set)` |
|
|
379
387
|
| `statuses` | Board columns | `[To Do, In Progress, Done]` |
|
|
380
388
|
| `dateFormat` | Date/time format | `yyyy-mm-dd hh:mm` |
|
|
381
389
|
| `timezonePreference` | Timezone for dates | `UTC` |
|
|
@@ -405,6 +413,19 @@ Whenever you revisit `backlog init` or rerun `backlog config`, the wizard pre-po
|
|
|
405
413
|
|
|
406
414
|
> **Date/Time Support**: Backlog.md now supports datetime precision for all dates. New items automatically include time (YYYY-MM-DD HH:mm format in UTC), while existing date-only entries remain unchanged for backward compatibility. Use the migration script `bun src/scripts/migrate-dates.ts` to optionally add time to existing items.
|
|
407
415
|
|
|
416
|
+
### Definition of Done defaults
|
|
417
|
+
|
|
418
|
+
Set project-wide DoD items in the Web UI (Settings β Definition of Done Defaults) or edit `backlog/config.yml` directly:
|
|
419
|
+
|
|
420
|
+
```yaml
|
|
421
|
+
definition_of_done:
|
|
422
|
+
- Tests pass
|
|
423
|
+
- Documentation updated
|
|
424
|
+
- No regressions introduced
|
|
425
|
+
```
|
|
426
|
+
|
|
427
|
+
These items are added to every new task by default. You can add more on create with `--dod`, or disable defaults per task with `--no-dod-defaults`. Array values like `definition_of_done` must be edited in the config file or via the Web UI.
|
|
428
|
+
|
|
408
429
|
---
|
|
409
430
|
|
|
410
431
|
## π‘ Shell Tab Completion
|
|
@@ -462,37 +483,40 @@ Perfect for sharing project status, creating reports, or storing snapshots in ve
|
|
|
462
483
|
|
|
463
484
|
<!-- BOARD_START -->
|
|
464
485
|
|
|
465
|
-
## π Backlog.md Project Status (v1.
|
|
486
|
+
## π Backlog.md Project Status (v1.33.0)
|
|
466
487
|
|
|
467
488
|
This board was automatically generated by [Backlog.md](https://backlog.md)
|
|
468
489
|
|
|
469
|
-
Generated on: 2026-01-
|
|
490
|
+
Generated on: 2026-01-18 12:42:13
|
|
470
491
|
|
|
471
492
|
| To Do | In Progress | Done |
|
|
472
493
|
| --- | --- | --- |
|
|
473
|
-
| **BACK-
|
|
474
|
-
| ββ **BACK-
|
|
475
|
-
| ββ **BACK-
|
|
476
|
-
| ββ **BACK-
|
|
477
|
-
| **BACK-
|
|
478
|
-
|
|
|
479
|
-
| **BACK-
|
|
480
|
-
| ββ **BACK-
|
|
481
|
-
| ββ **BACK-
|
|
482
|
-
|
|
|
483
|
-
|
|
|
494
|
+
| **BACK-367** - Add Final Summary field to tasks for PR-style completion notes<br>*#enhancement #core #cli #mcp #workflow* | | **BACK-346** - Add milestone completion/archival workflow [@codex]<br>*#milestones #enhancement #ux* |
|
|
495
|
+
| ββ **BACK-367.01** - CLI and plain text formatter integration for Final Summary field<br>*#cli #enhancement* | | **BACK-352** - Include subtask list in plain task output (CLI + MCP) [@codex] |
|
|
496
|
+
| ββ **BACK-367.02** - MCP tools and schemas integration for Final Summary field<br>*#mcp #enhancement* | | **BACK-353** - Add documentation field to task domain object [@codex] |
|
|
497
|
+
| ββ **BACK-367.03** - Web UI integration for Final Summary field<br>*#web #enhancement* | | **BACK-356** - Add references field to task domain object [@codex] |
|
|
498
|
+
| ββ **BACK-367.04** - TUI task viewer integration for Final Summary field<br>*#tui #enhancement* | | **BACK-351** - Strengthen MCP task creation guidance for standalone tasks [@codex] |
|
|
499
|
+
| **BACK-366** - Evaluate and replace prompts library with clack in CLI wizards [@codex] | | **BACK-362** - Include completed tasks in MCP task_search results [@codex]<br>*#mcp #enhancement* |
|
|
500
|
+
| ββ **BACK-366.03** - Refactor remaining CLI prompt flows and tests to clack [@codex] | | **BACK-358** - Rename Task Completion Guide to Task Finalization Guide [@codex]<br>*#documentation #workflow* |
|
|
501
|
+
| ββ **BACK-366.01** - Refactor init wizard prompts to clack [@codex] | | **BACK-365** - Fix acceptance criteria insertion adding blank lines [@codex] |
|
|
502
|
+
| ββ **BACK-366.02** - Refactor advanced config wizard prompts to clack [@codex] | | **BACK-364** - Fix getTask() to use configured prefix for numeric ID lookups [@codex]<br>*#bug #mcp* |
|
|
503
|
+
| **BACK-361** - Add label-based filtering to TUI and web UI task list views<br>*#tui #web #enhancement* | | **BACK-363** - Fix localById case mismatch in cross-branch task loading [@codex]<br>*#core #bug* |
|
|
504
|
+
| **BACK-355** - Add task type field (bug, feature, enhancement, etc.)<br>*#enhancement #core #cli #mcp #web* | | **BACK-360** - Fix cross-branch index case mismatch for custom prefixes [@codex]<br>*#bug #cross-branch #prefix-config* |
|
|
505
|
+
| ββ **BACK-355.06** - Web UI: Display and edit task type<br>*#web* | | **BACK-359** - Pass configured task prefix to cross-branch loading functions [@codex]<br>*#bug #cross-branch #prefix-config* |
|
|
506
|
+
| ββ **BACK-355.01** - Core: Add type field to task domain model and persistence<br>*#core* | | ββ **BACK-345.10** - Fix ID generation bugs and cleanup prefix-config leftovers [@codex]<br>*#bug #refactor #tdd* |
|
|
507
|
+
| ββ **BACK-355.02** - CLI: Add --type flag to task create and edit commands<br>*#cli* | | |
|
|
508
|
+
| ββ **BACK-355.03** - MCP: Add type parameter to task_create and task_edit tools<br>*#mcp* | | |
|
|
509
|
+
| ββ **BACK-355.04** - Filtering: Add type-based filtering to task list and search<br>*#core #cli #mcp* | | |
|
|
484
510
|
| ββ **BACK-355.05** - TUI: Display task type in board and detail views<br>*#tui* | | |
|
|
511
|
+
| **BACK-354** - Project Definition of Done defaults [@codex] | | |
|
|
485
512
|
| ββ **BACK-354.02** - CLI + MCP: DoD create options and outputs [@codex] | | |
|
|
486
513
|
| ββ **BACK-354.03** - Web UI: DoD in task modal and create flow [@codex] | | |
|
|
487
514
|
| ββ **BACK-354.04** - TUI: DoD in task detail and kanban popup [@codex] | | |
|
|
488
|
-
| **BACK-354** - Project Definition of Done defaults [@codex] | | |
|
|
489
515
|
| ββ **BACK-354.05** - Web UI: edit Definition of Done defaults in Settings [@codex] | | |
|
|
490
516
|
| ββ **BACK-354.01** - Core: Definition of Done defaults and persistence [@codex] | | |
|
|
491
|
-
| **BACK-352** - Include subtask list in plain task output (CLI + MCP) | | |
|
|
492
517
|
| **BACK-349** - Publish Backlog.md as an Agent Skill with bundled guidance (no MCP resources required for instructions) [@codex]<br>*#agent-skills #mcp #docs #distribution* | | |
|
|
493
518
|
| ββ **BACK-24.02** - CLI TUI: Add milestone swimlanes to interactive board view<br>*#cli #tui #enhancement* | | |
|
|
494
519
|
| **BACK-239** - Feature: Auto-link tasks to documents/decisions + backlinks [@codex]<br>*#web #enhancement #docs* | | |
|
|
495
|
-
| **BACK-346** - Add milestone completion/archival workflow<br>*#milestones #enhancement #ux* | | |
|
|
496
520
|
| **BACK-347** - Add milestone editing in Web UI<br>*#milestones #web-ui #enhancement* | | |
|
|
497
521
|
| **BACK-348** - Redesign All Tasks page with table layout<br>*#web-ui #design #enhancement #ux* | | |
|
|
498
522
|
| **BACK-310** - Strengthen Backlog workflow overview emphasis on reading detailed guides [@codex] | | |
|
|
@@ -503,10 +527,10 @@ Generated on: 2026-01-17 08:31:32
|
|
|
503
527
|
| **BACK-259** - Add task list filters for Status and Priority<br>*#tui #filters #ui* | | |
|
|
504
528
|
| **BACK-257** - Deep link URLs for tasks in board and list views | | |
|
|
505
529
|
| **BACK-200** - Add Claude Code integration with workflow commands during init<br>*#enhancement #developer-experience* | | |
|
|
506
|
-
| ββ **BACK-217.03** - Sequences web UI: move tasks and update dependencies<br>*#sequences* | | |
|
|
507
|
-
| ββ **BACK-217.04** - Sequences web UI: tests<br>*#sequences* | | |
|
|
508
530
|
| **BACK-218** - Update documentation and tests for sequences<br>*#sequences #documentation #testing* | | |
|
|
509
531
|
| **BACK-217** - Create web UI for sequences with drag-and-drop<br>*#sequences #web-ui #frontend* | | |
|
|
532
|
+
| ββ **BACK-217.03** - Sequences web UI: move tasks and update dependencies<br>*#sequences* | | |
|
|
533
|
+
| ββ **BACK-217.04** - Sequences web UI: tests<br>*#sequences* | | |
|
|
510
534
|
| ββ **BACK-217.02** - Sequences web UI: list sequences<br>*#sequences* | | |
|
|
511
535
|
| **BACK-240** - Improve binary resolution on Apple Silicon (Rosetta/arch mismatch) [@codex]<br>*#packaging #bug #macos* | | |
|
|
512
536
|
| **BACK-222** - Improve task and subtask visualization in web UI | | |
|
package/backlog
CHANGED
|
Binary file
|