@yemi33/minions 0.1.195 → 0.1.196

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.195 (2026-04-02)
3
+ ## 0.1.196 (2026-04-02)
4
4
 
5
5
  ### Engine
6
6
  - engine/ado.js
package/engine/queries.js CHANGED
@@ -287,7 +287,14 @@ function getPullRequests(config) {
287
287
  }
288
288
  }
289
289
  }
290
- allPrs.sort((a, b) => (b.created || '').localeCompare(a.created || ''));
290
+ allPrs.sort((a, b) => {
291
+ const dateComp = (b.created || '').localeCompare(a.created || '');
292
+ if (dateComp !== 0) return dateComp;
293
+ // Same date — sort by PR number descending (newest first)
294
+ const aNum = parseInt((a.id || '').replace(/\D/g, '')) || 0;
295
+ const bNum = parseInt((b.id || '').replace(/\D/g, '')) || 0;
296
+ return bNum - aNum;
297
+ });
291
298
  return allPrs;
292
299
  }
293
300
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.195",
3
+ "version": "0.1.196",
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"