@yemi33/minions 0.1.1049 → 0.1.1050
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/dashboard/js/settings.js +1 -1
- package/engine/shared.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1050 (2026-04-17)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- seed realActivityMap at spawn time, stamp pid in live-output (#1200)
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
- harden settings save and migrate pr poll config
|
|
11
11
|
|
|
12
12
|
### Other
|
|
13
|
+
- chore: raise default meeting round timeout
|
|
13
14
|
- Harden prompt context handling
|
|
14
15
|
- Harden loop watch conversion
|
|
15
16
|
- Add watches sidebar activity badge
|
package/dashboard/js/settings.js
CHANGED
|
@@ -45,7 +45,7 @@ async function openSettings() {
|
|
|
45
45
|
settingsField('Idle Alert', 'set-idleAlertMinutes', e.idleAlertMinutes || 15, 'min', 'Alert after agent idle this long') +
|
|
46
46
|
settingsField('Shutdown Timeout', 'set-shutdownTimeout', e.shutdownTimeout || 300000, 'ms', 'Max wait for agents during graceful shutdown') +
|
|
47
47
|
settingsField('Restart Grace Period', 'set-restartGracePeriod', e.restartGracePeriod || 1200000, 'ms', 'Grace period before orphan detection on restart') +
|
|
48
|
-
settingsField('Meeting Round Timeout', 'set-meetingRoundTimeout', e.meetingRoundTimeout ||
|
|
48
|
+
settingsField('Meeting Round Timeout', 'set-meetingRoundTimeout', e.meetingRoundTimeout || 900000, 'ms', 'Auto-advance meeting round after this') +
|
|
49
49
|
'</div>' +
|
|
50
50
|
'<div style="display:flex;flex-direction:column;gap:6px;margin-bottom:16px">' +
|
|
51
51
|
settingsToggle('Auto-approve Plans', 'set-autoApprovePlans', !!e.autoApprovePlans, 'PRDs are approved automatically without human review') +
|
package/engine/shared.js
CHANGED
|
@@ -695,7 +695,7 @@ const ENGINE_DEFAULTS = {
|
|
|
695
695
|
autoArchive: false, // opt-in: auto-archive plans after verify completes (false = mark ready, user archives manually)
|
|
696
696
|
autoFixConflicts: true, // auto-dispatch fix agents when a PR has merge conflicts
|
|
697
697
|
autoFixBuilds: true, // auto-dispatch fix agents when a PR build fails
|
|
698
|
-
meetingRoundTimeout:
|
|
698
|
+
meetingRoundTimeout: 900000, // 15min per meeting round before auto-advance
|
|
699
699
|
evalLoop: true, // enable review→fix loop after implementation completes
|
|
700
700
|
evalMaxIterations: 3, // max review→fix cycles before escalating to human
|
|
701
701
|
evalMaxCost: null, // USD ceiling per work item across all eval iterations; null = no limit (gather baseline data first)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1050",
|
|
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"
|