backlog.md 1.5.4 → 1.5.6
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 +43 -29
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -36,34 +36,39 @@
|
|
|
36
36
|
|
|
37
37
|
---
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
bun/npm i -g backlog.md
|
|
39
|
+
## <img src="./.github/5-minute-tour-256.png" alt="5-minute tour" width="28" height="28" align="center"> Five‑minute tour
|
|
40
|
+
```bash
|
|
41
|
+
# 1. Make sure you have Backlog.md installed
|
|
42
|
+
bun/npm i -g backlog.md or brew install backlog-md
|
|
44
43
|
|
|
45
|
-
#
|
|
46
|
-
backlog init
|
|
44
|
+
# 2. Bootstrap a repo + backlog
|
|
45
|
+
backlog init "My Awesome Project"
|
|
47
46
|
|
|
48
|
-
#
|
|
47
|
+
# 3. Capture work
|
|
49
48
|
backlog task create "Render markdown as kanban"
|
|
50
49
|
|
|
51
|
-
#
|
|
52
|
-
backlog board view
|
|
50
|
+
# 4. See where you stand
|
|
51
|
+
backlog board view or backlog browser
|
|
53
52
|
|
|
54
|
-
#
|
|
53
|
+
# 5. Create tasks using Claude-code, Gemini, Codex or Jules
|
|
55
54
|
Claude I would like to build a search functionality in the web view that searches for:
|
|
56
55
|
* tasks
|
|
57
56
|
* docs
|
|
58
57
|
* decisions
|
|
59
|
-
Please create relevant tasks to tackle this request.
|
|
58
|
+
Please create relevant tasks to tackle this request.
|
|
59
|
+
|
|
60
|
+
# 6. Assign tasks to AI
|
|
61
|
+
Claude please implement all tasks related to the web search functionality (task-10, task-11, task-12)
|
|
62
|
+
* before starting to write code use 'ultrathink mode' to prepare an implementation plan
|
|
63
|
+
* use multiple sub-agents when possible and dependencies allow
|
|
60
64
|
```
|
|
61
65
|
|
|
62
|
-
|
|
66
|
+
|
|
67
|
+
All data is saved under `backlog` folder as human‑readable Markdown with the following format `task-<task-id> - <task-title>.md` (e.g. `task-10 - Add core search functionality.md`).
|
|
63
68
|
|
|
64
69
|
---
|
|
65
70
|
|
|
66
|
-
|
|
71
|
+
## <img src="./.github/web-interface-256.png" alt="Web Interface" width="28" height="28" align="center"> Web Interface
|
|
67
72
|
|
|
68
73
|
Launch a modern, responsive web interface for visual task management:
|
|
69
74
|
|
|
@@ -90,7 +95,7 @@ The web interface provides:
|
|
|
90
95
|
|
|
91
96
|
---
|
|
92
97
|
|
|
93
|
-
## CLI reference
|
|
98
|
+
## <img src="./.github/cli-reference-256.png" alt="CLI Reference" width="28" height="28" align="center"> CLI reference
|
|
94
99
|
|
|
95
100
|
### Project Setup
|
|
96
101
|
|
|
@@ -149,6 +154,7 @@ When re-initializing an existing project, all current configuration values are p
|
|
|
149
154
|
|-------------|------------------------------------------------------|
|
|
150
155
|
| Kanban board | `backlog board` (interactive UI, press 'E' to edit in editor) |
|
|
151
156
|
| Export board | `backlog board export [file]` (exports Kanban board to markdown) |
|
|
157
|
+
| Export with version | `backlog board export --export-version "v1.0.0"` (includes version in export) |
|
|
152
158
|
|
|
153
159
|
### Web Interface
|
|
154
160
|
|
|
@@ -198,14 +204,14 @@ Full help: `backlog --help`
|
|
|
198
204
|
|
|
199
205
|
---
|
|
200
206
|
|
|
201
|
-
## Configuration
|
|
207
|
+
## <img src="./.github/configuration-256.png" alt="Configuration" width="28" height="28" align="center"> Configuration
|
|
202
208
|
|
|
203
209
|
Backlog.md merges the following layers (highest → lowest):
|
|
204
210
|
|
|
205
|
-
1. CLI flags
|
|
206
|
-
2. `backlog/config.yml` (per‑project)
|
|
207
|
-
3. `~/backlog/user` (per‑user)
|
|
208
|
-
4. Built‑ins
|
|
211
|
+
1. CLI flags
|
|
212
|
+
2. `backlog/config.yml` (per‑project)
|
|
213
|
+
3. `~/backlog/user` (per‑user)
|
|
214
|
+
4. Built‑ins
|
|
209
215
|
|
|
210
216
|
Key options:
|
|
211
217
|
|
|
@@ -228,7 +234,7 @@ Key options:
|
|
|
228
234
|
|
|
229
235
|
---
|
|
230
236
|
|
|
231
|
-
## Sharing & Export
|
|
237
|
+
## <img src="./.github/sharing-export-256.png" alt="Sharing & Export" width="28" height="28" align="center"> Sharing & Export
|
|
232
238
|
|
|
233
239
|
### Board Export
|
|
234
240
|
|
|
@@ -243,6 +249,13 @@ backlog board export project-status.md
|
|
|
243
249
|
|
|
244
250
|
# Force overwrite existing file
|
|
245
251
|
backlog board export --force
|
|
252
|
+
|
|
253
|
+
# Export to README.md with board markers
|
|
254
|
+
backlog board export --readme
|
|
255
|
+
|
|
256
|
+
# Include a custom version string in the export
|
|
257
|
+
backlog board export --export-version "v1.2.3"
|
|
258
|
+
backlog board export --readme --export-version "Release 2024.12.1-beta"
|
|
246
259
|
```
|
|
247
260
|
|
|
248
261
|
Perfect for sharing project status, creating reports, or storing snapshots in version control.
|
|
@@ -251,19 +264,20 @@ Perfect for sharing project status, creating reports, or storing snapshots in ve
|
|
|
251
264
|
|
|
252
265
|
<!-- BOARD_START -->
|
|
253
266
|
|
|
254
|
-
## 📊 Backlog.md Project Status (
|
|
267
|
+
## 📊 Backlog.md Project Status (v1.5.5)
|
|
255
268
|
|
|
256
269
|
This board was automatically generated by [Backlog.md](https://backlog.md)
|
|
257
270
|
|
|
258
|
-
Generated on: 2025-07-22 21:
|
|
271
|
+
Generated on: 2025-07-22 21:26:53
|
|
259
272
|
|
|
260
273
|
| To Do | In Progress | Done |
|
|
261
274
|
| --- | --- | --- |
|
|
262
|
-
| **task-183** - Add ordinal field for custom task ordering in web UI<br>(Assignees: none, Labels: none) | **└─ task-24.1** - CLI: Kanban board milestone view<br>(Assignees: @codex, Labels: none) | **task-
|
|
263
|
-
| **task-181** - Add statistics dashboard to web UI<br>(Assignees: none, Labels: none) | | **task-
|
|
264
|
-
| **task-180** - Add statistics overview command to CLI with TUI interface<br>(Assignees: none, Labels: none) | | **task-
|
|
265
|
-
| **task-175** - Add hour and minute to all dates in drafts, tasks, documents, decisions<br>(Assignees: none, Labels: none) | | **task-
|
|
266
|
-
| **task-172** - Order tasks by status and ID in both web and CLI lists<br>(Assignees: none, Labels: none) | | **task-
|
|
275
|
+
| **task-183** - Add ordinal field for custom task ordering in web UI<br>(Assignees: none, Labels: none) | **└─ task-24.1** - CLI: Kanban board milestone view<br>(Assignees: @codex, Labels: none) | **task-199** - Add version parameter to board export command<br>(Assignees: none, Labels: none) |
|
|
276
|
+
| **task-181** - Add statistics dashboard to web UI<br>(Assignees: none, Labels: none) | | **task-198** - Fix markdown content overflow beyond screen width<br>(Assignees: none, Labels: none) |
|
|
277
|
+
| **task-180** - Add statistics overview command to CLI with TUI interface<br>(Assignees: none, Labels: none) | | **task-197** - Fix decision page refresh showing blank screen<br>(Assignees: none, Labels: none) |
|
|
278
|
+
| **task-175** - Add hour and minute to all dates in drafts, tasks, documents, decisions<br>(Assignees: none, Labels: none) | | **task-196** - Add NixOS packaging support<br>(Assignees: none, Labels: none) |
|
|
279
|
+
| **task-172** - Order tasks by status and ID in both web and CLI lists<br>(Assignees: none, Labels: none) | | **task-195** - Fix React Router deep linking for documentation and decisions pages<br>(Assignees: @claude, Labels: bug, routing, react, ux) |
|
|
280
|
+
| | | **task-194** - Add graceful port handling for browser command<br>(Assignees: @claude, Labels: enhancement, ux, error-handling) |
|
|
267
281
|
| | | **task-193** - Fix custom markdown editor styles missing in compiled build<br>(Assignees: @kiro, Labels: bug, css, build) |
|
|
268
282
|
| | | **task-192** - Fix drag-and-drop not working in web view<br>(Assignees: @claude, Labels: bug, web-ui, high-priority) |
|
|
269
283
|
| | | **task-191** - Migrate from Bun.spawn to Bun shell API<br>(Assignees: @gemini, @claude, Labels: refactoring, developer-experience) |
|
|
@@ -272,6 +286,6 @@ Generated on: 2025-07-22 21:05:56
|
|
|
272
286
|
|
|
273
287
|
<!-- BOARD_END -->
|
|
274
288
|
|
|
275
|
-
|
|
289
|
+
### License
|
|
276
290
|
|
|
277
291
|
Backlog.md is released under the **MIT License** – do anything, just give credit. See [LICENSE](LICENSE).
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backlog.md",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.6",
|
|
4
4
|
"bin": {
|
|
5
5
|
"backlog": "cli.js"
|
|
6
6
|
},
|
|
7
7
|
"optionalDependencies": {
|
|
8
|
-
"backlog.md-linux-x64": "1.5.
|
|
9
|
-
"backlog.md-linux-arm64": "1.5.
|
|
10
|
-
"backlog.md-darwin-x64": "1.5.
|
|
11
|
-
"backlog.md-darwin-arm64": "1.5.
|
|
12
|
-
"backlog.md-windows-x64": "1.5.
|
|
8
|
+
"backlog.md-linux-x64": "1.5.6",
|
|
9
|
+
"backlog.md-linux-arm64": "1.5.6",
|
|
10
|
+
"backlog.md-darwin-x64": "1.5.6",
|
|
11
|
+
"backlog.md-darwin-arm64": "1.5.6",
|
|
12
|
+
"backlog.md-windows-x64": "1.5.6"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"postuninstall": "node postuninstall.cjs"
|