backlog.md-linux-arm64 1.34.0 → 1.35.1

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.
Files changed (3) hide show
  1. package/README.md +34 -38
  2. package/backlog +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -198,6 +198,7 @@ You can rerun the wizard anytime with `backlog config`. All existing CLI flags (
198
198
  | Add DoD items on create | `backlog task create "Feature" --dod "Run tests"` |
199
199
  | Create without DoD defaults | `backlog task create "Feature" --no-dod-defaults` |
200
200
  | Create with notes | `backlog task create "Feature" --notes "Started initial research"` |
201
+ | Create with final summary | `backlog task create "Feature" --final-summary "PR-style summary"` |
201
202
  | Create with deps | `backlog task create "Feature" --dep task-1,task-2` |
202
203
  | Create with refs | `backlog task create "Feature" --ref https://docs.example.com --ref src/api.ts` |
203
204
  | Create with docs | `backlog task create "Feature" --doc https://design-docs.example.com --doc docs/spec.md` |
@@ -222,10 +223,13 @@ You can rerun the wizard anytime with `backlog config`. All existing CLI flags (
222
223
  | Mixed DoD operations | `backlog task edit 7 --check-dod 1 --uncheck-dod 2 --remove-dod 4` |
223
224
  | Add notes | `backlog task edit 7 --notes "Completed X, working on Y"` (replaces existing) |
224
225
  | Append notes | `backlog task edit 7 --append-notes "New findings"` |
226
+ | Add final summary | `backlog task edit 7 --final-summary "PR-style summary"` |
227
+ | Append final summary | `backlog task edit 7 --append-final-summary "More details"` |
228
+ | Clear final summary | `backlog task edit 7 --clear-final-summary` |
225
229
  | Add deps | `backlog task edit 7 --dep task-1 --dep task-2` |
226
230
  | Archive | `backlog task archive 7` |
227
231
 
228
- #### Multi‑line input (description/plan/notes)
232
+ #### Multi‑line input (description/plan/notes/final summary)
229
233
 
230
234
  The CLI preserves input literally; `\n` sequences are not auto‑converted. Use one of the following to insert real newlines:
231
235
 
@@ -234,6 +238,8 @@ The CLI preserves input literally; `\n` sequences are not auto‑converted. Use
234
238
  - Plan: `backlog task edit 7 --plan $'1. Research\n2. Implement'`
235
239
  - Notes: `backlog task edit 7 --notes $'Completed A\nWorking on B'`
236
240
  - Append notes: `backlog task edit 7 --append-notes $'Added X\nAdded Y'`
241
+ - Final summary: `backlog task edit 7 --final-summary $'Shipped A\nAdded B'`
242
+ - Append final summary: `backlog task edit 7 --append-final-summary $'Added X\nAdded Y'`
237
243
  - **POSIX sh (printf)**
238
244
  - `backlog task create "Feature" --desc "$(printf 'Line1\nLine2\n\nFinal paragraph')"`
239
245
  - **PowerShell (backtick)**
@@ -483,49 +489,39 @@ Perfect for sharing project status, creating reports, or storing snapshots in ve
483
489
 
484
490
  <!-- BOARD_START -->
485
491
 
486
- ## 📊 Backlog.md Project Status (v1.33.0)
492
+ ## 📊 Backlog.md Project Status (v1.35.0)
487
493
 
488
494
  This board was automatically generated by [Backlog.md](https://backlog.md)
489
495
 
490
- Generated on: 2026-01-18 12:42:13
496
+ Generated on: 2026-01-19 21:41:37
491
497
 
492
498
  | To Do | In Progress | Done |
493
499
  | --- | --- | --- |
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* | | |
510
- | └─ **BACK-355.05** - TUI: Display task type in board and detail views<br>*#tui* | | |
511
- | **BACK-354** - Project Definition of Done defaults [@codex] | | |
512
- | └─ **BACK-354.02** - CLI + MCP: DoD create options and outputs [@codex] | | |
513
- | └─ **BACK-354.03** - Web UI: DoD in task modal and create flow [@codex] | | |
514
- | └─ **BACK-354.04** - TUI: DoD in task detail and kanban popup [@codex] | | |
515
- | └─ **BACK-354.05** - Web UI: edit Definition of Done defaults in Settings [@codex] | | |
516
- | └─ **BACK-354.01** - Core: Definition of Done defaults and persistence [@codex] | | |
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* | | |
518
- | └─ **BACK-24.02** - CLI TUI: Add milestone swimlanes to interactive board view<br>*#cli #tui #enhancement* | | |
519
- | **BACK-239** - Feature: Auto-link tasks to documents/decisions + backlinks [@codex]<br>*#web #enhancement #docs* | | |
520
- | **BACK-347** - Add milestone editing in Web UI<br>*#milestones #web-ui #enhancement* | | |
521
- | **BACK-348** - Redesign All Tasks page with table layout<br>*#web-ui #design #enhancement #ux* | | |
522
- | **BACK-310** - Strengthen Backlog workflow overview emphasis on reading detailed guides [@codex] | | |
523
- | **BACK-270** - Prevent command substitution in task creation inputs [@codex] | | |
524
- | **BACK-267** - Add agent instruction version metadata [@codex] | | |
525
- | **BACK-268** - Show agent instruction version status [@codex] | | |
526
- | **BACK-260** - Web UI: Add filtering to All Tasks view [@codex]<br>*#web-ui #filters #ui* | | |
527
- | **BACK-259** - Add task list filters for Status and Priority<br>*#tui #filters #ui* | | |
528
- | **BACK-257** - Deep link URLs for tasks in board and list views | | |
500
+ | **BACK-368** - TUI: Add section-aware navigation for task popup and detail pane [@codex]<br>*#tui #ux #enhancement* | | **BACK-367** - Add Final Summary field to tasks for PR-style completion notes [@codex]<br>*#enhancement #core #cli #mcp #workflow* |
501
+ | **BACK-366** - Evaluate and replace prompts library with clack in CLI wizards [@codex] | | └─ **BACK-367.5** - Ignore nested section markers when parsing structured sections [@codex]<br>*#bug #markdown #parser #tui* |
502
+ | └─ **BACK-366.03** - Refactor remaining CLI prompt flows and tests to clack [@codex] | | └─ **BACK-367.01** - CLI and plain text formatter integration for Final Summary field [@codex]<br>*#cli #enhancement* |
503
+ | └─ **BACK-366.01** - Refactor init wizard prompts to clack [@codex] | | └─ **BACK-367.02** - MCP tools and schemas integration for Final Summary field [@codex]<br>*#mcp #enhancement* |
504
+ | └─ **BACK-366.02** - Refactor advanced config wizard prompts to clack [@codex] | | └─ **BACK-367.03** - Web UI integration for Final Summary field [@codex]<br>*#web #enhancement* |
505
+ | **BACK-361** - Add label-based filtering to TUI and web UI task list views<br>*#tui #web #enhancement* | | └─ **BACK-367.04** - TUI task viewer integration for Final Summary field [@codex]<br>*#tui #enhancement* |
506
+ | **BACK-355** - Add task type field (bug, feature, enhancement, etc.)<br>*#enhancement #core #cli #mcp #web* | | **BACK-354** - Project Definition of Done defaults [@codex] |
507
+ | └─ **BACK-355.06** - Web UI: Display and edit task type<br>*#web* | | └─ **BACK-354.01** - Core: Definition of Done defaults and persistence [@codex] |
508
+ | └─ **BACK-355.01** - Core: Add type field to task domain model and persistence<br>*#core* | | └─ **BACK-354.02** - CLI + MCP: DoD create options and outputs [@codex] |
509
+ | └─ **BACK-355.02** - CLI: Add --type flag to task create and edit commands<br>*#cli* | | └─ **BACK-354.03** - Web UI: DoD in task modal and create flow [@codex] |
510
+ | └─ **BACK-355.03** - MCP: Add type parameter to task_create and task_edit tools<br>*#mcp* | | └─ **BACK-354.04** - TUI: DoD in task detail and kanban popup [@codex] |
511
+ | └─ **BACK-355.04** - Filtering: Add type-based filtering to task list and search<br>*#core #cli #mcp* | | └─ **BACK-354.05** - Web UI: edit Definition of Done defaults in Settings [@codex] |
512
+ | └─ **BACK-355.05** - TUI: Display task type in board and detail views<br>*#tui* | | **BACK-346** - Add milestone completion/archival workflow [@codex]<br>*#milestones #enhancement #ux* |
513
+ | **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* | | **BACK-352** - Include subtask list in plain task output (CLI + MCP) [@codex] |
514
+ | └─ **BACK-24.02** - CLI TUI: Add milestone swimlanes to interactive board view<br>*#cli #tui #enhancement* | | **BACK-353** - Add documentation field to task domain object [@codex] |
515
+ | **BACK-239** - Feature: Auto-link tasks to documents/decisions + backlinks [@codex]<br>*#web #enhancement #docs* | | **BACK-356** - Add references field to task domain object [@codex] |
516
+ | **BACK-347** - Add milestone editing in Web UI<br>*#milestones #web-ui #enhancement* | | **BACK-351** - Strengthen MCP task creation guidance for standalone tasks [@codex] |
517
+ | **BACK-348** - Redesign All Tasks page with table layout<br>*#web-ui #design #enhancement #ux* | | **BACK-362** - Include completed tasks in MCP task_search results [@codex]<br>*#mcp #enhancement* |
518
+ | **BACK-310** - Strengthen Backlog workflow overview emphasis on reading detailed guides [@codex] | | **BACK-358** - Rename Task Completion Guide to Task Finalization Guide [@codex]<br>*#documentation #workflow* |
519
+ | **BACK-270** - Prevent command substitution in task creation inputs [@codex] | | **BACK-365** - Fix acceptance criteria insertion adding blank lines [@codex] |
520
+ | **BACK-267** - Add agent instruction version metadata [@codex] | | **BACK-364** - Fix getTask() to use configured prefix for numeric ID lookups [@codex]<br>*#bug #mcp* |
521
+ | **BACK-268** - Show agent instruction version status [@codex] | | **BACK-363** - Fix localById case mismatch in cross-branch task loading [@codex]<br>*#core #bug* |
522
+ | **BACK-260** - Web UI: Add filtering to All Tasks view [@codex]<br>*#web-ui #filters #ui* | | **BACK-360** - Fix cross-branch index case mismatch for custom prefixes [@codex]<br>*#bug #cross-branch #prefix-config* |
523
+ | **BACK-259** - Add task list filters for Status and Priority<br>*#tui #filters #ui* | | **BACK-359** - Pass configured task prefix to cross-branch loading functions [@codex]<br>*#bug #cross-branch #prefix-config* |
524
+ | **BACK-257** - Deep link URLs for tasks in board and list views | | └─ **BACK-345.10** - Fix ID generation bugs and cleanup prefix-config leftovers [@codex]<br>*#bug #refactor #tdd* |
529
525
  | **BACK-200** - Add Claude Code integration with workflow commands during init<br>*#enhancement #developer-experience* | | |
530
526
  | **BACK-218** - Update documentation and tests for sequences<br>*#sequences #documentation #testing* | | |
531
527
  | **BACK-217** - Create web UI for sequences with drag-and-drop<br>*#sequences #web-ui #frontend* | | |
package/backlog CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backlog.md-linux-arm64",
3
- "version": "1.34.0",
3
+ "version": "1.35.1",
4
4
  "os": ["linux"],
5
5
  "cpu": ["arm64"],
6
6
  "files": ["backlog","package.json","LICENSE"],