backlog.md-darwin-arm64 1.2.1 → 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.
Files changed (3) hide show
  1. package/README.md +23 -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"
@@ -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/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.1",
3
+ "version": "1.2.3",
4
4
  "os": ["darwin"],
5
5
  "cpu": ["arm64"],
6
6
  "bin": {"backlog": "backlog"},