@yemi33/minions 0.1.157 → 0.1.158
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/shared.js +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/shared.js
CHANGED
|
@@ -520,7 +520,8 @@ function getPrLinks() {
|
|
|
520
520
|
// Derive from PR.prdItems (single source of truth)
|
|
521
521
|
const links = {};
|
|
522
522
|
try {
|
|
523
|
-
const
|
|
523
|
+
const config = safeJson(path.join(MINIONS_DIR, 'config.json')) || {};
|
|
524
|
+
const projects = getProjects(config);
|
|
524
525
|
for (const project of projects) {
|
|
525
526
|
const prs = safeJson(projectPrPath(project)) || [];
|
|
526
527
|
for (const pr of prs) {
|
|
@@ -536,7 +537,8 @@ function getPrLinks() {
|
|
|
536
537
|
function addPrLink(prId, itemId) {
|
|
537
538
|
if (!prId || !itemId) return;
|
|
538
539
|
try {
|
|
539
|
-
const
|
|
540
|
+
const config = safeJson(path.join(MINIONS_DIR, 'config.json')) || {};
|
|
541
|
+
const projects = getProjects(config);
|
|
540
542
|
for (const project of projects) { linkPrToItem(project, prId, itemId); }
|
|
541
543
|
} catch { /* optional */ }
|
|
542
544
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.158",
|
|
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"
|