@yemi33/minions 0.1.443 → 0.1.444
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 +4 -1
- package/engine/pipeline.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.444 (2026-04-06)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- notification dot on Notes & KB sidebar when sweep completes/fails
|
|
7
7
|
|
|
8
|
+
### Fixes
|
|
9
|
+
- pipeline tasks don't hardcode agent — any available agent picks up work
|
|
10
|
+
|
|
8
11
|
## 0.1.441 (2026-04-06)
|
|
9
12
|
|
|
10
13
|
### Fixes
|
package/engine/pipeline.js
CHANGED
|
@@ -156,7 +156,7 @@ async function executeStage(stage, run, pipeline, config) {
|
|
|
156
156
|
|
|
157
157
|
function executeTaskStage(stage, stageState, run, config) {
|
|
158
158
|
// Create work item(s) for the task
|
|
159
|
-
const items = stage.items || [{ title: stage.title, description: stage.description || '', type: stage.taskType || 'explore'
|
|
159
|
+
const items = stage.items || [{ title: stage.title, description: stage.description || '', type: stage.taskType || 'explore' }];
|
|
160
160
|
const count = stage.count || items.length;
|
|
161
161
|
const wiPath = path.join(__dirname, '..', 'work-items.json');
|
|
162
162
|
const workItems = safeJson(wiPath) || [];
|
|
@@ -172,7 +172,7 @@ function executeTaskStage(stage, stageState, run, config) {
|
|
|
172
172
|
description: item.description || stage.description || '',
|
|
173
173
|
type: item.type || stage.taskType || 'explore',
|
|
174
174
|
priority: item.priority || stage.priority || 'medium',
|
|
175
|
-
|
|
175
|
+
// No hardcoded agent — let engine routing assign any available agent
|
|
176
176
|
status: WI_STATUS.PENDING,
|
|
177
177
|
created: ts(),
|
|
178
178
|
createdBy: 'pipeline:' + run.pipelineId,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.444",
|
|
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"
|