backlog.md-darwin-arm64 1.2.6 → 1.2.7

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 +70 -4
  2. package/backlog +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  <p align="center">Markdown‑native Task Manager &amp; Kanban visualizer for any Git repository</p>
3
3
 
4
4
  <p align="center">
5
- <code>npm i -g backlog.md</code> or <code>bun add -g backlog.md</code>
5
+ <code>npm i -g backlog.md</code> or <code>bun add -g backlog.md</code> or <code>brew install backlog-md</code>
6
6
  </p>
7
7
 
8
8
  ![Backlog demo GIF using: backlog board](./.github/backlog.gif)
@@ -90,7 +90,25 @@ The web interface provides:
90
90
 
91
91
  ---
92
92
 
93
- ## CLI reference (essentials)
93
+ ## CLI reference
94
+
95
+ ### Project Setup
96
+
97
+ | Action | Example |
98
+ |-------------|------------------------------------------------------|
99
+ | Initialize project | `backlog init [project-name]` (creates backlog structure with interactive configuration) |
100
+ | Re-initialize | `backlog init` (preserves existing config, allows updates) |
101
+
102
+ The `backlog init` command provides comprehensive project setup with interactive prompts for:
103
+ - **Project name** - identifier for your backlog
104
+ - **Auto-commit** - whether to automatically commit task changes to git
105
+ - **Default editor** - editor command for opening tasks (detects from environment)
106
+ - **Remote operations** - enable/disable fetching tasks from remote branches
107
+ - **Web UI settings** - port and browser auto-open preferences
108
+
109
+ 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.
110
+
111
+ ### Task Management
94
112
 
95
113
  | Action | Example |
96
114
  |-------------|------------------------------------------------------|
@@ -105,7 +123,6 @@ The web interface provides:
105
123
  | Create with notes | `backlog task create "Feature" --notes "Started initial research"` |
106
124
  | Create with deps | `backlog task create "Feature" --dep task-1,task-2` |
107
125
  | Create sub task | `backlog task create -p 14 "Add Login with Google"`|
108
- | Create draft | `backlog task create "Feature" --draft` |
109
126
  | Create (all options) | `backlog task create "Feature" -d "Description" -a @sara -s "To Do" -l auth --priority high --ac "Must work" --notes "Initial setup done" --dep task-1 -p 14` |
110
127
  | List tasks | `backlog task list [-s <status>] [-a <assignee>] [-p <parent>]` |
111
128
  | List by parent | `backlog task list --parent 42` or `backlog task list -p task-42` |
@@ -117,17 +134,66 @@ The web interface provides:
117
134
  | Add notes | `backlog task edit 7 --notes "Completed X, working on Y"` |
118
135
  | Add deps | `backlog task edit 7 --dep task-1 --dep task-2` |
119
136
  | Archive | `backlog task archive 7` |
137
+
138
+ ### Draft Workflow
139
+
140
+ | Action | Example |
141
+ |-------------|------------------------------------------------------|
142
+ | Create draft | `backlog task create "Feature" --draft` |
120
143
  | Draft flow | `backlog draft create "Spike GraphQL"` → `backlog draft promote 3.1` |
121
144
  | Demote to draft| `backlog task demote <id>` |
122
- | Cleanup done tasks | `backlog cleanup` (move old completed tasks to completed folder) |
145
+
146
+ ### Board Operations
147
+
148
+ | Action | Example |
149
+ |-------------|------------------------------------------------------|
123
150
  | Kanban board | `backlog board` (interactive UI, press 'E' to edit in editor) |
124
151
  | Export board | `backlog board export [file]` (exports Kanban board to markdown) |
152
+
153
+ ### Web Interface
154
+
155
+ | Action | Example |
156
+ |-------------|------------------------------------------------------|
125
157
  | Web interface | `backlog browser` (launches web UI on port 6420) |
126
158
  | Web custom port | `backlog browser --port 8080 --no-open` |
159
+
160
+ ### Configuration
161
+
162
+ | Action | Example |
163
+ |-------------|------------------------------------------------------|
127
164
  | Config editor | `backlog config set defaultEditor "code --wait"` |
128
165
  | Enable auto-commit | `backlog config set autoCommit true` |
129
166
  | View config | `backlog config list` |
130
167
 
168
+ ### Documentation
169
+
170
+ | Action | Example |
171
+ |-------------|------------------------------------------------------|
172
+ | Create doc | `backlog doc create "API Guidelines"` |
173
+ | Create with path | `backlog doc create "Setup Guide" -p guides/setup` |
174
+ | Create with type | `backlog doc create "Architecture" -t technical` |
175
+ | List docs | `backlog doc list` |
176
+ | View doc | `backlog doc view doc-1` |
177
+
178
+ ### Decisions
179
+
180
+ | Action | Example |
181
+ |-------------|------------------------------------------------------|
182
+ | Create decision | `backlog decision create "Use PostgreSQL for primary database"` |
183
+ | Create with status | `backlog decision create "Migrate to TypeScript" -s proposed` |
184
+
185
+ ### Agent Instructions
186
+
187
+ | Action | Example |
188
+ |-------------|------------------------------------------------------|
189
+ | Update agent files | `backlog agents --update-instructions` (updates .cursorrules, CLAUDE.md, AGENTS.md, GEMINI.md, .github/copilot-instructions.md) |
190
+
191
+ ### Maintenance
192
+
193
+ | Action | Example |
194
+ |-------------|------------------------------------------------------|
195
+ | Cleanup done tasks | `backlog cleanup` (move old completed tasks to completed folder) |
196
+
131
197
  Full help: `backlog --help`
132
198
 
133
199
  ---
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.6",
3
+ "version": "1.2.7",
4
4
  "os": ["darwin"],
5
5
  "cpu": ["arm64"],
6
6
  "bin": {"backlog": "backlog"},