@yemi33/minions 0.1.720 → 0.1.721
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 +5 -0
- package/dashboard/js/render-plans.js +1 -1
- package/dashboard.html +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -414,7 +414,7 @@ function _renderPlanModal(normalizedFile, raw, lastMod) {
|
|
|
414
414
|
const items = (plan.missing_features || []).map((f, i) =>
|
|
415
415
|
(i + 1) + '. [' + f.id + '] ' + f.name + ' (' + (f.estimated_complexity || '?') + ', ' + (f.priority || '?') + ')' +
|
|
416
416
|
(f.depends_on?.length ? ' \u2192 depends on: ' + f.depends_on.join(', ') : '') +
|
|
417
|
-
'\n ' + (f.description || '')
|
|
417
|
+
'\n ' + (f.description || '') +
|
|
418
418
|
(f.acceptance_criteria?.length ? '\n Criteria: ' + f.acceptance_criteria.join('; ') : '')
|
|
419
419
|
).join('\n\n');
|
|
420
420
|
text = 'Project: ' + (plan.project || '?') +
|
package/dashboard.html
CHANGED
|
@@ -4273,7 +4273,7 @@ async function planView(file) {
|
|
|
4273
4273
|
const items = (plan.missing_features || []).map((f, i) =>
|
|
4274
4274
|
(i + 1) + '. [' + f.id + '] ' + f.name + ' (' + (f.estimated_complexity || '?') + ', ' + (f.priority || '?') + ')' +
|
|
4275
4275
|
(f.depends_on?.length ? ' → depends on: ' + f.depends_on.join(', ') : '') +
|
|
4276
|
-
'\n ' + (f.description || '')
|
|
4276
|
+
'\n ' + (f.description || '') +
|
|
4277
4277
|
(f.acceptance_criteria?.length ? '\n Criteria: ' + f.acceptance_criteria.join('; ') : '')
|
|
4278
4278
|
).join('\n\n');
|
|
4279
4279
|
text = 'Project: ' + (plan.project || '?') +
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.721",
|
|
4
4
|
"description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
|
|
5
5
|
"bin": {
|
|
6
6
|
"minions": "bin/minions.js"
|