@yemi33/minions 0.1.673 → 0.1.675
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 +4 -1
- package/engine/queries.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.675 (2026-04-09)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
6
|
- output log matching used work item ID suffix, not dispatch ID
|
|
7
7
|
|
|
8
|
+
### Other
|
|
9
|
+
- simplify: include featureBranch in artifacts, not just branch
|
|
10
|
+
|
|
8
11
|
## 0.1.672 (2026-04-09)
|
|
9
12
|
|
|
10
13
|
### Features
|
package/engine/queries.js
CHANGED
|
@@ -736,7 +736,7 @@ function getWorkItems(config) {
|
|
|
736
736
|
const matchNotes = _inboxFiles.filter(f => f.includes(agentId) && f.includes(item.id || '___'));
|
|
737
737
|
if (matchNotes.length > 0) arts.notes = matchNotes;
|
|
738
738
|
}
|
|
739
|
-
if (item.branch) arts.branch = item.branch;
|
|
739
|
+
if (item.branch || item.featureBranch) arts.branch = item.branch || item.featureBranch;
|
|
740
740
|
if (item.sourcePlan) arts.sourcePlan = item.sourcePlan;
|
|
741
741
|
if (item._pr) arts.pr = item._pr;
|
|
742
742
|
if (Object.keys(arts).length > 0) item._artifacts = arts;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.675",
|
|
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"
|