backlog.md-darwin-arm64 1.5.9 → 1.6.0

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 +51 -29
  2. package/backlog +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -158,20 +158,18 @@ When re-initializing an existing project, all current configuration values are p
158
158
  | Export board | `backlog board export [file]` (exports Kanban board to markdown) |
159
159
  | Export with version | `backlog board export --export-version "v1.0.0"` (includes version in export) |
160
160
 
161
- ### Web Interface
161
+ ### Statistics & Overview
162
162
 
163
163
  | Action | Example |
164
164
  |-------------|------------------------------------------------------|
165
- | Web interface | `backlog browser` (launches web UI on port 6420) |
166
- | Web custom port | `backlog browser --port 8080 --no-open` |
165
+ | Project overview | `backlog overview` (interactive TUI showing project statistics) |
167
166
 
168
- ### Configuration
167
+ ### Web Interface
169
168
 
170
169
  | Action | Example |
171
170
  |-------------|------------------------------------------------------|
172
- | Config editor | `backlog config set defaultEditor "code --wait"` |
173
- | Enable auto-commit | `backlog config set autoCommit true` |
174
- | View config | `backlog config list` |
171
+ | Web interface | `backlog browser` (launches web UI on port 6420) |
172
+ | Web custom port | `backlog browser --port 8080 --no-open` |
175
173
 
176
174
  ### Documentation
177
175
 
@@ -215,24 +213,43 @@ Backlog.md merges the following layers (highest → lowest):
215
213
  3. `~/backlog/user` (per‑user)
216
214
  4. Built‑ins
217
215
 
218
- Key options:
216
+ ### Configuration Commands
217
+
218
+ | Action | Example |
219
+ |-------------|------------------------------------------------------|
220
+ | View all configs | `backlog config list` |
221
+ | Get specific config | `backlog config get defaultEditor` |
222
+ | Set config value | `backlog config set defaultEditor "code --wait"` |
223
+ | Enable auto-commit | `backlog config set autoCommit true` |
224
+ | Bypass git hooks | `backlog config set bypassGitHooks true` |
225
+ | Enable cross-branch check | `backlog config set checkActiveBranches true` |
226
+ | Set active branch days | `backlog config set activeBranchDays 30` |
227
+
228
+ ### Available Configuration Options
219
229
 
220
230
  | Key | Purpose | Default |
221
231
  |-------------------|--------------------|-------------------------------|
222
- | `default_assignee`| Pre‑fill assignee | `[]` |
223
- | `default_status` | First column | `To Do` |
232
+ | `defaultAssignee` | Pre‑fill assignee | `[]` |
233
+ | `defaultStatus` | First column | `To Do` |
224
234
  | `statuses` | Board columns | `[To Do, In Progress, Done]` |
225
- | `date_format` | ISO or locale | `yyyy-mm-dd` |
226
- | `default_editor` | Editor for 'E' key | Platform default (nano/notepad) |
227
- | `default_port` | Web UI port | `6420` |
228
- | `auto_open_browser`| Open browser automatically | `true` |
229
- | `remote_operations`| Enable remote git operations | `true` |
230
- | `auto_commit` | Automatically commit task changes | `false` |
231
- | `zero_padded_ids` | Pad all IDs (tasks, docs, etc.) with leading zeros | `(disabled)` |
235
+ | `dateFormat` | ISO or locale | `yyyy-mm-dd` |
236
+ | `defaultEditor` | Editor for 'E' key | Platform default (nano/notepad) |
237
+ | `defaultPort` | Web UI port | `6420` |
238
+ | `autoOpenBrowser` | Open browser automatically | `true` |
239
+ | `remoteOperations`| Enable remote git operations | `true` |
240
+ | `autoCommit` | Automatically commit task changes | `false` |
241
+ | `bypassGitHooks` | Skip git hooks when committing (uses --no-verify) | `false` |
242
+ | `zeroPaddedIds` | Pad all IDs (tasks, docs, etc.) with leading zeros | `(disabled)` |
243
+ | `checkActiveBranches` | Check task states across active branches for accuracy | `true` |
244
+ | `activeBranchDays` | How many days a branch is considered active | `30` |
245
+
246
+ > **Note**: Set `remoteOperations: false` to work offline. This disables git fetch operations and loads tasks from local branches only, useful when working without network connectivity.
247
+
248
+ > **Git Control**: By default, `autoCommit` is set to `false`, giving you full control over your git history. Task operations will modify files but won't automatically commit changes. Set `autoCommit: true` if you prefer automatic commits for each task operation.
232
249
 
233
- > **Note**: Set `remote_operations: false` to work offline. This disables git fetch operations and loads tasks from local branches only, useful when working without network connectivity.
250
+ > **Git Hooks**: If you have pre-commit hooks (like conventional commits or linters) that interfere with backlog.md's automated commits, set `bypassGitHooks: true` to skip them using the `--no-verify` flag.
234
251
 
