@yemi33/minions 0.1.559 → 0.1.560
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 +2 -1
- package/engine/meeting.js +6 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.560 (2026-04-08)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- max retry cap and escalation for build fix cycles (#488)
|
|
7
7
|
|
|
8
8
|
### Fixes
|
|
9
|
+
- prevent duplicate conclude dispatches in meetings
|
|
9
10
|
- protect pinned KB items from sweep deduplication
|
|
10
11
|
|
|
11
12
|
## 0.1.557 (2026-04-08)
|
package/engine/meeting.js
CHANGED
|
@@ -85,6 +85,11 @@ function discoverMeetingWork(config) {
|
|
|
85
85
|
const agents = config.agents || {};
|
|
86
86
|
|
|
87
87
|
if (roundName === 'concluding') {
|
|
88
|
+
// Only one agent should conclude — skip if already concluded or any conclude dispatch is active
|
|
89
|
+
if (meeting.conclusion) continue;
|
|
90
|
+
const concludePrefix = `meeting-${meeting.id}-r${round}-`;
|
|
91
|
+
if ([...activeKeys].some(k => k.startsWith(concludePrefix))) continue;
|
|
92
|
+
|
|
88
93
|
// Pick the first non-busy participant as concluder (fallback to any participant)
|
|
89
94
|
const busyAgents = new Set(
|
|
90
95
|
(dispatch.active || []).map(d => d.agent).filter(Boolean)
|
|
@@ -92,7 +97,7 @@ function discoverMeetingWork(config) {
|
|
|
92
97
|
const concluder = meeting.participants.find(p => !busyAgents.has(p))
|
|
93
98
|
|| meeting.participants[0];
|
|
94
99
|
if (!concluder) continue;
|
|
95
|
-
const key =
|
|
100
|
+
const key = `${concludePrefix}${concluder}`;
|
|
96
101
|
if (activeKeys.has(key)) continue;
|
|
97
102
|
|
|
98
103
|
const humanNotes = (Array.isArray(meeting.humanNotes) ? meeting.humanNotes : []).map(n => '- ' + n).join('\n');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.560",
|
|
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"
|