backlog.md 1.5.6 → 1.5.8
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 +12 -8
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -110,6 +110,8 @@ The `backlog init` command provides comprehensive project setup with interactive
|
|
|
110
110
|
- **Default editor** - editor command for opening tasks (detects from environment)
|
|
111
111
|
- **Remote operations** - enable/disable fetching tasks from remote branches
|
|
112
112
|
- **Web UI settings** - port and browser auto-open preferences
|
|
113
|
+
- **Agent guidelines** - AI agent instruction files (CLAUDE.md, .cursorrules, etc.)
|
|
114
|
+
- **Claude Code agent** - optional Backlog.md agent for enhanced task management
|
|
113
115
|
|
|
114
116
|
When re-initializing an existing project, all current configuration values are preserved and pre-populated in prompts, allowing you to update only what you need.
|
|
115
117
|
|
|
@@ -264,20 +266,22 @@ Perfect for sharing project status, creating reports, or storing snapshots in ve
|
|
|
264
266
|
|
|
265
267
|
<!-- BOARD_START -->
|
|
266
268
|
|
|
267
|
-
## 📊 Backlog.md Project Status (v1.5.
|
|
269
|
+
## 📊 Backlog.md Project Status (v1.5.7)
|
|
268
270
|
|
|
269
271
|
This board was automatically generated by [Backlog.md](https://backlog.md)
|
|
270
272
|
|
|
271
|
-
Generated on: 2025-07-
|
|
273
|
+
Generated on: 2025-07-25 20:39:31
|
|
272
274
|
|
|
273
275
|
| To Do | In Progress | Done |
|
|
274
276
|
| --- | --- | --- |
|
|
275
|
-
| **task-
|
|
276
|
-
| **task-
|
|
277
|
-
| **task-
|
|
278
|
-
| **task-
|
|
279
|
-
| **task-
|
|
280
|
-
|
|
|
277
|
+
| **task-203** - Show meaningful description in web kanban<br>(Assignees: none, Labels: frontend, enhancement) | **└─ task-24.1** - CLI: Kanban board milestone view<br>(Assignees: @codex, Labels: none) | **task-204** - Add Experimental Claude Code backlog.md agent integration to init command<br>(Assignees: @claude, Labels: cli, integration, dx) |
|
|
278
|
+
| **task-201** - Add configurable git hooks bypass option<br>(Assignees: none, Labels: enhancement, git) | | **task-202** - Fix editor integration regression with Helix and other interactive editors<br>(Assignees: none, Labels: bug, regression, editor) |
|
|
279
|
+
| **task-200** - Add Claude Code integration with workflow commands during init<br>(Assignees: none, Labels: enhancement, developer-experience) | | **task-199** - Add version parameter to board export command<br>(Assignees: none, Labels: none) |
|
|
280
|
+
| **task-183** - Add ordinal field for custom task ordering in web UI<br>(Assignees: none, Labels: none) | | **task-198** - Fix markdown content overflow beyond screen width<br>(Assignees: none, Labels: none) |
|
|
281
|
+
| **task-181** - Add statistics dashboard to web UI<br>(Assignees: none, Labels: none) | | **task-197** - Fix decision page refresh showing blank screen<br>(Assignees: none, Labels: none) |
|
|
282
|
+
| **task-180** - Add statistics overview command to CLI with TUI interface<br>(Assignees: none, Labels: none) | | **task-196** - Add NixOS packaging support<br>(Assignees: none, Labels: none) |
|
|
283
|
+
| **task-175** - Add hour and minute to all dates in drafts, tasks, documents, decisions<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) |
|
|
284
|
+
| **task-172** - Order tasks by status and ID in both web and CLI lists<br>(Assignees: none, Labels: none) | | **task-194** - Add graceful port handling for browser command<br>(Assignees: @claude, Labels: enhancement, ux, error-handling) |
|
|
281
285
|
| | | **task-193** - Fix custom markdown editor styles missing in compiled build<br>(Assignees: @kiro, Labels: bug, css, build) |
|
|
282
286
|
| | | **task-192** - Fix drag-and-drop not working in web view<br>(Assignees: @claude, Labels: bug, web-ui, high-priority) |
|
|
283
287
|
| | | **task-191** - Migrate from Bun.spawn to Bun shell API<br>(Assignees: @gemini, @claude, Labels: refactoring, developer-experience) |
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backlog.md",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.8",
|
|
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.8",
|
|
9
|
+
"backlog.md-linux-arm64": "1.5.8",
|
|
10
|
+
"backlog.md-darwin-x64": "1.5.8",
|
|
11
|
+
"backlog.md-darwin-arm64": "1.5.8",
|
|
12
|
+
"backlog.md-windows-x64": "1.5.8"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"postuninstall": "node postuninstall.cjs"
|