backlog.md-darwin-arm64 1.1.2 → 1.1.4
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 +5 -2
- package/backlog +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -93,16 +93,19 @@ 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
|
-
| List tasks | `backlog task list [-s <status>] [-a <assignee>]`
|
|
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` |
|
|
101
|
+
| List tasks | `backlog task list [-s <status>] [-a <assignee>] [-p <parent>]` |
|
|
102
|
+
| List by parent | `backlog task list --parent 42` or `backlog task list -p task-42` |
|
|
101
103
|
| View detail | `backlog task 7` (interactive UI, press 'E' to edit in editor) |
|
|
102
104
|
| View (AI mode) | `backlog task 7 --plain` |
|
|
103
105
|
| Edit | `backlog task edit 7 -a @sara -l auth,backend` |
|
|
104
106
|
| Add plan | `backlog task edit 7 --plan "Implementation approach"` |
|
|
105
107
|
| Add AC | `backlog task edit 7 --ac "New criterion,Another one"` |
|
|
108
|
+
| Add notes | `backlog task edit 7 --notes "Completed X, working on Y"` |
|
|
106
109
|
| Add deps | `backlog task edit 7 --dep task-1 --dep task-2` |
|
|
107
110
|
| Archive | `backlog task archive 7` |
|
|
108
111
|
| Draft flow | `backlog draft create "Spike GraphQL"` → `backlog draft promote 3.1` |
|
package/backlog
CHANGED
|
Binary file
|