@yemi33/minions 0.1.487 → 0.1.488
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/engine/queries.js +10 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/queries.js
CHANGED
|
@@ -588,9 +588,18 @@ function getWorkItems(config) {
|
|
|
588
588
|
}
|
|
589
589
|
}
|
|
590
590
|
|
|
591
|
+
// Cross-reference with dispatch (fill in agent from active dispatch if missing on work item)
|
|
592
|
+
const dispatch = getDispatch();
|
|
593
|
+
const activeByWiId = new Map((dispatch.active || []).map(d => [d.meta?.item?.id, d.agent]));
|
|
594
|
+
for (const item of allItems) {
|
|
595
|
+
if (item.status === 'dispatched' && !item.dispatched_to && !item.agent) {
|
|
596
|
+
const activeAgent = activeByWiId.get(item.id);
|
|
597
|
+
if (activeAgent) item.dispatched_to = activeAgent;
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
|
|
591
601
|
// Cross-reference with PRs
|
|
592
602
|
const allPrs = getPullRequests(config);
|
|
593
|
-
const dispatch = getDispatch();
|
|
594
603
|
for (const item of allItems) {
|
|
595
604
|
if (item._pr && !item._prUrl) {
|
|
596
605
|
const prId = String(item._pr).replace('PR-', '');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.488",
|
|
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"
|