@leeovery/claude-technical-workflows 2.0.54 → 2.1.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.
- package/README.md +34 -7
- package/agents/implementation-task-executor.md +1 -1
- package/agents/planning-dependency-grapher.md +140 -0
- package/agents/planning-phase-designer.md +1 -1
- package/agents/planning-task-author.md +1 -1
- package/agents/planning-task-designer.md +1 -1
- package/agents/{chain-verifier.md → review-task-verifier.md} +3 -3
- package/commands/link-dependencies.md +5 -5
- package/commands/workflow/view-plan.md +5 -5
- package/package.json +1 -1
- package/skills/technical-implementation/SKILL.md +4 -2
- package/skills/technical-implementation/references/environment-setup.md +3 -3
- package/skills/technical-implementation/references/steps/task-loop.md +2 -2
- package/skills/technical-planning/SKILL.md +17 -9
- package/skills/technical-planning/references/dependencies.md +3 -3
- package/skills/technical-planning/references/output-formats/linear/about.md +48 -0
- package/skills/technical-planning/references/output-formats/linear/authoring.md +82 -0
- package/skills/technical-planning/references/output-formats/linear/graph.md +68 -0
- package/skills/technical-planning/references/output-formats/linear/reading.md +35 -0
- package/skills/technical-planning/references/output-formats/linear/updating.md +25 -0
- package/skills/technical-planning/references/output-formats/local-markdown/about.md +40 -0
- package/skills/technical-planning/references/output-formats/local-markdown/authoring.md +64 -0
- package/skills/technical-planning/references/output-formats/local-markdown/graph.md +44 -0
- package/skills/technical-planning/references/output-formats/local-markdown/reading.md +29 -0
- package/skills/technical-planning/references/output-formats/local-markdown/updating.md +22 -0
- package/skills/technical-planning/references/output-formats.md +6 -30
- package/skills/technical-planning/references/steps/analyze-task-graph.md +89 -0
- package/skills/technical-planning/references/steps/author-tasks.md +3 -3
- package/skills/technical-planning/references/steps/review-integrity.md +4 -5
- package/skills/technical-planning/references/task-design.md +10 -0
- package/skills/technical-review/SKILL.md +3 -3
- package/skills/technical-review/references/review-checklist.md +10 -10
- package/skills/technical-planning/references/output-formats/output-backlog-md.md +0 -369
- package/skills/technical-planning/references/output-formats/output-beads.md +0 -455
- package/skills/technical-planning/references/output-formats/output-linear.md +0 -328
- package/skills/technical-planning/references/output-formats/output-local-markdown.md +0 -318
|
@@ -1,369 +0,0 @@
|
|
|
1
|
-
# Output: Backlog.md
|
|
2
|
-
|
|
3
|
-
*Output adapter for **[technical-planning](../../SKILL.md)***
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
Use this output format when you want a **local Kanban board with MCP integration**. Backlog.md is a markdown-native task manager designed for Git repositories with AI assistant support.
|
|
8
|
-
|
|
9
|
-
## About Backlog.md
|
|
10
|
-
|
|
11
|
-
Backlog.md is a CLI + web Kanban tool that:
|
|
12
|
-
- Stores tasks as individual markdown files in `backlog/` directory
|
|
13
|
-
- Has MCP (Model Context Protocol) support for Claude Code
|
|
14
|
-
- Provides terminal and web Kanban views
|
|
15
|
-
- Supports dependencies, priorities, assignees
|
|
16
|
-
- Built for Git workflows with auto-commit
|
|
17
|
-
|
|
18
|
-
See: https://github.com/MrLesk/Backlog.md
|
|
19
|
-
|
|
20
|
-
## Setup
|
|
21
|
-
|
|
22
|
-
Install via npm:
|
|
23
|
-
|
|
24
|
-
```bash
|
|
25
|
-
npm install -g backlog-md
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
Initialize in your project:
|
|
29
|
-
|
|
30
|
-
```bash
|
|
31
|
-
backlog init "Project Name"
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
For MCP integration, configure the Backlog.md MCP server in Claude Code settings.
|
|
35
|
-
|
|
36
|
-
## Output Location
|
|
37
|
-
|
|
38
|
-
For Backlog.md integration, use the project's `backlog/` directory:
|
|
39
|
-
|
|
40
|
-
```
|
|
41
|
-
backlog/
|
|
42
|
-
├── task-1 - Phase 1 Setup.md
|
|
43
|
-
├── task-2 - Implement login endpoint.md
|
|
44
|
-
└── task-3 - Add session management.md
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
The Plan Index File at `docs/workflow/planning/{topic}.md` serves as the reference pointer to backlog tasks.
|
|
48
|
-
|
|
49
|
-
## File Structure
|
|
50
|
-
|
|
51
|
-
### Plan Reference File (`docs/workflow/planning/{topic}.md`)
|
|
52
|
-
|
|
53
|
-
```markdown
|
|
54
|
-
---
|
|
55
|
-
topic: {topic-name}
|
|
56
|
-
status: planning
|
|
57
|
-
format: backlog-md
|
|
58
|
-
specification: ../specification/{topic}.md
|
|
59
|
-
cross_cutting_specs: # Omit if none
|
|
60
|
-
- ../specification/{spec}.md
|
|
61
|
-
spec_commit: {git-commit-hash}
|
|
62
|
-
plan_id: {TOPIC_NAME}
|
|
63
|
-
created: YYYY-MM-DD # Use today's actual date
|
|
64
|
-
updated: YYYY-MM-DD # Use today's actual date
|
|
65
|
-
planning:
|
|
66
|
-
phase: 1
|
|
67
|
-
task: ~
|
|
68
|
-
---
|
|
69
|
-
|
|
70
|
-
# Plan: {Topic Name}
|
|
71
|
-
|
|
72
|
-
## About This Plan
|
|
73
|
-
|
|
74
|
-
This plan is managed via Backlog.md. Tasks are stored in the `backlog/` directory.
|
|
75
|
-
|
|
76
|
-
## How to Use
|
|
77
|
-
|
|
78
|
-
**View the board**: Run `backlog board` (terminal) or `backlog browser` (web UI)
|
|
79
|
-
|
|
80
|
-
**Implementation will**:
|
|
81
|
-
1. Read this file to identify the plan
|
|
82
|
-
2. Check External Dependencies below
|
|
83
|
-
3. Query backlog via MCP or read task files directly
|
|
84
|
-
4. Work through tasks by status/priority
|
|
85
|
-
5. Update task status as work completes
|
|
86
|
-
|
|
87
|
-
**To add tasks**: Run `backlog add "Task title"` or create task files directly.
|
|
88
|
-
|
|
89
|
-
## Key Decisions
|
|
90
|
-
|
|
91
|
-
[Summary of key decisions from specification]
|
|
92
|
-
|
|
93
|
-
## Cross-Cutting References
|
|
94
|
-
|
|
95
|
-
Architectural decisions from cross-cutting specifications that inform this plan:
|
|
96
|
-
|
|
97
|
-
| Specification | Key Decisions | Applies To |
|
|
98
|
-
|---------------|---------------|------------|
|
|
99
|
-
| [Caching Strategy](../../specification/caching-strategy.md) | Cache API responses for 5 min | Tasks involving API calls |
|
|
100
|
-
| [Rate Limiting](../../specification/rate-limiting.md) | 100 req/min per user | User-facing endpoints |
|
|
101
|
-
|
|
102
|
-
*Remove this section if no cross-cutting specifications apply.*
|
|
103
|
-
|
|
104
|
-
## Phases
|
|
105
|
-
|
|
106
|
-
### Phase 1: {Name}
|
|
107
|
-
status: draft
|
|
108
|
-
label: phase-1
|
|
109
|
-
|
|
110
|
-
**Goal**: {What this phase accomplishes}
|
|
111
|
-
**Why this order**: {Why this comes at this position}
|
|
112
|
-
|
|
113
|
-
**Acceptance**:
|
|
114
|
-
- [ ] Criterion 1
|
|
115
|
-
- [ ] Criterion 2
|
|
116
|
-
|
|
117
|
-
#### Tasks
|
|
118
|
-
| ID | Name | Edge Cases | Status |
|
|
119
|
-
|----|------|------------|--------|
|
|
120
|
-
| task-1 | {Task Name} | {list} | pending |
|
|
121
|
-
|
|
122
|
-
---
|
|
123
|
-
|
|
124
|
-
### Phase 2: {Name}
|
|
125
|
-
status: draft
|
|
126
|
-
label: phase-2
|
|
127
|
-
|
|
128
|
-
...
|
|
129
|
-
|
|
130
|
-
## External Dependencies
|
|
131
|
-
|
|
132
|
-
[Dependencies on other topics - copy from specification's Dependencies section]
|
|
133
|
-
|
|
134
|
-
- {topic}: {description}
|
|
135
|
-
- {topic}: {description} → {task-id} (resolved)
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
The External Dependencies section tracks what this plan needs from other topics. See `../dependencies.md` for the format and states (unresolved, resolved, satisfied externally).
|
|
139
|
-
|
|
140
|
-
## Frontmatter
|
|
141
|
-
|
|
142
|
-
The frontmatter tracks planning progress:
|
|
143
|
-
|
|
144
|
-
```yaml
|
|
145
|
-
---
|
|
146
|
-
topic: {topic-name}
|
|
147
|
-
status: planning | concluded
|
|
148
|
-
format: backlog-md
|
|
149
|
-
specification: ../specification/{topic}.md
|
|
150
|
-
cross_cutting_specs: # Omit if none
|
|
151
|
-
- ../specification/{spec}.md
|
|
152
|
-
spec_commit: {git-commit-hash}
|
|
153
|
-
plan_id: {TOPIC_NAME}
|
|
154
|
-
created: YYYY-MM-DD # Use today's actual date
|
|
155
|
-
updated: YYYY-MM-DD # Use today's actual date
|
|
156
|
-
planning:
|
|
157
|
-
phase: 2
|
|
158
|
-
task: 3
|
|
159
|
-
---
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
### Task File Format
|
|
163
|
-
|
|
164
|
-
Each task is a separate file: `backlog/task-{id} - {title}.md`
|
|
165
|
-
|
|
166
|
-
Tasks should be **fully self-contained** - include all context so humans and agents can execute without referencing other files.
|
|
167
|
-
|
|
168
|
-
```markdown
|
|
169
|
-
---
|
|
170
|
-
status: To Do
|
|
171
|
-
priority: high
|
|
172
|
-
labels: [phase-1, api]
|
|
173
|
-
---
|
|
174
|
-
|
|
175
|
-
# {Task Title}
|
|
176
|
-
|
|
177
|
-
## Goal
|
|
178
|
-
|
|
179
|
-
{What this task accomplishes and why - include rationale from specification}
|
|
180
|
-
|
|
181
|
-
## Implementation
|
|
182
|
-
|
|
183
|
-
{The "Do" - specific files, methods, approach}
|
|
184
|
-
|
|
185
|
-
## Acceptance Criteria
|
|
186
|
-
|
|
187
|
-
1. [ ] Test written: `it does expected behavior`
|
|
188
|
-
2. [ ] Test written: `it handles edge case`
|
|
189
|
-
3. [ ] Implementation complete
|
|
190
|
-
4. [ ] Tests passing
|
|
191
|
-
5. [ ] Committed
|
|
192
|
-
|
|
193
|
-
## Edge Cases
|
|
194
|
-
|
|
195
|
-
{Specific edge cases for this task}
|
|
196
|
-
|
|
197
|
-
## Context
|
|
198
|
-
|
|
199
|
-
{Relevant decisions and constraints from specification}
|
|
200
|
-
|
|
201
|
-
Specification reference: `docs/workflow/specification/{topic}.md` (for ambiguity resolution)
|
|
202
|
-
```
|
|
203
|
-
|
|
204
|
-
### Frontmatter Fields
|
|
205
|
-
|
|
206
|
-
| Field | Purpose | Values |
|
|
207
|
-
|-------|---------|--------|
|
|
208
|
-
| `status` | Workflow state | To Do, In Progress, Done |
|
|
209
|
-
| `priority` | Importance | high, medium, low |
|
|
210
|
-
| `labels` | Categories | `[phase-1, api, edge-case, needs-info]` |
|
|
211
|
-
| `assignee` | Who's working on it | (optional) |
|
|
212
|
-
| `dependencies` | Blocking tasks (internal) | `[task-1, task-3]` |
|
|
213
|
-
| `external_deps` | Cross-topic dependencies | `[billing-system#task-5]` |
|
|
214
|
-
|
|
215
|
-
## Cross-Topic Dependencies
|
|
216
|
-
|
|
217
|
-
Cross-topic dependencies link tasks between different plan topics. This is how you express "this task depends on the billing system being implemented."
|
|
218
|
-
|
|
219
|
-
### In Task Frontmatter
|
|
220
|
-
|
|
221
|
-
Use the `external_deps` field with the format `{topic}#{task-id}`:
|
|
222
|
-
|
|
223
|
-
```yaml
|
|
224
|
-
---
|
|
225
|
-
status: To Do
|
|
226
|
-
priority: high
|
|
227
|
-
labels: [phase-1]
|
|
228
|
-
external_deps: [billing-system#task-5, authentication#task-3]
|
|
229
|
-
---
|
|
230
|
-
```
|
|
231
|
-
|
|
232
|
-
### In Plan Reference File
|
|
233
|
-
|
|
234
|
-
The plan reference file at `docs/workflow/planning/{topic}.md` tracks external dependencies in a dedicated section (see template below).
|
|
235
|
-
|
|
236
|
-
## Querying Dependencies
|
|
237
|
-
|
|
238
|
-
Use these queries to understand the dependency graph for implementation blocking and `/link-dependencies`.
|
|
239
|
-
|
|
240
|
-
### Find Tasks With External Dependencies
|
|
241
|
-
|
|
242
|
-
```bash
|
|
243
|
-
# Find all tasks with external dependencies
|
|
244
|
-
grep -l "external_deps:" backlog/*.md
|
|
245
|
-
|
|
246
|
-
# Find tasks depending on a specific topic
|
|
247
|
-
grep -l "billing-system#" backlog/*.md
|
|
248
|
-
```
|
|
249
|
-
|
|
250
|
-
### Check Internal Dependencies
|
|
251
|
-
|
|
252
|
-
```bash
|
|
253
|
-
# Find tasks with dependencies
|
|
254
|
-
grep -l "dependencies:" backlog/*.md
|
|
255
|
-
|
|
256
|
-
# Show dependency values
|
|
257
|
-
grep "dependencies:" backlog/*.md
|
|
258
|
-
```
|
|
259
|
-
|
|
260
|
-
### Check if a Dependency is Complete
|
|
261
|
-
|
|
262
|
-
Read the task file and check the frontmatter:
|
|
263
|
-
- `status: Done` means the dependency is met
|
|
264
|
-
- Any other status means it's still blocking
|
|
265
|
-
|
|
266
|
-
### Parse Frontmatter Programmatically
|
|
267
|
-
|
|
268
|
-
For more complex queries, parse the YAML frontmatter:
|
|
269
|
-
|
|
270
|
-
```bash
|
|
271
|
-
# Extract frontmatter from a task file
|
|
272
|
-
sed -n '/^---$/,/^---$/p' backlog/task-5*.md
|
|
273
|
-
```
|
|
274
|
-
|
|
275
|
-
### Using `needs-info` Label
|
|
276
|
-
|
|
277
|
-
When creating tasks with incomplete information:
|
|
278
|
-
|
|
279
|
-
1. **Create the task anyway** - don't block planning
|
|
280
|
-
2. **Add `needs-info` to labels** - makes gaps visible
|
|
281
|
-
3. **Note what's missing** in task body - be specific
|
|
282
|
-
4. **Continue planning** - circle back later
|
|
283
|
-
|
|
284
|
-
This allows iterative refinement. Create all tasks, identify gaps, circle back to specification if needed, then update tasks with missing detail.
|
|
285
|
-
|
|
286
|
-
## Phase Representation
|
|
287
|
-
|
|
288
|
-
Since Backlog.md doesn't have native milestones, represent phases via:
|
|
289
|
-
|
|
290
|
-
1. **Labels**: `phase-1`, `phase-2`, etc.
|
|
291
|
-
2. **Task naming**: Prefix with phase number `task-X - [P1] Task name.md`
|
|
292
|
-
3. **Priority**: Foundation tasks = high, refinement = low
|
|
293
|
-
|
|
294
|
-
## Benefits
|
|
295
|
-
|
|
296
|
-
- Visual Kanban board in terminal or web UI
|
|
297
|
-
- Local and fully version-controlled
|
|
298
|
-
- MCP integration for Claude Code
|
|
299
|
-
- Auto-commit on task changes
|
|
300
|
-
- Individual task files for easy editing
|
|
301
|
-
|
|
302
|
-
## MCP Integration
|
|
303
|
-
|
|
304
|
-
If Backlog.md MCP server is configured, planning can:
|
|
305
|
-
- Create tasks via MCP tools
|
|
306
|
-
- Set status, priority, labels
|
|
307
|
-
- Query existing tasks
|
|
308
|
-
|
|
309
|
-
Implementation can:
|
|
310
|
-
- Query tasks by status/label
|
|
311
|
-
- Update task status as work completes
|
|
312
|
-
- Add notes to tasks
|
|
313
|
-
|
|
314
|
-
## Resulting Structure
|
|
315
|
-
|
|
316
|
-
After planning:
|
|
317
|
-
|
|
318
|
-
```
|
|
319
|
-
project/
|
|
320
|
-
├── backlog/
|
|
321
|
-
│ ├── task-1 - [P1] Configure auth.md
|
|
322
|
-
│ ├── task-2 - [P1] Add login endpoint.md
|
|
323
|
-
│ └── task-3 - [P2] Session management.md
|
|
324
|
-
├── docs/workflow/
|
|
325
|
-
│ ├── discussion/{topic}.md # Discussion output
|
|
326
|
-
│ ├── specification/{topic}.md # Specification output
|
|
327
|
-
│ └── planning/{topic}.md # Planning output (format: backlog-md - pointer)
|
|
328
|
-
```
|
|
329
|
-
|
|
330
|
-
## Implementation
|
|
331
|
-
|
|
332
|
-
### Reading Plans
|
|
333
|
-
|
|
334
|
-
1. If Backlog.md MCP is available, query tasks via MCP
|
|
335
|
-
2. Otherwise, read task files from `backlog/` directory
|
|
336
|
-
3. Filter tasks by label (e.g., `phase-1`) or naming convention
|
|
337
|
-
4. Process in priority order (high → medium → low)
|
|
338
|
-
|
|
339
|
-
### Updating Progress
|
|
340
|
-
|
|
341
|
-
- Update task status to "In Progress" when starting
|
|
342
|
-
- Check off acceptance criteria items in task file
|
|
343
|
-
- Update status to "Done" when complete
|
|
344
|
-
- Backlog.md CLI auto-moves to completed folder
|
|
345
|
-
|
|
346
|
-
### Fallback
|
|
347
|
-
|
|
348
|
-
Can read `backlog/` files directly if MCP unavailable.
|
|
349
|
-
|
|
350
|
-
### Cleanup (Restart)
|
|
351
|
-
|
|
352
|
-
Delete the backlog task files for this topic. Read the task IDs from the Plan Index File's task tables, then delete each corresponding file:
|
|
353
|
-
|
|
354
|
-
```bash
|
|
355
|
-
rm backlog/task-{id}*.md
|
|
356
|
-
```
|
|
357
|
-
|
|
358
|
-
No index or database needs updating — Backlog.md uses the filesystem as its source of truth.
|
|
359
|
-
|
|
360
|
-
## CLI Commands Reference
|
|
361
|
-
|
|
362
|
-
```bash
|
|
363
|
-
backlog init "Project" # Initialize backlog
|
|
364
|
-
backlog add "Task title" # Add task
|
|
365
|
-
backlog board # Terminal Kanban view
|
|
366
|
-
backlog browser # Web UI
|
|
367
|
-
backlog list # List all tasks
|
|
368
|
-
backlog search "query" # Search tasks
|
|
369
|
-
```
|