backlog.md-windows-arm64 1.45.1

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Backlog.md
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,296 @@
1
+ <h1 align="center">Backlog.md</h1>
2
+ <p align="center">Markdown‑native Task Manager &amp; Kanban visualizer for any Git repository</p>
3
+
4
+ <p align="center">
5
+ <code>npm i -g backlog.md</code> or <code>bun add -g backlog.md</code> or <code>brew install backlog-md</code> or <code>nix run github:MrLesk/Backlog.md</code>
6
+ </p>
7
+
8
+ ![Backlog demo GIF using: backlog board](./.github/backlog-v1.40.gif)
9
+
10
+
11
+ ---
12
+
13
+ > **Backlog.md** turns any folder with a Git repo into a **self‑contained project board**
14
+ > powered by plain Markdown files and a zero‑config CLI.
15
+ > Built for **spec‑driven AI development** — structure your tasks so AI agents deliver predictable results.
16
+
17
+ ## Features
18
+
19
+ * 📝 **Markdown-native tasks** -- manage every issue as a plain `.md` file
20
+
21
+ * 🤖 **AI-Ready** -- Works with Claude Code, Gemini CLI, Codex, Kiro & any other MCP or CLI compatible AI assistants
22
+
23
+ * 📊 **Instant terminal Kanban** -- `backlog board` paints a live board in your shell
24
+
25
+ * 🌐 **Modern web interface** -- `backlog browser` launches a sleek web UI for visual task management
26
+
27
+ * 🔍 **Powerful search** -- fuzzy search across tasks, docs & decisions with `backlog search`
28
+
29
+ * 📋 **Rich query commands** -- view, list, filter, or archive tasks with ease
30
+ * ✅ **Definition of Done defaults** -- add a reusable checklist to every new task
31
+
32
+ * 📤 **Board export** -- `backlog board export` creates shareable markdown reports
33
+
34
+ * 🔒 **100 % private & offline** -- backlog lives entirely inside your repo and you can manage everything locally
35
+
36
+ * 💻 **Cross-platform** -- runs on macOS, Linux, and Windows
37
+
38
+ * 🆓 **MIT-licensed & open-source** -- free for personal or commercial use
39
+
40
+
41
+ ---
42
+
43
+ ## <img src="./.github/5-minute-tour-256.png" alt="Getting started" width="28" height="28" align="center"> Getting started
44
+
45
+ ```bash
46
+ # Install
47
+ bun i -g backlog.md
48
+ # or: npm i -g backlog.md
49
+ # or: brew install backlog-md
50
+
51
+ # Initialize in any Git repo
52
+ backlog init "My Awesome Project"
53
+
54
+ # Or initialize without Git for local/non-code projects
55
+ backlog init "Personal Planning" --no-git
56
+ ```
57
+
58
+ The init wizard will ask how you want to connect AI tools:
59
+ - **MCP connector** (recommended) — auto-configures Claude Code, Codex, Gemini CLI, Kiro or Cursor and adds workflow instructions for your agents.
60
+ - **CLI commands** — creates instruction files (CLAUDE.md, AGENTS.md, etc.) so agents use Backlog via CLI.
61
+ - **Skip** — no AI setup; use Backlog.md purely as a task manager.
62
+
63
+ Backlog data is stored in a project-local backlog folder such as `backlog/`, `.backlog/`, or a custom project-relative path configured through `backlog.config.yml`. Tasks remain human-readable Markdown files (e.g. `task-10 - Add core search functionality.md`). Git is optional: `backlog init --no-git` creates a filesystem-only project and disables cross-branch checks, remote operations, and auto-commit.
64
+
65
+ ---
66
+
67
+ ### Working with AI agents
68
+
69
+ This is the recommended flow for Claude Code, Codex, Gemini CLI, Kiro and similar tools — following the **spec‑driven AI development** approach.
70
+ After running `backlog init` and choosing the MCP or CLI integration, work in this loop:
71
+
72
+ **Step 1 — Describe your idea.** Tell the agent what you want to build and ask it to split the work into small tasks with clear descriptions and acceptance criteria.
73
+
74
+ **🤖 Ask your AI Agent:**
75
+ > I want to add a search feature to the web view that searches tasks, docs, and decisions. Please decompose this into small Backlog.md tasks.
76
+
77
+ > [!NOTE]
78
+ > **Review checkpoint #1** — read the task descriptions and acceptance criteria.
79
+
80
+ **Step 2 — One task at a time.** Work on a single task per agent session, one PR per task. Good task splitting means each session can work independently without conflicts. Make sure each task is small enough to complete in a single conversation. You want to avoid running out of context window.
81
+
82
+ **Step 3 — Plan before coding.** Ask the agent to research and write an implementation plan in the task. Do this right before implementation so the plan reflects the current state of the codebase.
83
+
84
+ **🤖 Ask your AI Agent:**
85
+ > Work on BACK-10 only. Research the codebase and write an implementation plan in the task. Wait for my approval before coding.
86
+
87
+ > [!NOTE]
88
+ > **Review checkpoint #2** — read the plan. Does the approach make sense? Approve it or ask the agent to revise.
89
+
90
+ **Step 4 — Implement and verify.** Let the agent implement the task.
91
+
92
+ > [!NOTE]
93
+ > **Review checkpoint #3** — review the code, run tests, check linting, and verify the results match your expectations.
94
+
95
+ If the output is not good enough: clear the plan/notes/final summary, refine the task description and acceptance criteria, and run the task again in a fresh session.
96
+
97
+ ---
98
+
99
+ ### Working without AI agents
100
+
101
+ Use Backlog.md as a standalone task manager from the terminal or browser.
102
+
103
+ ```bash
104
+ # Create and refine tasks
105
+ backlog task create "Render markdown as kanban"
106
+ backlog task edit BACK-1 -d "Detailed context" --ac "Clear acceptance criteria"
107
+
108
+ # Track work
109
+ backlog task list -s "To Do"
110
+ backlog search "kanban"
111
+ backlog board
112
+
113
+ # Work visually in the browser
114
+ backlog browser
115
+ ```
116
+
117
+ You can switch between AI-assisted and manual workflows at any time — both operate on the same Markdown task files. It is recommended to modify tasks via Backlog.md commands (CLI/MCP/Web) rather than editing task files manually, so field types and metadata stay consistent. Tasks can record project-root-relative modified files and later be found with `backlog search --modified-file src/path.ts --plain`.
118
+
119
+ **Learn more:** [CLI reference](CLI-INSTRUCTIONS.md) | [Advanced configuration](ADVANCED-CONFIG.md)
120
+
121
+ ---
122
+
123
+ ## <img src="./.github/web-interface-256.png" alt="Web Interface" width="28" height="28" align="center"> Web Interface
124
+
125
+ Launch a modern, responsive web interface for visual task management:
126
+
127
+ ```bash
128
+ # Start the web server (opens browser automatically)
129
+ backlog browser
130
+
131
+ # Custom port
132
+ backlog browser --port 8080
133
+
134
+ # Don't open browser automatically
135
+ backlog browser --no-open
136
+ ```
137
+
138
+ **Features:**
139
+ - Interactive Kanban board with drag-and-drop
140
+ - Task creation and editing with rich forms
141
+ - Interactive acceptance criteria editor with checklists
142
+ - Real-time updates across all views
143
+ - Responsive design for desktop and mobile
144
+ - Task archiving with confirmation dialogs
145
+ - Seamless CLI integration - all changes sync with markdown files
146
+
147
+ ![Web Interface Screenshot](./.github/web.jpeg)
148
+
149
+ To keep the Web UI running as an auto-starting local service, see [Running Backlog.md as a Service](backlog/docs/doc-003%20-%20Running-Backlog-Browser-as-a-Service.md).
150
+
151
+ ---
152
+
153
+ ## 🔧 MCP Integration (Model Context Protocol)
154
+
155
+ The easiest way to connect Backlog.md to AI coding assistants like Claude Code, Codex, Gemini CLI and Kiro is via the MCP protocol.
156
+ You can run `backlog init` (even if you already initialized Backlog.md) to set up MCP integration automatically, or follow the manual steps below.
157
+
158
+ ### Client guides
159
+
160
+ <details>
161
+ <summary><strong>Claude Code</strong></summary>
162
+
163
+ ```bash
164
+ claude mcp add backlog --scope user -- backlog mcp start
165
+ ```
166
+
167
+ </details>
168
+
169
+ <details>
170
+ <summary><strong>Codex</strong></summary>
171
+
172
+ ```bash
173
+ codex mcp add backlog backlog mcp start
174
+ ```
175
+
176
+ </details>
177
+
178
+ <details>
179
+ <summary><strong>Gemini CLI</strong></summary>
180
+
181
+ ```bash
182
+ gemini mcp add backlog -s user backlog mcp start
183
+ ```
184
+
185
+ </details>
186
+
187
+ <details>
188
+ <summary><strong>Kiro</strong></summary>
189
+
190
+ ```bash
191
+ kiro-cli mcp add --scope global --name backlog --command backlog --args mcp,start
192
+ ```
193
+
194
+ </details>
195
+
196
+ Use the shared `backlog` server name everywhere – the MCP server auto-detects whether the current directory is initialized and falls back to `backlog://init-required` when needed.
197
+
198
+ ### Manual config
199
+
200
+ ```json
201
+ {
202
+ "mcpServers": {
203
+ "backlog": {
204
+ "command": "backlog",
205
+ "args": ["mcp", "start"],
206
+ "env": {
207
+ "BACKLOG_CWD": "/absolute/path/to/your/project"
208
+ }
209
+ }
210
+ }
211
+ }
212
+ ```
213
+
214
+ If your IDE can't set the process working directory for MCP servers, set `BACKLOG_CWD` as shown above.
215
+ If your IDE supports custom args but not env vars, you can also use `["mcp", "start", "--cwd", "/absolute/path/to/your/project"]`.
216
+
217
+ > [!IMPORTANT]
218
+ > When adding the MCP server manually, you should add some extra instructions in your CLAUDE.md/AGENTS.md files to inform the agent about Backlog.md.
219
+ > This step is not required when using `backlog init` as it adds these instructions automatically.
220
+ > Backlog.md's instructions for agents are available at [`/src/guidelines/mcp/agent-nudge.md`](/src/guidelines/mcp/agent-nudge.md).
221
+
222
+
223
+ Once connected, agents can read the Backlog.md workflow instructions via the resource `backlog://docs/task-workflow`.
224
+ Use `/mcp` command in your AI tool (Claude Code, Codex, Kiro) to verify if the connection is working.
225
+
226
+ ---
227
+
228
+ ## <img src="./.github/cli-reference-256.png" alt="CLI Reference" width="28" height="28" align="center"> CLI reference
229
+
230
+ Full command reference — task management, search, board, docs, decisions, and more: **[CLI-INSTRUCTIONS.md](CLI-INSTRUCTIONS.md)**
231
+
232
+ Quick examples: `backlog task create`, `backlog task list`, `backlog task edit`, `backlog search`, `backlog board`, `backlog browser`.
233
+
234
+ Full help: `backlog --help`
235
+
236
+ ---
237
+
238
+ ## <img src="./.github/configuration-256.png" alt="Configuration" width="28" height="28" align="center"> Configuration
239
+
240
+ Backlog.md merges the following layers (highest → lowest):
241
+
242
+ 1. CLI flags
243
+ 2. Project config file:
244
+ - `backlog.config.yml` when present
245
+ - otherwise `backlog/config.yml` or `.backlog/config.yml`
246
+ 3. Built‑ins
247
+
248
+ ### Interactive wizard (`backlog config`)
249
+
250
+ Run `backlog config` with no arguments to launch the full interactive wizard. This is the same experience triggered from `backlog init` when you opt into advanced settings, and it walks through the complete configuration surface:
251
+ - Cross-branch accuracy: `checkActiveBranches`, `remoteOperations`, and `activeBranchDays`.
252
+ - Git workflow: `autoCommit` and `bypassGitHooks`.
253
+ - ID formatting: enable or size `zeroPaddedIds`.
254
+ - Editor integration: pick a `defaultEditor` with availability checks.
255
+ - Definition of Done defaults: interactively add/remove/reorder/clear project-level `definition_of_done` checklist items.
256
+ - Web UI defaults: choose `defaultPort` and whether `autoOpenBrowser` should run.
257
+
258
+ Skipping the wizard (answering "No" during init) applies the safe defaults that ship with Backlog.md:
259
+ - `checkActiveBranches=true`, `remoteOperations=true`, `activeBranchDays=30`.
260
+ - `autoCommit=false`, `bypassGitHooks=false`.
261
+ - `zeroPaddedIds` disabled.
262
+ - `defaultEditor` unset (falls back to your environment).
263
+ - `defaultPort=6420`, `autoOpenBrowser=true`.
264
+
265
+ For filesystem-only projects, run `backlog init --no-git`. Backlog.md will not run `git init`, and the saved config forces `checkActiveBranches=false`, `remoteOperations=false`, and `autoCommit=false` so CLI, Web, and MCP local-file workflows do not depend on a Git repository.
266
+
267
+ Whenever you revisit `backlog init` or rerun `backlog config`, the wizard pre-populates prompts with your current values so you can adjust only what changed.
268
+
269
+ ### Definition of Done defaults
270
+
271
+ Set project-wide DoD items with `backlog config` (or during `backlog init` advanced setup), in the Web UI (Settings → Definition of Done Defaults), or by editing the project config file directly:
272
+
273
+ ```yaml
274
+ definition_of_done:
275
+ - Tests pass
276
+ - Documentation updated
277
+ - No regressions introduced
278
+ ```
279
+
280
+ When a project uses root config discovery, edit `backlog.config.yml` instead of `backlog/config.yml`.
281
+
282
+ These items are added to every new task by default. You can add more on create with `--dod`, or disable defaults per task with `--no-dod-defaults`.
283
+
284
+ For the full configuration reference (all options, commands, and detailed notes), see **[ADVANCED-CONFIG.md](ADVANCED-CONFIG.md)**.
285
+
286
+ ---
287
+
288
+ ## 🌐 Community Tools
289
+
290
+ - **[vscode-backlog-md](https://marketplace.visualstudio.com/items?itemName=ysamlan.vscode-backlog-md)** - VS Code extension with issues panel, kanban view, and editing. ([ysamlan/vscode-backlog-md](https://github.com/ysamlan/vscode-backlog-md))
291
+
292
+ ---
293
+
294
+ ### License
295
+
296
+ Backlog.md is released under the **MIT License** – do anything, just give credit. See [LICENSE](LICENSE).
package/backlog.exe ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,4 @@
1
+ { "name": "backlog.md-windows-arm64", "version": "1.45.1",
2
+ "os": ["win32"], "cpu": ["arm64"],
3
+ "files": ["backlog.exe","package.json","LICENSE"],
4
+ "repository": { "type": "git", "url": "https://github.com/MrLesk/Backlog.md" } }