backlog.md-darwin-arm64 1.2.2 → 1.2.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.
Files changed (3) hide show
  1. package/README.md +24 -0
  2. package/backlog +0 -0
  3. package/package.json +1 -1
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"
@@ -117,7 +119,9 @@ The web interface provides:
117
119
  | Archive | `backlog task archive 7` |
118
120
  | Draft flow | `backlog draft create "Spike GraphQL"` → `backlog draft promote 3.1` |
119
121
  | Demote to draft| `backlog task demote <id>` |
122
+ | Cleanup done tasks | `backlog cleanup` (move old completed tasks to completed folder) |
120
123
  | Kanban board | `backlog board` (interactive UI, press 'E' to edit in editor) |
124
+ | Export board | `backlog board export [file]` (exports Kanban board to markdown) |
121
125
  | Web interface | `backlog browser` (launches web UI on port 6420) |
122
126
  | Web custom port | `backlog browser --port 8080 --no-open` |
123
127
  | Config editor | `backlog config set defaultEditor "code --wait"` |
@@ -157,6 +161,26 @@ Key options:
157
161
 
158
162
  ---
159
163
 
164
+ ## Sharing & Export
165
+
166
+ ### Board Export
167
+
168
+ Export your Kanban board to a clean, shareable markdown file:
169
+
170
+ ```bash
171
+ # Export to default Backlog.md file
172
+ backlog board export
173
+
174
+ # Export to custom file
175
+ backlog board export project-status.md
176
+
177
+ # Force overwrite existing file
178
+ backlog board export --force
179
+ ```
180
+
181
+ Perfect for sharing project status, creating reports, or storing snapshots in version control.
182
+
183
+ ---
160
184
 
161
185
  ## License
162
186
 
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.2.2",
3
+ "version": "1.2.4",
4
4
  "os": ["darwin"],
5
5
  "cpu": ["arm64"],
6
6
  "bin": {"backlog": "backlog"},