@yemi33/minions 0.1.1747 → 0.1.1748
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 +6 -5
- package/engine/copilot-models.json +1 -1
- package/engine/lifecycle.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1748 (2026-05-06)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
|
-
-
|
|
6
|
+
- guard w.title.replace against null/undefined titles (#2120)
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
## 0.1.1746 (2026-05-06)
|
|
9
|
+
|
|
10
|
+
### Fixes
|
|
11
|
+
- treat null branch-change as unconfirmed (#2096) (#2115)
|
|
11
12
|
|
|
12
13
|
## 0.1.1745 (2026-05-06)
|
|
13
14
|
|
package/engine/lifecycle.js
CHANGED
|
@@ -134,8 +134,8 @@ function checkPlanCompletion(meta, config) {
|
|
|
134
134
|
uniquePrs.length ? `- **${uniquePrs.length}** PR(s) created` : '',
|
|
135
135
|
``,
|
|
136
136
|
`## Items`,
|
|
137
|
-
...doneItems.map(w => `- [done] ${w.id}: ${w.title.replace('Implement: ', '')}`),
|
|
138
|
-
...failedItems.map(w => `- [failed] ${w.id}: ${w.title.replace('Implement: ', '')}${w.failReason ? ' — ' + w.failReason : ''}`),
|
|
137
|
+
...doneItems.map(w => `- [done] ${w.id}: ${(w.title || 'Untitled').replace('Implement: ', '')}`),
|
|
138
|
+
...failedItems.map(w => `- [failed] ${w.id}: ${(w.title || 'Untitled').replace('Implement: ', '')}${w.failReason ? ' — ' + w.failReason : ''}`),
|
|
139
139
|
uniquePrs.length ? `\n## Pull Requests` : '',
|
|
140
140
|
...uniquePrs.map(pr => `- ${pr.id}: ${pr.title || ''} ${pr.url || ''}`),
|
|
141
141
|
].filter(Boolean).join('\n');
|
|
@@ -170,7 +170,7 @@ function checkPlanCompletion(meta, config) {
|
|
|
170
170
|
const id = 'PL-' + shared.uid();
|
|
171
171
|
const featureBranch = plan.feature_branch;
|
|
172
172
|
const mainBranch = shared.resolveMainBranch(primaryProject.localPath, primaryProject.mainBranch);
|
|
173
|
-
const itemSummary = doneItems.map(w => '- ' + w.id + ': ' + w.title.replace('Implement: ', '')).join('\n');
|
|
173
|
+
const itemSummary = doneItems.map(w => '- ' + w.id + ': ' + (w.title || 'Untitled').replace('Implement: ', '')).join('\n');
|
|
174
174
|
mutateWorkItems(wiPath, workItems => {
|
|
175
175
|
if (workItems.some(w => w.sourcePlan === planFile && w.itemType === 'pr')) return workItems;
|
|
176
176
|
workItems.push({
|
|
@@ -255,7 +255,7 @@ function checkPlanCompletion(meta, config) {
|
|
|
255
255
|
const itemsWithCriteria = doneItems.map(w => {
|
|
256
256
|
const planItem = plan.missing_features?.find(f => f.id === w.id);
|
|
257
257
|
const criteria = (planItem?.acceptance_criteria || []).map(c => ` - ${c}`).join('\n');
|
|
258
|
-
return `### ${w.id}: ${w.title.replace('Implement: ', '')}\n${criteria ? '**Acceptance Criteria:**\n' + criteria : ''}`;
|
|
258
|
+
return `### ${w.id}: ${(w.title || 'Untitled').replace('Implement: ', '')}\n${criteria ? '**Acceptance Criteria:**\n' + criteria : ''}`;
|
|
259
259
|
}).join('\n\n');
|
|
260
260
|
|
|
261
261
|
const prSummary = uniquePrs.map(pr =>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1748",
|
|
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"
|