@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 +5 -0
- package/engine/queries.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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
|
|
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.
|
|
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"
|