@yemi33/minions 0.1.1920 → 0.1.1921
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/dashboard.js +0 -2
- package/engine/shared.js +0 -2
- package/package.json +1 -1
- package/engine/copilot-models.json +0 -5
package/dashboard.js
CHANGED
|
@@ -6783,7 +6783,6 @@ What would you like to discuss or change? When you're happy, say "approve" and I
|
|
|
6783
6783
|
idleAlertMinutes: [1], shutdownTimeout: [30000], restartGracePeriod: [60000],
|
|
6784
6784
|
meetingRoundTimeout: [60000],
|
|
6785
6785
|
versionCheckInterval: [60000],
|
|
6786
|
-
maxBuildFixAttempts: [1, 10],
|
|
6787
6786
|
prPollStatusEvery: [1], prPollCommentsEvery: [1],
|
|
6788
6787
|
agentBusyReassignMs: [0],
|
|
6789
6788
|
};
|
|
@@ -6914,7 +6913,6 @@ What would you like to discuss or change? When you're happy, say "approve" and I
|
|
|
6914
6913
|
if (e[key] !== undefined) _setEngineConfig(key, !!e[key]);
|
|
6915
6914
|
}
|
|
6916
6915
|
// Eval loop settings
|
|
6917
|
-
if (e.evalMaxIterations !== undefined) _setEngineConfig('evalMaxIterations', Math.max(1, Math.min(10, Number(e.evalMaxIterations) || D.evalMaxIterations)));
|
|
6918
6916
|
if (e.evalMaxCost !== undefined) _setEngineConfig('evalMaxCost', e.evalMaxCost === null || e.evalMaxCost === '' ? null : Math.max(0, Number(e.evalMaxCost) || 0));
|
|
6919
6917
|
if (e.ignoredCommentAuthors !== undefined) {
|
|
6920
6918
|
_setEngineConfig('ignoredCommentAuthors', String(e.ignoredCommentAuthors || '').split(',').map(s => s.trim().toLowerCase()).filter(Boolean));
|
package/engine/shared.js
CHANGED
|
@@ -1075,7 +1075,6 @@ const ENGINE_DEFAULTS = {
|
|
|
1075
1075
|
meetingRoundTimeout: 900000, // 15min per meeting round — soft signal; logs a "still waiting" warning each tick
|
|
1076
1076
|
meetingRoundHardTimeout: 3600000, // 60min hard backstop — non-terminal participants are marked failed and the round advances. Prevents permanent stalls if an agent's dispatch never spawns or its completion gets dropped.
|
|
1077
1077
|
evalLoop: true, // enable review→fix loop after implementation completes
|
|
1078
|
-
evalMaxIterations: 3, // legacy UI/config field; engine discovery no longer enforces review→fix cycle caps
|
|
1079
1078
|
evalMaxCost: null, // USD ceiling per work item across all eval iterations; null = no limit (gather baseline data first)
|
|
1080
1079
|
maxRetries: 3, // max dispatch retries before marking work item as failed
|
|
1081
1080
|
maxPhantomRetries: 3, // max retries for "phantom completion" (runtime crashed before emitting type:"result"); tracked separately from _retryCount so phantom retries don't pollute the normal PR-attachment retry budget. See engine/lifecycle.markMissingPrAttachment + detectNonTerminalResultSummary.
|
|
@@ -1089,7 +1088,6 @@ const ENGINE_DEFAULTS = {
|
|
|
1089
1088
|
logBufferSize: 50, // flush immediately when buffer exceeds this many entries
|
|
1090
1089
|
lockRetries: 0, // no retries — single 5s timeout window with 25ms polling (200 attempts) is sufficient; stale lock recovery at 60s handles crashes
|
|
1091
1090
|
lockRetryBackoffMs: 500, // base backoff between lock retries (doubles each attempt: 500ms, 1s, 2s, ...)
|
|
1092
|
-
maxBuildFixAttempts: 3, // legacy UI/config field; engine discovery no longer enforces build-fix attempt caps
|
|
1093
1091
|
buildFixGracePeriod: 600000, // 10min — wait for CI to run after build fix before re-dispatching
|
|
1094
1092
|
adoPollEnabled: true, // poll ADO PR status, comments, and reconciliation on each tick cycle
|
|
1095
1093
|
ghPollEnabled: true, // poll GitHub PR status, comments, and reconciliation on each tick cycle
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1921",
|
|
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"
|