backlog.md 1.2.2 → 1.2.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.
- package/README.md +23 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
|
|
23
23
|
* 📊 **Instant terminal Kanban** -- `backlog board` paints a live board in your shell
|
|
24
24
|
|
|
25
|
+
* 📤 **Board export** -- `backlog board export` creates shareable markdown reports
|
|
26
|
+
|
|
25
27
|
* 🌐 **Modern web interface** -- `backlog browser` launches a sleek web UI for visual task management
|
|
26
28
|
|
|
27
29
|
* 🤖 **AI-ready CLI** -- "Claude, please take over task 33"
|
|
@@ -118,6 +120,7 @@ The web interface provides:
|
|
|
118
120
|
| Draft flow | `backlog draft create "Spike GraphQL"` → `backlog draft promote 3.1` |
|
|
119
121
|
| Demote to draft| `backlog task demote <id>` |
|
|
120
122
|
| Kanban board | `backlog board` (interactive UI, press 'E' to edit in editor) |
|
|
123
|
+
| Export board | `backlog board export [file]` (exports Kanban board to markdown) |
|
|
121
124
|
| Web interface | `backlog browser` (launches web UI on port 6420) |
|
|
122
125
|
| Web custom port | `backlog browser --port 8080 --no-open` |
|
|
123
126
|
| Config editor | `backlog config set defaultEditor "code --wait"` |
|
|
@@ -157,6 +160,26 @@ Key options:
|
|
|
157
160
|
|
|
158
161
|
---
|
|
159
162
|
|
|
163
|
+
## Sharing & Export
|
|
164
|
+
|
|
165
|
+
### Board Export
|
|
166
|
+
|
|
167
|
+
Export your Kanban board to a clean, shareable markdown file:
|
|
168
|
+
|
|
169
|
+
```bash
|
|
170
|
+
# Export to default Backlog.md file
|
|
171
|
+
backlog board export
|
|
172
|
+
|
|
173
|
+
# Export to custom file
|
|
174
|
+
backlog board export project-status.md
|
|
175
|
+
|
|
176
|
+
# Force overwrite existing file
|
|
177
|
+
backlog board export --force
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
Perfect for sharing project status, creating reports, or storing snapshots in version control.
|
|
181
|
+
|
|
182
|
+
---
|
|
160
183
|
|
|
161
184
|
## License
|
|
162
185
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backlog.md",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"bin": {
|
|
5
5
|
"backlog": "cli.js"
|
|
6
6
|
},
|
|
7
7
|
"optionalDependencies": {
|
|
8
|
-
"backlog.md-linux-x64": "1.2.
|
|
9
|
-
"backlog.md-linux-arm64": "1.2.
|
|
10
|
-
"backlog.md-darwin-x64": "1.2.
|
|
11
|
-
"backlog.md-darwin-arm64": "1.2.
|
|
12
|
-
"backlog.md-windows-x64": "1.2.
|
|
8
|
+
"backlog.md-linux-x64": "1.2.3",
|
|
9
|
+
"backlog.md-linux-arm64": "1.2.3",
|
|
10
|
+
"backlog.md-darwin-x64": "1.2.3",
|
|
11
|
+
"backlog.md-darwin-arm64": "1.2.3",
|
|
12
|
+
"backlog.md-windows-x64": "1.2.3"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"postuninstall": "node postuninstall.cjs"
|