235
- > **Git Control**: By default, `auto_commit` is set to `false`, giving you full control over your git history. Task operations will modify files but won't automatically commit changes. Set `auto_commit: true` if you prefer automatic commits for each task operation.
252
+ > **Performance**: Cross-branch checking ensures accurate task tracking across all active branches but may impact performance on large repositories. You can disable it by setting `checkActiveBranches: false` for maximum speed, or adjust `activeBranchDays` to control how far back to look for branch activity (lower values = better performance).
236
253
 
237
254
  ---
238
255
 
@@ -266,22 +283,27 @@ Perfect for sharing project status, creating reports, or storing snapshots in ve
266
283
 
267
284
  <!-- BOARD_START -->
268
285
 
269
- ## 📊 Backlog.md Project Status (v1.5.8)
286
+ ## 📊 Backlog.md Project Status (v1.5.10)
270
287
 
271
288
  This board was automatically generated by [Backlog.md](https://backlog.md)
272
289
 
273
- Generated on: 2025-07-25 21:04:15
290
+ Generated on: 2025-07-26 15:40:16
274
291
 
275
292
  | To Do | In Progress | Done |
276
293
  | --- | --- | --- |
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-205** - Fix Claude Code agent trying to use slash commands instead of backlog CLI<br>(Assignees: @claude, Labels: bug, agent) |
278
- | **task-201** - Add configurable git hooks bypass option<br>(Assignees: none, Labels: enhancement, git) | | **task-204** - Add Experimental Claude Code backlog.md agent integration to init command<br>(Assignees: @claude, Labels: cli, integration, dx) |
279
- | **task-200** - Add Claude Code integration with workflow commands during init<br>(Assignees: none, Labels: enhancement, developer-experience) | | **task-202** - Fix editor integration regression with Helix and other interactive editors<br>(Assignees: none, Labels: bug, regression, editor) |
280
- | **task-183** - Add ordinal field for custom task ordering in web UI<br>(Assignees: none, Labels: none) | | **task-199** - Add version parameter to board export command<br>(Assignees: none, Labels: none) |
281
- | **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) |
282
- | **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) |
283
- | **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) |
284
- | **task-172** - Order tasks by status and ID in both web and CLI lists<br>(Assignees: none, Labels: none) | | **task-191** - Migrate from Bun.spawn to Bun shell API<br>(Assignees: @gemini, @claude, Labels: refactoring, developer-experience) |
294
+ | **task-200** - Add Claude Code integration with workflow commands during init<br>(Assignees: none, Labels: enhancement, developer-experience) | **└─ task-24.1** - CLI: Kanban board milestone view<br>(Assignees: @codex, Labels: none) | **task-205** - Fix Claude Code agent trying to use slash commands instead of backlog CLI<br>(Assignees: @claude, Labels: bug, agent) |
295
+ | **task-181** - Add statistics dashboard to web UI<br>(Assignees: none, Labels: none) | | **task-204** - Add Experimental Claude Code backlog.md agent integration to init command<br>(Assignees: @claude, Labels: cli, integration, dx) |
296
+ | **task-172** - Order tasks by status and ID in both web and CLI lists<br>(Assignees: none, Labels: none) | | **task-203** - Show meaningful description in web kanban<br>(Assignees: @claude, Labels: frontend, enhancement) |
297
+ | | | **task-202** - Fix editor integration regression with Helix and other interactive editors<br>(Assignees: none, Labels: bug, regression, editor) |
298
+ | | | **task-201** - Add configurable git hooks bypass option<br>(Assignees: @claude, Labels: enhancement, git) |
299
+ | | | **task-199** - Add version parameter to board export command<br>(Assignees: none, Labels: none) |
300
+ | | | **task-198** - Fix markdown content overflow beyond screen width<br>(Assignees: none, Labels: none) |
301
+ | | | **task-197** - Fix decision page refresh showing blank screen<br>(Assignees: none, Labels: none) |
302
+ | | | **task-196** - Add NixOS packaging support<br>(Assignees: none, Labels: none) |
303
+ | | | **task-191** - Migrate from Bun.spawn to Bun shell API<br>(Assignees: @gemini, @claude, Labels: refactoring, developer-experience) |
304
+ | | | **task-183** - Add ordinal field for custom task ordering in web UI<br>(Assignees: Claude, Labels: none) |
305
+ | | | **task-180** - Add statistics overview command to CLI with TUI interface<br>(Assignees: @claude, Labels: none) |
306
+ | | | **task-175** - Add hour and minute to all dates in drafts, tasks, documents, decisions<br>(Assignees: @claude, Labels: none) |
285
307
 
286
308
  <!-- BOARD_END -->
287
309
 
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.5.9",
3
+ "version": "1.6.0",
4
4
  "os": ["darwin"],
5
5
  "cpu": ["arm64"],
6
6
  "bin": {"backlog": "backlog"},