@yemi33/minions 0.1.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/CHANGELOG.md +819 -0
- package/LICENSE +21 -0
- package/README.md +598 -0
- package/agents/dallas/charter.md +56 -0
- package/agents/lambert/charter.md +67 -0
- package/agents/ralph/charter.md +45 -0
- package/agents/rebecca/charter.md +57 -0
- package/agents/ripley/charter.md +47 -0
- package/bin/minions.js +467 -0
- package/config.template.json +28 -0
- package/dashboard.html +4822 -0
- package/dashboard.js +2623 -0
- package/docs/auto-discovery.md +416 -0
- package/docs/blog-first-successful-dispatch.md +128 -0
- package/docs/command-center.md +156 -0
- package/docs/demo/01-dashboard-overview.gif +0 -0
- package/docs/demo/02-command-center.gif +0 -0
- package/docs/demo/03-work-items.gif +0 -0
- package/docs/demo/04-plan-docchat.gif +0 -0
- package/docs/demo/05-prd-progress.gif +0 -0
- package/docs/demo/06-inbox-metrics.gif +0 -0
- package/docs/deprecated.json +83 -0
- package/docs/distribution.md +96 -0
- package/docs/engine-restart.md +92 -0
- package/docs/human-vs-automated.md +108 -0
- package/docs/index.html +221 -0
- package/docs/plan-lifecycle.md +140 -0
- package/docs/self-improvement.md +344 -0
- package/engine/ado-mcp-wrapper.js +42 -0
- package/engine/ado.js +383 -0
- package/engine/check-status.js +23 -0
- package/engine/cli.js +754 -0
- package/engine/consolidation.js +417 -0
- package/engine/github.js +331 -0
- package/engine/lifecycle.js +1113 -0
- package/engine/llm.js +116 -0
- package/engine/queries.js +677 -0
- package/engine/shared.js +397 -0
- package/engine/spawn-agent.js +151 -0
- package/engine.js +3227 -0
- package/minions.js +556 -0
- package/package.json +48 -0
- package/playbooks/ask.md +49 -0
- package/playbooks/build-and-test.md +155 -0
- package/playbooks/explore.md +64 -0
- package/playbooks/fix.md +57 -0
- package/playbooks/implement-shared.md +68 -0
- package/playbooks/implement.md +95 -0
- package/playbooks/plan-to-prd.md +104 -0
- package/playbooks/plan.md +99 -0
- package/playbooks/review.md +68 -0
- package/playbooks/test.md +75 -0
- package/playbooks/verify.md +190 -0
- package/playbooks/work-item.md +74 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,819 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.1 (2026-03-23)
|
|
4
|
+
|
|
5
|
+
### Engine
|
|
6
|
+
- engine.js
|
|
7
|
+
- engine/ado.js
|
|
8
|
+
- engine/cli.js
|
|
9
|
+
- engine/consolidation.js
|
|
10
|
+
- engine/github.js
|
|
11
|
+
- engine/lifecycle.js
|
|
12
|
+
- engine/llm.js
|
|
13
|
+
- engine/queries.js
|
|
14
|
+
- engine/shared.js
|
|
15
|
+
|
|
16
|
+
### Dashboard
|
|
17
|
+
- dashboard.html
|
|
18
|
+
- dashboard.js
|
|
19
|
+
|
|
20
|
+
### Playbooks
|
|
21
|
+
- build-and-test.md
|
|
22
|
+
- explore.md
|
|
23
|
+
- fix.md
|
|
24
|
+
- implement-shared.md
|
|
25
|
+
- implement.md
|
|
26
|
+
- plan-to-prd.md
|
|
27
|
+
- plan.md
|
|
28
|
+
- review.md
|
|
29
|
+
- verify.md
|
|
30
|
+
- work-item.md
|
|
31
|
+
|
|
32
|
+
### Agents
|
|
33
|
+
- agents/dallas/charter.md
|
|
34
|
+
- agents/lambert/charter.md
|
|
35
|
+
- agents/ralph/charter.md
|
|
36
|
+
- agents/rebecca/charter.md
|
|
37
|
+
- agents/ripley/charter.md
|
|
38
|
+
|
|
39
|
+
### Documentation
|
|
40
|
+
- README.md
|
|
41
|
+
- auto-discovery.md
|
|
42
|
+
- blog-first-successful-dispatch.md
|
|
43
|
+
- command-center.md
|
|
44
|
+
- distribution.md
|
|
45
|
+
- human-vs-automated.md
|
|
46
|
+
- index.html
|
|
47
|
+
- plan-lifecycle.md
|
|
48
|
+
- self-improvement.md
|
|
49
|
+
|
|
50
|
+
### Other
|
|
51
|
+
- .claude/skills/cleanup-deprecated/SKILL.md
|
|
52
|
+
- .claude/skills/run-tests/SKILL.md
|
|
53
|
+
- .github/workflows/publish.yml
|
|
54
|
+
- CLAUDE.md
|
|
55
|
+
- TODO.md
|
|
56
|
+
- bin/minions.js
|
|
57
|
+
- config.template.json
|
|
58
|
+
- minions.js
|
|
59
|
+
- package-lock.json
|
|
60
|
+
- team.md
|
|
61
|
+
- test/demo.html
|
|
62
|
+
- test/minions-tests.js
|
|
63
|
+
- test/playwright/dashboard.spec.js
|
|
64
|
+
- test/playwright/reporter.js
|
|
65
|
+
- test/pre-commit-hook.js
|
|
66
|
+
- test/seed-demo-data.js
|
|
67
|
+
- test/unit.test.js
|
|
68
|
+
|
|
69
|
+
## 0.1.119 (2026-03-21)
|
|
70
|
+
|
|
71
|
+
### Engine
|
|
72
|
+
- engine/lifecycle.js
|
|
73
|
+
|
|
74
|
+
### Dashboard
|
|
75
|
+
- dashboard.html
|
|
76
|
+
|
|
77
|
+
### Other
|
|
78
|
+
- test/unit.test.js
|
|
79
|
+
|
|
80
|
+
## 0.1.118 (2026-03-21)
|
|
81
|
+
|
|
82
|
+
### Engine
|
|
83
|
+
- engine.js
|
|
84
|
+
- engine/lifecycle.js
|
|
85
|
+
|
|
86
|
+
## 0.1.117 (2026-03-21)
|
|
87
|
+
|
|
88
|
+
### Dashboard
|
|
89
|
+
- dashboard.html
|
|
90
|
+
|
|
91
|
+
## 0.1.116 (2026-03-21)
|
|
92
|
+
|
|
93
|
+
### Dashboard
|
|
94
|
+
- dashboard.js
|
|
95
|
+
|
|
96
|
+
## 0.1.115 (2026-03-21)
|
|
97
|
+
|
|
98
|
+
### Engine
|
|
99
|
+
- engine.js
|
|
100
|
+
- engine/llm.js
|
|
101
|
+
|
|
102
|
+
### Dashboard
|
|
103
|
+
- dashboard.html
|
|
104
|
+
- dashboard.js
|
|
105
|
+
|
|
106
|
+
### Other
|
|
107
|
+
- test/unit.test.js
|
|
108
|
+
|
|
109
|
+
## 0.1.114 (2026-03-21)
|
|
110
|
+
|
|
111
|
+
### Engine
|
|
112
|
+
- engine/queries.js
|
|
113
|
+
|
|
114
|
+
### Dashboard
|
|
115
|
+
- dashboard.html
|
|
116
|
+
|
|
117
|
+
### Other
|
|
118
|
+
- test/unit.test.js
|
|
119
|
+
|
|
120
|
+
## 0.1.113 (2026-03-21)
|
|
121
|
+
|
|
122
|
+
### Engine
|
|
123
|
+
- engine.js
|
|
124
|
+
- engine/lifecycle.js
|
|
125
|
+
- engine/queries.js
|
|
126
|
+
|
|
127
|
+
### Dashboard
|
|
128
|
+
- dashboard.html
|
|
129
|
+
- dashboard.js
|
|
130
|
+
|
|
131
|
+
### Playbooks
|
|
132
|
+
- plan-to-prd.md
|
|
133
|
+
|
|
134
|
+
### Documentation
|
|
135
|
+
- deprecated.json
|
|
136
|
+
- index.html
|
|
137
|
+
|
|
138
|
+
### Other
|
|
139
|
+
- .claude/skills/cleanup-deprecated/SKILL.md
|
|
140
|
+
- CLAUDE.md
|
|
141
|
+
- TODO.md
|
|
142
|
+
- test/demo.html
|
|
143
|
+
- test/seed-demo-data.js
|
|
144
|
+
- test/unit.test.js
|
|
145
|
+
|
|
146
|
+
## 0.1.112 (2026-03-21)
|
|
147
|
+
|
|
148
|
+
### Engine
|
|
149
|
+
- engine/ado.js
|
|
150
|
+
|
|
151
|
+
### Dashboard
|
|
152
|
+
- dashboard.html
|
|
153
|
+
- dashboard.js
|
|
154
|
+
|
|
155
|
+
### Other
|
|
156
|
+
- test/unit.test.js
|
|
157
|
+
|
|
158
|
+
## 0.1.111 (2026-03-20)
|
|
159
|
+
|
|
160
|
+
### Engine
|
|
161
|
+
- engine.js
|
|
162
|
+
|
|
163
|
+
## 0.1.110 (2026-03-20)
|
|
164
|
+
|
|
165
|
+
### Engine
|
|
166
|
+
- engine.js
|
|
167
|
+
|
|
168
|
+
## 0.1.109 (2026-03-20)
|
|
169
|
+
|
|
170
|
+
### Engine
|
|
171
|
+
- engine.js
|
|
172
|
+
|
|
173
|
+
## 0.1.108 (2026-03-20)
|
|
174
|
+
|
|
175
|
+
### Engine
|
|
176
|
+
- engine.js
|
|
177
|
+
|
|
178
|
+
### Other
|
|
179
|
+
- test/unit.test.js
|
|
180
|
+
|
|
181
|
+
## 0.1.107 (2026-03-20)
|
|
182
|
+
|
|
183
|
+
### Engine
|
|
184
|
+
- engine.js
|
|
185
|
+
|
|
186
|
+
### Other
|
|
187
|
+
- test/unit.test.js
|
|
188
|
+
|
|
189
|
+
## 0.1.106 (2026-03-20)
|
|
190
|
+
|
|
191
|
+
### Engine
|
|
192
|
+
- engine/queries.js
|
|
193
|
+
|
|
194
|
+
### Other
|
|
195
|
+
- test/unit.test.js
|
|
196
|
+
|
|
197
|
+
## 0.1.105 (2026-03-20)
|
|
198
|
+
|
|
199
|
+
### Engine
|
|
200
|
+
- engine.js
|
|
201
|
+
|
|
202
|
+
### Other
|
|
203
|
+
- test/unit.test.js
|
|
204
|
+
|
|
205
|
+
## 0.1.104 (2026-03-20)
|
|
206
|
+
|
|
207
|
+
### Engine
|
|
208
|
+
- engine.js
|
|
209
|
+
|
|
210
|
+
### Other
|
|
211
|
+
- test/unit.test.js
|
|
212
|
+
|
|
213
|
+
## 0.1.103 (2026-03-20)
|
|
214
|
+
|
|
215
|
+
### Other
|
|
216
|
+
- bin/minions.js
|
|
217
|
+
- test/unit.test.js
|
|
218
|
+
|
|
219
|
+
## 0.1.102 (2026-03-20)
|
|
220
|
+
|
|
221
|
+
### Dashboard
|
|
222
|
+
- dashboard.html
|
|
223
|
+
|
|
224
|
+
## 0.1.101 (2026-03-20)
|
|
225
|
+
|
|
226
|
+
### Dashboard
|
|
227
|
+
- dashboard.html
|
|
228
|
+
- dashboard.js
|
|
229
|
+
|
|
230
|
+
## 0.1.100 (2026-03-20)
|
|
231
|
+
|
|
232
|
+
### Engine
|
|
233
|
+
- engine.js
|
|
234
|
+
|
|
235
|
+
### Other
|
|
236
|
+
- test/unit.test.js
|
|
237
|
+
|
|
238
|
+
## 0.1.99 (2026-03-20)
|
|
239
|
+
|
|
240
|
+
### Engine
|
|
241
|
+
- engine.js
|
|
242
|
+
|
|
243
|
+
### Other
|
|
244
|
+
- test/unit.test.js
|
|
245
|
+
|
|
246
|
+
## 0.1.98 (2026-03-20)
|
|
247
|
+
|
|
248
|
+
### Engine
|
|
249
|
+
- engine/lifecycle.js
|
|
250
|
+
|
|
251
|
+
### Other
|
|
252
|
+
- test/unit.test.js
|
|
253
|
+
|
|
254
|
+
## 0.1.97 (2026-03-20)
|
|
255
|
+
|
|
256
|
+
### Engine
|
|
257
|
+
- engine.js
|
|
258
|
+
- engine/shared.js
|
|
259
|
+
|
|
260
|
+
### Dashboard
|
|
261
|
+
- dashboard.js
|
|
262
|
+
|
|
263
|
+
### Other
|
|
264
|
+
- test/unit.test.js
|
|
265
|
+
|
|
266
|
+
## 0.1.96 (2026-03-20)
|
|
267
|
+
|
|
268
|
+
### Engine
|
|
269
|
+
- engine.js
|
|
270
|
+
|
|
271
|
+
### Other
|
|
272
|
+
- test/unit.test.js
|
|
273
|
+
|
|
274
|
+
## 0.1.95 (2026-03-20)
|
|
275
|
+
|
|
276
|
+
### Engine
|
|
277
|
+
- engine.js
|
|
278
|
+
- engine/shared.js
|
|
279
|
+
|
|
280
|
+
### Dashboard
|
|
281
|
+
- dashboard.html
|
|
282
|
+
- dashboard.js
|
|
283
|
+
|
|
284
|
+
### Documentation
|
|
285
|
+
- README.md
|
|
286
|
+
- auto-discovery.md
|
|
287
|
+
|
|
288
|
+
### Other
|
|
289
|
+
- test/unit.test.js
|
|
290
|
+
|
|
291
|
+
## 0.1.94 (2026-03-20)
|
|
292
|
+
|
|
293
|
+
### Engine
|
|
294
|
+
- engine.js
|
|
295
|
+
- engine/shared.js
|
|
296
|
+
|
|
297
|
+
### Dashboard
|
|
298
|
+
- dashboard.html
|
|
299
|
+
- dashboard.js
|
|
300
|
+
|
|
301
|
+
### Documentation
|
|
302
|
+
- README.md
|
|
303
|
+
- auto-discovery.md
|
|
304
|
+
|
|
305
|
+
### Other
|
|
306
|
+
- test/unit.test.js
|
|
307
|
+
|
|
308
|
+
## 0.1.93 (2026-03-20)
|
|
309
|
+
|
|
310
|
+
### Dashboard
|
|
311
|
+
- dashboard.html
|
|
312
|
+
|
|
313
|
+
### Other
|
|
314
|
+
- test/unit.test.js
|
|
315
|
+
|
|
316
|
+
## 0.1.92 (2026-03-19)
|
|
317
|
+
|
|
318
|
+
### Dashboard
|
|
319
|
+
- dashboard.html
|
|
320
|
+
|
|
321
|
+
### Other
|
|
322
|
+
- test/unit.test.js
|
|
323
|
+
|
|
324
|
+
## 0.1.91 (2026-03-19)
|
|
325
|
+
|
|
326
|
+
### Engine
|
|
327
|
+
- engine.js
|
|
328
|
+
|
|
329
|
+
### Other
|
|
330
|
+
- test/unit.test.js
|
|
331
|
+
|
|
332
|
+
## 0.1.90 (2026-03-19)
|
|
333
|
+
|
|
334
|
+
### Documentation
|
|
335
|
+
- auto-discovery.md
|
|
336
|
+
|
|
337
|
+
## 0.1.89 (2026-03-19)
|
|
338
|
+
|
|
339
|
+
### Other
|
|
340
|
+
- bin/minions.js
|
|
341
|
+
- test/unit.test.js
|
|
342
|
+
|
|
343
|
+
## 0.1.88 (2026-03-19)
|
|
344
|
+
|
|
345
|
+
### Engine
|
|
346
|
+
- engine/shared.js
|
|
347
|
+
|
|
348
|
+
### Other
|
|
349
|
+
- minions.js
|
|
350
|
+
- test/unit.test.js
|
|
351
|
+
|
|
352
|
+
## 0.1.87 (2026-03-19)
|
|
353
|
+
|
|
354
|
+
### Dashboard
|
|
355
|
+
- dashboard.html
|
|
356
|
+
|
|
357
|
+
### Other
|
|
358
|
+
- test/unit.test.js
|
|
359
|
+
|
|
360
|
+
## 0.1.86 (2026-03-19)
|
|
361
|
+
|
|
362
|
+
### Dashboard
|
|
363
|
+
- dashboard.html
|
|
364
|
+
|
|
365
|
+
### Other
|
|
366
|
+
- test/unit.test.js
|
|
367
|
+
|
|
368
|
+
## 0.1.85 (2026-03-19)
|
|
369
|
+
|
|
370
|
+
### Dashboard
|
|
371
|
+
- dashboard.html
|
|
372
|
+
|
|
373
|
+
## 0.1.84 (2026-03-19)
|
|
374
|
+
|
|
375
|
+
### Dashboard
|
|
376
|
+
- dashboard.html
|
|
377
|
+
|
|
378
|
+
### Other
|
|
379
|
+
- test/unit.test.js
|
|
380
|
+
|
|
381
|
+
## 0.1.83 (2026-03-19)
|
|
382
|
+
|
|
383
|
+
### Other
|
|
384
|
+
- bin/minions.js
|
|
385
|
+
- test/unit.test.js
|
|
386
|
+
|
|
387
|
+
## 0.1.81 (2026-03-19)
|
|
388
|
+
|
|
389
|
+
### Engine
|
|
390
|
+
- engine.js
|
|
391
|
+
- engine/cli.js
|
|
392
|
+
- engine/queries.js
|
|
393
|
+
|
|
394
|
+
### Documentation
|
|
395
|
+
- README.md
|
|
396
|
+
- auto-discovery.md
|
|
397
|
+
- engine-restart.md
|
|
398
|
+
|
|
399
|
+
### Other
|
|
400
|
+
- test/unit.test.js
|
|
401
|
+
|
|
402
|
+
## 0.1.80 (2026-03-19)
|
|
403
|
+
|
|
404
|
+
### Engine
|
|
405
|
+
- engine.js
|
|
406
|
+
- engine/lifecycle.js
|
|
407
|
+
|
|
408
|
+
### Other
|
|
409
|
+
- test/unit.test.js
|
|
410
|
+
|
|
411
|
+
## 0.1.79 (2026-03-19)
|
|
412
|
+
|
|
413
|
+
### Dashboard
|
|
414
|
+
- dashboard.html
|
|
415
|
+
- dashboard.js
|
|
416
|
+
|
|
417
|
+
### Documentation
|
|
418
|
+
- 01-dashboard-overview.gif
|
|
419
|
+
- 02-command-center.gif
|
|
420
|
+
- 03-work-items.gif
|
|
421
|
+
- 04-plan-docchat.gif
|
|
422
|
+
- 05-prd-progress.gif
|
|
423
|
+
- 06-inbox-metrics.gif
|
|
424
|
+
- index.html
|
|
425
|
+
|
|
426
|
+
### Other
|
|
427
|
+
- bin/minions.js
|
|
428
|
+
- minions.js
|
|
429
|
+
|
|
430
|
+
## 0.1.78 (2026-03-19)
|
|
431
|
+
|
|
432
|
+
### Other
|
|
433
|
+
- minions.js
|
|
434
|
+
|
|
435
|
+
## 0.1.77 (2026-03-19)
|
|
436
|
+
|
|
437
|
+
### Other
|
|
438
|
+
- minions.js
|
|
439
|
+
|
|
440
|
+
## 0.1.76 (2026-03-19)
|
|
441
|
+
|
|
442
|
+
### Dashboard
|
|
443
|
+
- dashboard.js
|
|
444
|
+
|
|
445
|
+
## 0.1.75 (2026-03-19)
|
|
446
|
+
|
|
447
|
+
### Other
|
|
448
|
+
- minions.js
|
|
449
|
+
|
|
450
|
+
## 0.1.74 (2026-03-19)
|
|
451
|
+
|
|
452
|
+
### Dashboard
|
|
453
|
+
- dashboard.js
|
|
454
|
+
|
|
455
|
+
### Other
|
|
456
|
+
- test/unit.test.js
|
|
457
|
+
|
|
458
|
+
## 0.1.73 (2026-03-19)
|
|
459
|
+
|
|
460
|
+
### Other
|
|
461
|
+
- test/demo-screenshots/01-dashboard-overview.gif
|
|
462
|
+
- test/demo-screenshots/02-command-center.gif
|
|
463
|
+
- test/demo-screenshots/03-work-items.gif
|
|
464
|
+
- test/demo-screenshots/04-plan-docchat.gif
|
|
465
|
+
- test/demo-screenshots/05-prd-progress.gif
|
|
466
|
+
- test/demo-screenshots/06-inbox-metrics.gif
|
|
467
|
+
- test/seed-demo-data.js
|
|
468
|
+
|
|
469
|
+
## 0.1.72 (2026-03-19)
|
|
470
|
+
|
|
471
|
+
### Engine
|
|
472
|
+
- engine/queries.js
|
|
473
|
+
|
|
474
|
+
### Other
|
|
475
|
+
- test/demo-screenshots/01-dashboard-overview.gif
|
|
476
|
+
- test/demo-screenshots/02-command-center.gif
|
|
477
|
+
- test/demo-screenshots/03-work-items.gif
|
|
478
|
+
- test/demo-screenshots/04-plan-docchat.gif
|
|
479
|
+
- test/demo-screenshots/05-prd-progress.gif
|
|
480
|
+
- test/demo-screenshots/06-inbox-metrics.gif
|
|
481
|
+
- test/demo.html
|
|
482
|
+
- test/record-demo.js
|
|
483
|
+
|
|
484
|
+
## 0.1.71 (2026-03-19)
|
|
485
|
+
|
|
486
|
+
### Other
|
|
487
|
+
- test/demo-screenshots/01-dashboard-overview.png
|
|
488
|
+
- test/demo-screenshots/02-dashboard-workitems-prd.png
|
|
489
|
+
- test/demo-screenshots/03-dashboard-bottom.png
|
|
490
|
+
- test/demo-screenshots/04-cc-plan-request.png
|
|
491
|
+
- test/demo-screenshots/05-cc-work-item.png
|
|
492
|
+
- test/demo-screenshots/06-work-items-table.png
|
|
493
|
+
- test/demo-screenshots/07-work-item-retry-button.png
|
|
494
|
+
- test/demo-screenshots/08-plans-section.png
|
|
495
|
+
- test/demo-screenshots/09-plan-detail-modal.png
|
|
496
|
+
- test/demo-screenshots/10-prd-progress.png
|
|
497
|
+
- test/demo-screenshots/11-inbox-section.png
|
|
498
|
+
- test/demo-screenshots/12-dispatch-queue.png
|
|
499
|
+
- test/demo-screenshots/13-agent-metrics.png
|
|
500
|
+
- test/demo-screenshots/14-full-page.png
|
|
501
|
+
- test/demo.html
|
|
502
|
+
- test/record-demo.js
|
|
503
|
+
- test/scenarios.md
|
|
504
|
+
- test/seed-demo-data.js
|
|
505
|
+
|
|
506
|
+
## 0.1.70 (2026-03-19)
|
|
507
|
+
|
|
508
|
+
### Engine
|
|
509
|
+
- engine.js
|
|
510
|
+
- engine/lifecycle.js
|
|
511
|
+
|
|
512
|
+
### Other
|
|
513
|
+
- test/unit.test.js
|
|
514
|
+
|
|
515
|
+
## 0.1.69 (2026-03-19)
|
|
516
|
+
|
|
517
|
+
### Engine
|
|
518
|
+
- engine.js
|
|
519
|
+
- engine/queries.js
|
|
520
|
+
- engine/shared.js
|
|
521
|
+
|
|
522
|
+
### Dashboard
|
|
523
|
+
- dashboard.js
|
|
524
|
+
|
|
525
|
+
## 0.1.68 (2026-03-19)
|
|
526
|
+
|
|
527
|
+
### Engine
|
|
528
|
+
- engine/queries.js
|
|
529
|
+
|
|
530
|
+
### Dashboard
|
|
531
|
+
- dashboard.html
|
|
532
|
+
- dashboard.js
|
|
533
|
+
|
|
534
|
+
## 0.1.67 (2026-03-19)
|
|
535
|
+
|
|
536
|
+
### Engine
|
|
537
|
+
- engine.js
|
|
538
|
+
|
|
539
|
+
### Dashboard
|
|
540
|
+
- dashboard.js
|
|
541
|
+
|
|
542
|
+
### Other
|
|
543
|
+
- test/unit.test.js
|
|
544
|
+
|
|
545
|
+
## 0.1.66 (2026-03-19)
|
|
546
|
+
|
|
547
|
+
### Engine
|
|
548
|
+
- engine.js
|
|
549
|
+
|
|
550
|
+
### Dashboard
|
|
551
|
+
- dashboard.html
|
|
552
|
+
- dashboard.js
|
|
553
|
+
|
|
554
|
+
### Other
|
|
555
|
+
- test/unit.test.js
|
|
556
|
+
|
|
557
|
+
## 0.1.65 (2026-03-19)
|
|
558
|
+
|
|
559
|
+
### Dashboard
|
|
560
|
+
- dashboard.html
|
|
561
|
+
- dashboard.js
|
|
562
|
+
|
|
563
|
+
## 0.1.64 (2026-03-19)
|
|
564
|
+
|
|
565
|
+
### Engine
|
|
566
|
+
- engine.js
|
|
567
|
+
- engine/cli.js
|
|
568
|
+
- engine/lifecycle.js
|
|
569
|
+
|
|
570
|
+
### Dashboard
|
|
571
|
+
- dashboard.js
|
|
572
|
+
|
|
573
|
+
### Playbooks
|
|
574
|
+
- plan-to-prd.md
|
|
575
|
+
|
|
576
|
+
### Other
|
|
577
|
+
- test/unit.test.js
|
|
578
|
+
|
|
579
|
+
## 0.1.63 (2026-03-19)
|
|
580
|
+
|
|
581
|
+
### Engine
|
|
582
|
+
- engine/ado.js
|
|
583
|
+
- engine/github.js
|
|
584
|
+
|
|
585
|
+
### Other
|
|
586
|
+
- test/unit.test.js
|
|
587
|
+
|
|
588
|
+
## 0.1.62 (2026-03-19)
|
|
589
|
+
|
|
590
|
+
### Engine
|
|
591
|
+
- engine.js
|
|
592
|
+
- engine/cli.js
|
|
593
|
+
- engine/consolidation.js
|
|
594
|
+
|
|
595
|
+
### Dashboard
|
|
596
|
+
- dashboard.js
|
|
597
|
+
|
|
598
|
+
### Documentation
|
|
599
|
+
- auto-discovery.md
|
|
600
|
+
- command-center.md
|
|
601
|
+
- self-improvement.md
|
|
602
|
+
|
|
603
|
+
## 0.1.61 (2026-03-19)
|
|
604
|
+
|
|
605
|
+
### Documentation
|
|
606
|
+
- README.md
|
|
607
|
+
- auto-discovery.md
|
|
608
|
+
- command-center.md
|
|
609
|
+
- human-vs-automated.md
|
|
610
|
+
- self-improvement.md
|
|
611
|
+
|
|
612
|
+
## 0.1.60 (2026-03-19)
|
|
613
|
+
|
|
614
|
+
### Engine
|
|
615
|
+
- engine/check-status.js
|
|
616
|
+
|
|
617
|
+
### Other
|
|
618
|
+
- minions.js
|
|
619
|
+
- test/unit.test.js
|
|
620
|
+
|
|
621
|
+
## 0.1.59 (2026-03-19)
|
|
622
|
+
|
|
623
|
+
### Engine
|
|
624
|
+
- engine.js
|
|
625
|
+
- engine/lifecycle.js
|
|
626
|
+
- engine/shared.js
|
|
627
|
+
|
|
628
|
+
### Other
|
|
629
|
+
- .claude/skills/run-tests/SKILL.md
|
|
630
|
+
- test/minions-tests.js
|
|
631
|
+
- test/unit.test.js
|
|
632
|
+
|
|
633
|
+
## 0.1.58 (2026-03-19)
|
|
634
|
+
|
|
635
|
+
### Engine
|
|
636
|
+
- engine.js
|
|
637
|
+
- engine/ado-mcp-wrapper.js
|
|
638
|
+
- engine/ado.js
|
|
639
|
+
- engine/check-status.js
|
|
640
|
+
- engine/cli.js
|
|
641
|
+
- engine/consolidation.js
|
|
642
|
+
- engine/github.js
|
|
643
|
+
- engine/lifecycle.js
|
|
644
|
+
- engine/llm.js
|
|
645
|
+
- engine/queries.js
|
|
646
|
+
- engine/shared.js
|
|
647
|
+
- engine/spawn-agent.js
|
|
648
|
+
|
|
649
|
+
### Dashboard
|
|
650
|
+
- dashboard.html
|
|
651
|
+
- dashboard.js
|
|
652
|
+
|
|
653
|
+
### Playbooks
|
|
654
|
+
- ask.md
|
|
655
|
+
- build-and-test.md
|
|
656
|
+
- explore.md
|
|
657
|
+
- fix.md
|
|
658
|
+
- implement-shared.md
|
|
659
|
+
- implement.md
|
|
660
|
+
- plan-to-prd.md
|
|
661
|
+
- plan.md
|
|
662
|
+
- review.md
|
|
663
|
+
- test.md
|
|
664
|
+
- verify.md
|
|
665
|
+
- work-item.md
|
|
666
|
+
|
|
667
|
+
### Agents
|
|
668
|
+
- agents/dallas/charter.md
|
|
669
|
+
- agents/lambert/charter.md
|
|
670
|
+
- agents/ralph/charter.md
|
|
671
|
+
- agents/rebecca/charter.md
|
|
672
|
+
- agents/ripley/charter.md
|
|
673
|
+
|
|
674
|
+
### Documentation
|
|
675
|
+
- README.md
|
|
676
|
+
- auto-discovery.md
|
|
677
|
+
- blog-first-successful-dispatch.md
|
|
678
|
+
- command-center.md
|
|
679
|
+
- distribution.md
|
|
680
|
+
- engine-restart.md
|
|
681
|
+
- human-vs-automated.md
|
|
682
|
+
- plan-lifecycle.md
|
|
683
|
+
- self-improvement.md
|
|
684
|
+
|
|
685
|
+
### Other
|
|
686
|
+
- .github/workflows/publish.yml
|
|
687
|
+
- TODO.md
|
|
688
|
+
- bin/minions.js
|
|
689
|
+
- config.template.json
|
|
690
|
+
- playwright.config.js
|
|
691
|
+
- routing.md
|
|
692
|
+
- minions.js
|
|
693
|
+
- team.md
|
|
694
|
+
- test/playwright/accept-baseline.js
|
|
695
|
+
- test/playwright/dashboard.spec.js
|
|
696
|
+
- test/playwright/reporter.js
|
|
697
|
+
- test/pre-commit-hook.js
|
|
698
|
+
- test/minions-tests.js
|
|
699
|
+
|
|
700
|
+
## 0.1.57 (2026-03-18)
|
|
701
|
+
|
|
702
|
+
### Engine
|
|
703
|
+
- engine.js
|
|
704
|
+
- engine/ado-mcp-wrapper.js
|
|
705
|
+
- engine/ado.js
|
|
706
|
+
- engine/check-status.js
|
|
707
|
+
- engine/cli.js
|
|
708
|
+
- engine/consolidation.js
|
|
709
|
+
- engine/github.js
|
|
710
|
+
- engine/lifecycle.js
|
|
711
|
+
- engine/llm.js
|
|
712
|
+
- engine/queries.js
|
|
713
|
+
- engine/shared.js
|
|
714
|
+
- engine/spawn-agent.js
|
|
715
|
+
|
|
716
|
+
### Dashboard
|
|
717
|
+
- dashboard.html
|
|
718
|
+
- dashboard.js
|
|
719
|
+
|
|
720
|
+
### Playbooks
|
|
721
|
+
- ask.md
|
|
722
|
+
- build-and-test.md
|
|
723
|
+
- explore.md
|
|
724
|
+
- fix.md
|
|
725
|
+
- implement-shared.md
|
|
726
|
+
- implement.md
|
|
727
|
+
- plan-to-prd.md
|
|
728
|
+
- plan.md
|
|
729
|
+
- review.md
|
|
730
|
+
- test.md
|
|
731
|
+
- verify.md
|
|
732
|
+
- work-item.md
|
|
733
|
+
|
|
734
|
+
### Agents
|
|
735
|
+
- agents/dallas/charter.md
|
|
736
|
+
- agents/lambert/charter.md
|
|
737
|
+
- agents/ralph/charter.md
|
|
738
|
+
- agents/rebecca/charter.md
|
|
739
|
+
- agents/ripley/charter.md
|
|
740
|
+
|
|
741
|
+
### Documentation
|
|
742
|
+
- README.md
|
|
743
|
+
- auto-discovery.md
|
|
744
|
+
- blog-first-successful-dispatch.md
|
|
745
|
+
- command-center.md
|
|
746
|
+
- distribution.md
|
|
747
|
+
- engine-restart.md
|
|
748
|
+
- human-vs-automated.md
|
|
749
|
+
- plan-lifecycle.md
|
|
750
|
+
- self-improvement.md
|
|
751
|
+
|
|
752
|
+
### Other
|
|
753
|
+
- .github/workflows/publish.yml
|
|
754
|
+
- TODO.md
|
|
755
|
+
- bin/minions.js
|
|
756
|
+
- config.template.json
|
|
757
|
+
- playwright.config.js
|
|
758
|
+
- routing.md
|
|
759
|
+
- minions.js
|
|
760
|
+
- team.md
|
|
761
|
+
- test/playwright/accept-baseline.js
|
|
762
|
+
- test/playwright/dashboard.spec.js
|
|
763
|
+
- test/playwright/reporter.js
|
|
764
|
+
- test/pre-commit-hook.js
|
|
765
|
+
- test/minions-tests.js
|
|
766
|
+
|
|
767
|
+
All notable changes to Minions are documented here. Versions are auto-published to npm on each sync.
|
|
768
|
+
|
|
769
|
+
## 0.2.x (2026-03-15)
|
|
770
|
+
|
|
771
|
+
### Upgrade System
|
|
772
|
+
- **Smart upgrade** — `minions init --force` now copies new files, updates engine code, and preserves user customizations
|
|
773
|
+
- **Version tracking** — `.minions-version` file tracks installed version for upgrade detection
|
|
774
|
+
- **`minions version`** — shows installed vs package version, prompts to upgrade if outdated
|
|
775
|
+
- **Upgrade summary** — shows what was updated, added, and preserved during upgrade
|
|
776
|
+
- **New files auto-added** — new playbooks, charters, and docs added in updates are automatically installed
|
|
777
|
+
|
|
778
|
+
### Engine
|
|
779
|
+
- **`/plan` command** — full pipeline: feature description → PRD items → agent dispatch across projects
|
|
780
|
+
- **Shared feature branches** — dependency-aware dispatch ensures agents work on the same branch
|
|
781
|
+
- **Human PR feedback loop** — `@minions` comments on PRs trigger agent fix tasks
|
|
782
|
+
- **Minions-level PRD** — multi-project PRD support
|
|
783
|
+
- **`/ask` command** — ask questions via Command Center, get answers in inbox
|
|
784
|
+
- **Auto-detect user questions** — drop `ask-*.md` files in inbox, engine routes to an agent
|
|
785
|
+
- **Solo reviewer skip** — `@minions` keyword not required when you're the only reviewer
|
|
786
|
+
- **Knowledge base** — categorized agent learnings stored in `knowledge/` (architecture, conventions, reviews, etc.)
|
|
787
|
+
- **Command Center** — persistent multi-turn Sonnet sessions with full minions awareness and tool access
|
|
788
|
+
- **Zombie engine elimination** — EPERM file lock fixes, stale PID detection, Windows-safe atomic writes
|
|
789
|
+
- **ADO token auto-refresh** — handles expired Azure DevOps authentication tokens
|
|
790
|
+
- **Cooldown system** — prevents re-dispatching recently completed work
|
|
791
|
+
- **Post-merge cleanup** — automatically marks work items done when PRs merge
|
|
792
|
+
- **Fan-out timeout** — configurable timeout for parallel multi-agent dispatches
|
|
793
|
+
|
|
794
|
+
### Dashboard
|
|
795
|
+
- **Responsive layout** — tablet and mobile breakpoints
|
|
796
|
+
- **Mention popup** — Tab cycling, wrap-around navigation, repositioned below input
|
|
797
|
+
- **Ghost-style send button** — cleaner Command Center UI
|
|
798
|
+
- **Platform-aware launches** — browser and file manager commands adapt to OS
|
|
799
|
+
- **Health check endpoint** — `/api/health` for monitoring
|
|
800
|
+
|
|
801
|
+
### Distribution
|
|
802
|
+
- **npm package `@yemi33/minions`** — install with `npm install -g @yemi33/minions`
|
|
803
|
+
- **Unified CLI** — single `minions` command for all operations
|
|
804
|
+
- **GitHub Action** — auto-publishes to npm on every push to master
|
|
805
|
+
- **ADO integration docs** — Azure DevOps MCP server setup instructions in README
|
|
806
|
+
|
|
807
|
+
## 0.1.0 (2026-03-11)
|
|
808
|
+
|
|
809
|
+
### Initial Release
|
|
810
|
+
- Five autonomous agents: Ripley (Lead), Dallas (Engineer), Lambert (Analyst), Rebecca (Architect), Ralph (Engineer)
|
|
811
|
+
- Engine with 60s tick cycle, auto-discovery from PRs/PRDs/work items, priority-based dispatch
|
|
812
|
+
- Web dashboard with live output streaming, agent cards, work items, PRD tracker, PR tracker
|
|
813
|
+
- Playbooks: implement, review, fix, explore, test, build-and-test, plan-to-prd, work-item
|
|
814
|
+
- Self-improvement loop: learnings inbox → consolidated notes, per-agent history, review feedback, quality metrics, auto-extracted skills
|
|
815
|
+
- Git worktree workflow for all code changes
|
|
816
|
+
- MCP server auto-sync from Claude Code settings
|
|
817
|
+
- Fan-out dispatch for parallel multi-agent tasks
|
|
818
|
+
- Heartbeat monitoring and automated cleanup
|
|
819
|
+
|