backlog.md-darwin-arm64 1.1.2 → 1.1.3

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 +3 -1
  2. package/backlog +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -93,16 +93,18 @@ The web interface provides:
93
93
  | Create with priority | `backlog task create "Feature" --priority high` |
94
94
  | Create with plan | `backlog task create "Feature" --plan "1. Research\n2. Implement"` |
95
95
  | Create with AC | `backlog task create "Feature" --ac "Must work,Must be tested"` |
96
+ | Create with notes | `backlog task create "Feature" --notes "Started initial research"` |
96
97
  | Create with deps | `backlog task create "Feature" --dep task-1,task-2` |
97
98
  | Create sub task | `backlog task create -p 14 "Add Login with Google"`|
98
99
  | Create draft | `backlog task create "Feature" --draft` |
99
- | Create (all options) | `backlog task create "Feature" -d "Description" -a @sara -s "To Do" -l auth --priority high --ac "Must work" --dep task-1 -p 14` |
100
+ | Create (all options) | `backlog task create "Feature" -d "Description" -a @sara -s "To Do" -l auth --priority high --ac "Must work" --notes "Initial setup done" --dep task-1 -p 14` |
100
101
  | List tasks | `backlog task list [-s <status>] [-a <assignee>]` |
101
102
  | View detail | `backlog task 7` (interactive UI, press 'E' to edit in editor) |
102
103
  | View (AI mode) | `backlog task 7 --plain` |
103
104
  | Edit | `backlog task edit 7 -a @sara -l auth,backend` |
104
105
  | Add plan | `backlog task edit 7 --plan "Implementation approach"` |
105
106
  | Add AC | `backlog task edit 7 --ac "New criterion,Another one"` |
107
+ | Add notes | `backlog task edit 7 --notes "Completed X, working on Y"` |
106
108
  | Add deps | `backlog task edit 7 --dep task-1 --dep task-2` |
107
109
  | Archive | `backlog task archive 7` |
108
110
  | Draft flow | `backlog draft create "Spike GraphQL"` → `backlog draft promote 3.1` |
package/backlog CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backlog.md-darwin-arm64",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "os": ["darwin"],
5
5
  "cpu": ["arm64"],
6
6
  "bin": {"backlog": "backlog"},