epicd-linux-arm64 1.48.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +297 -0
  3. package/epicd +0 -0
  4. package/package.json +11 -0
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,297 @@
1
+ <h1 align="center">epicd</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 epicd</code> or <code>bun add -g epicd</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 epicd
48
+ # or: npm i -g epicd
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
+ - **CLI instructions** (recommended) — creates a short instruction file that tells agents to run `backlog instructions overview`.
60
+ - **MCP connector** — optionally auto-configures Claude Code, Codex, Gemini CLI, Kiro or Cursor for teams that prefer MCP.
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`, agents should start by running `backlog instructions overview`. 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 task edit BACK-1 --comment "Can we split the UI work into a separate PR?" --comment-author @sara
111
+ backlog search "kanban"
112
+ backlog board
113
+
114
+ # Work visually in the browser
115
+ backlog browser
116
+ ```
117
+
118
+ 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`. Use task comments for discussion and review notes; comment bodies may contain Markdown, but standalone `---` lines are reserved as comment delimiters. Use Implementation Notes for execution progress and Final Summary for completion notes.
119
+
120
+ **Learn more:** [CLI reference](CLI-INSTRUCTIONS.md) | [Advanced configuration](ADVANCED-CONFIG.md)
121
+
122
+ ---
123
+
124
+ ## <img src="./.github/web-interface-256.png" alt="Web Interface" width="28" height="28" align="center"> Web Interface
125
+
126
+ Launch a modern, responsive web interface for visual task management:
127
+
128
+ ```bash
129
+ # Start the web server (opens browser automatically)
130
+ backlog browser
131
+
132
+ # Custom port
133
+ backlog browser --port 8080
134
+
135
+ # Don't open browser automatically
136
+ backlog browser --no-open
137
+ ```
138
+
139
+ **Features:**
140
+ - Interactive Kanban board with drag-and-drop
141
+ - Task creation and editing with rich forms
142
+ - Interactive acceptance criteria editor with checklists
143
+ - Real-time updates across all views
144
+ - Responsive design for desktop and mobile
145
+ - Task archiving with confirmation dialogs
146
+ - Seamless CLI integration - all changes sync with markdown files
147
+
148
+ ![Web Interface Screenshot](./.github/web.jpeg)
149
+
150
+ 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).
151
+
152
+ ---
153
+
154
+ ## 🔧 MCP Integration (Model Context Protocol)
155
+
156
+ CLI instructions are the default AI setup. MCP remains supported for AI coding assistants like Claude Code, Codex, Gemini CLI and Kiro when you explicitly prefer an MCP connector.
157
+ You can run `backlog init` (even if you already initialized Backlog.md) and choose MCP integration, or follow the manual steps below.
158
+
159
+ ### Client guides
160
+
161
+ <details>
162
+ <summary><strong>Claude Code</strong></summary>
163
+
164
+ ```bash
165
+ claude mcp add backlog --scope user -- backlog mcp start
166
+ ```
167
+
168
+ </details>
169
+
170
+ <details>
171
+ <summary><strong>Codex</strong></summary>
172
+
173
+ ```bash
174
+ codex mcp add backlog -- backlog mcp start
175
+ ```
176
+
177
+ </details>
178
+
179
+ <details>
180
+ <summary><strong>Gemini CLI</strong></summary>
181
+
182
+ ```bash
183
+ gemini mcp add backlog -s user backlog mcp start
184
+ ```
185
+
186
+ </details>
187
+
188
+ <details>
189
+ <summary><strong>Kiro</strong></summary>
190
+
191
+ ```bash
192
+ kiro-cli mcp add --scope global --name backlog --command backlog --args mcp,start
193
+ ```
194
+
195
+ </details>
196
+
197
+ Use the shared `backlog` server name everywhere. The server finds the active project from your client's MCP roots, and re-resolves when you switch workspace or worktree. Until it finds one, it serves `backlog://init-required`. A single user-scope server covers every repo.
198
+
199
+ ### Manual config
200
+
201
+ ```json
202
+ {
203
+ "mcpServers": {
204
+ "backlog": {
205
+ "command": "backlog",
206
+ "args": ["mcp", "start"],
207
+ "env": {
208
+ "BACKLOG_CWD": "/absolute/path/to/your/project"
209
+ }
210
+ }
211
+ }
212
+ }
213
+ ```
214
+
215
+ Set `BACKLOG_CWD` to pin the server to one project and stop workspace following. Use it to always target the same backlog, or when your client can't report MCP roots.
216
+ If your IDE supports custom args but not env vars, you can also use `["mcp", "start", "--cwd", "/absolute/path/to/your/project"]`.
217
+
218
+ > [!IMPORTANT]
219
+ > When adding the MCP server manually, add a short instruction to your CLAUDE.md/AGENTS.md files telling agents to read `backlog://workflow/overview`.
220
+ > This step is not required when using `backlog init` as it adds these instructions automatically.
221
+ > For CLI-based setups, use `backlog instructions overview` to fetch the current workflow guidance.
222
+
223
+
224
+ Once connected, agents can read the Backlog.md workflow instructions via `backlog://workflow/overview`, with detailed guides at `backlog://workflow/task-creation`, `backlog://workflow/task-execution`, and `backlog://workflow/task-finalization`.
225
+ Use `/mcp` command in your AI tool (Claude Code, Codex, Kiro) to verify if the connection is working.
226
+
227
+ ---
228
+
229
+ ## <img src="./.github/cli-reference-256.png" alt="CLI Reference" width="28" height="28" align="center"> CLI reference
230
+
231
+ Full command reference — task management, search, board, docs, decisions, and more: **[CLI-INSTRUCTIONS.md](CLI-INSTRUCTIONS.md)**
232
+
233
+ Quick examples: `backlog`, `backlog instructions`, `backlog task create`, `backlog task list`, `backlog task edit`, `backlog milestone add`, `backlog milestone rename`, `backlog milestone remove`, `backlog search`, `backlog board`, `backlog browser`.
234
+
235
+ Full help: `backlog --help`
236
+
237
+ ---
238
+
239
+ ## <img src="./.github/configuration-256.png" alt="Configuration" width="28" height="28" align="center"> Configuration
240
+
241
+ Backlog.md merges the following layers (highest → lowest):
242
+
243
+ 1. CLI flags
244
+ 2. Project config file:
245
+ - `backlog.config.yml` when present
246
+ - otherwise `backlog/config.yml` or `.backlog/config.yml`
247
+ 3. Built‑ins
248
+
249
+ ### Interactive wizard (`backlog config`)
250
+
251
+ 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:
252
+ - Cross-branch accuracy: `checkActiveBranches`, `remoteOperations`, and `activeBranchDays`.
253
+ - Git workflow: `autoCommit` and `bypassGitHooks`.
254
+ - ID formatting: enable or size `zeroPaddedIds`.
255
+ - Editor integration: pick a `defaultEditor` with availability checks.
256
+ - Definition of Done defaults: interactively add/remove/reorder/clear project-level `definition_of_done` checklist items.
257
+ - Web UI defaults: choose `defaultPort` and whether `autoOpenBrowser` should run.
258
+
259
+ Skipping the wizard (answering "No" during init) applies the safe defaults that ship with Backlog.md:
260
+ - `checkActiveBranches=true`, `remoteOperations=true`, `activeBranchDays=30`.
261
+ - `autoCommit=false`, `bypassGitHooks=false`.
262
+ - `zeroPaddedIds` disabled.
263
+ - `defaultEditor` unset (falls back to your environment).
264
+ - `defaultPort=6420`, `autoOpenBrowser=true`.
265
+
266
+ 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.
267
+
268
+ 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.
269
+
270
+ ### Definition of Done defaults
271
+
272
+ 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:
273
+
274
+ ```yaml
275
+ definition_of_done:
276
+ - Tests pass
277
+ - Documentation updated
278
+ - No regressions introduced
279
+ ```
280
+
281
+ When a project uses root config discovery, edit `backlog.config.yml` instead of `backlog/config.yml`.
282
+
283
+ 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`.
284
+
285
+ For the full configuration reference (all options, commands, and detailed notes), see **[ADVANCED-CONFIG.md](ADVANCED-CONFIG.md)**.
286
+
287
+ ---
288
+
289
+ ## 🌐 Community Tools
290
+
291
+ - **[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))
292
+
293
+ ---
294
+
295
+ ### License
296
+
297
+ Backlog.md is released under the **MIT License** – do anything, just give credit. See [LICENSE](LICENSE).
package/epicd ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "epicd-linux-arm64",
3
+ "version": "1.48.6",
4
+ "os": ["linux"],
5
+ "cpu": ["arm64"],
6
+ "files": ["epicd","package.json","LICENSE"],
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/yaleh/epicd"
10
+ }
11
+ }