@yemi33/minions 0.1.22 → 0.1.24

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.24 (2026-03-28)
4
+
5
+ ### Engine
6
+ - engine.js
7
+
8
+ ## 0.1.23 (2026-03-28)
9
+
10
+ ### Other
11
+ - test/unit.test.js
12
+
3
13
  ## 0.1.22 (2026-03-28)
4
14
 
5
15
  ### Dashboard
package/engine.js CHANGED
@@ -2522,11 +2522,11 @@ function discoverFromPrs(config, project) {
2522
2522
  if (item) { newWork.push(item); setCooldown(key); }
2523
2523
  }
2524
2524
 
2525
- // PRs with build failures — any agent can pick this up
2525
+ // PRs with build failures — route to author (has session context from implementing)
2526
2526
  if (pr.status === 'active' && pr.buildStatus === 'failing') {
2527
2527
  const key = `build-fix-${project?.name || 'default'}-${pr.id}`;
2528
2528
  if (isAlreadyDispatched(key) || isOnCooldown(key, cooldownMs)) continue;
2529
- const agentId = resolveAgent('fix', config);
2529
+ const agentId = resolveAgent('fix', config, pr.agent);
2530
2530
  if (!agentId) continue;
2531
2531
 
2532
2532
  const item = buildPrDispatch(agentId, config, project, pr, 'fix', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
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"