@yemi33/minions 0.1.422 → 0.1.423
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 +2 -0
- package/dashboard.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.423 (2026-04-06)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
|
+
- version check interval on settings page
|
|
6
7
|
- configurable version check interval, default 1 hour
|
|
7
8
|
- Dashboard robustness — raw string fixes, plan steering clarity, safeWrite race fix
|
|
8
9
|
- Low-priority cleanup: dedupe regex, consolidate streaming parse, add path validation alignment
|
package/dashboard/js/settings.js
CHANGED
|
@@ -47,6 +47,7 @@ async function openSettings() {
|
|
|
47
47
|
'<div style="display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:16px">' +
|
|
48
48
|
settingsField('Eval Max Iterations', 'set-evalMaxIterations', e.evalMaxIterations || 3, '', 'Max review→fix cycles before escalating (1-10)') +
|
|
49
49
|
settingsField('Eval Max Cost', 'set-evalMaxCost', e.evalMaxCost === null || e.evalMaxCost === undefined ? '' : e.evalMaxCost, '$', 'USD ceiling per work item across all eval iterations (blank = no limit)') +
|
|
50
|
+
settingsField('Version Check Interval', 'set-versionCheckInterval', e.versionCheckInterval || 3600000, 'ms', 'How often to check npm for updates (default: 1 hour)') +
|
|
50
51
|
'</div>' +
|
|
51
52
|
|
|
52
53
|
'<h3 style="font-size:13px;color:var(--blue);margin-bottom:8px">Claude CLI</h3>' +
|
|
@@ -164,6 +165,7 @@ async function saveSettings() {
|
|
|
164
165
|
allowTempAgents: document.getElementById('set-allowTempAgents').checked,
|
|
165
166
|
evalMaxIterations: document.getElementById('set-evalMaxIterations').value,
|
|
166
167
|
evalMaxCost: document.getElementById('set-evalMaxCost').value || null,
|
|
168
|
+
versionCheckInterval: document.getElementById('set-versionCheckInterval').value,
|
|
167
169
|
};
|
|
168
170
|
|
|
169
171
|
const claudePayload = {
|
package/dashboard.js
CHANGED
|
@@ -3358,6 +3358,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
|
|
|
3358
3358
|
worktreeCreateTimeout: [60000], worktreeCreateRetries: [0, 3],
|
|
3359
3359
|
idleAlertMinutes: [1], shutdownTimeout: [30000], restartGracePeriod: [60000],
|
|
3360
3360
|
meetingRoundTimeout: [60000],
|
|
3361
|
+
versionCheckInterval: [60000],
|
|
3361
3362
|
};
|
|
3362
3363
|
for (const [key, [min, max]] of Object.entries(numericFields)) {
|
|
3363
3364
|
if (e[key] !== undefined) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.423",
|
|
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"
|