@yemi33/minions 0.1.1851 → 0.1.1852

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,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1852 (2026-05-10)
4
+
5
+ ### Fixes
6
+ - use DONE_STATUSES constant in getAgents lastAction (#2314)
7
+
3
8
  ## 0.1.1851 (2026-05-10)
4
9
 
5
10
  ### Fixes
package/engine/queries.js CHANGED
@@ -537,7 +537,7 @@ function getAgents(config) {
537
537
 
538
538
  let lastAction = 'Waiting for assignment';
539
539
  if (s.status === 'working') lastAction = s._runningToolDescription ? `Running: ${s._runningToolDescription}` : `Working: ${s.task}`;
540
- else if (s.status === 'done') lastAction = `Done: ${s.task}`;
540
+ else if (DONE_STATUSES.has(s.status)) lastAction = `Done: ${s.task}`;
541
541
  else if (s.status === 'error') lastAction = `Error: ${s.task}`;
542
542
  else if (steeringInboxFiles.length > 0) {
543
543
  const lastSteer = steeringInboxFiles[steeringInboxFiles.length - 1];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1851",
3
+ "version": "0.1.1852",
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"