@yemi33/minions 0.1.344 → 0.1.346
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 +6 -0
- package/dashboard/js/settings.js +1 -2
- package/dashboard.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dashboard/js/settings.js
CHANGED
|
@@ -75,7 +75,6 @@ async function openSettings() {
|
|
|
75
75
|
'<h3 style="font-size:13px;color:var(--blue);margin-bottom:8px">Routing Table</h3>' +
|
|
76
76
|
'<textarea id="set-routing" rows="12" style="width:100%;padding:8px;background:var(--surface);border:1px solid var(--border);border-radius:4px;color:var(--text);font-family:monospace;font-size:11px;resize:vertical">' + escHtml(data.routing || '') + '</textarea>' +
|
|
77
77
|
|
|
78
|
-
'<span id="settings-status" style="font-size:11px;color:var(--muted)"></span>' +
|
|
79
78
|
'</div>';
|
|
80
79
|
|
|
81
80
|
document.getElementById('modal-title').textContent = 'Settings';
|
|
@@ -101,7 +100,7 @@ async function openSettings() {
|
|
|
101
100
|
saveBtn.onclick = saveSettings;
|
|
102
101
|
actions.insertBefore(saveBtn, actions.lastElementChild);
|
|
103
102
|
}
|
|
104
|
-
document.getElementById('modal-body').innerHTML = html;
|
|
103
|
+
document.getElementById('modal-body').innerHTML = '<div id="settings-status" style="font-size:11px;min-height:16px;margin-bottom:4px"></div>' + html;
|
|
105
104
|
document.getElementById('modal-body').style.fontFamily = '';
|
|
106
105
|
document.getElementById('modal-body').style.whiteSpace = '';
|
|
107
106
|
document.getElementById('modal').classList.add('open');
|
package/dashboard.js
CHANGED
|
@@ -3290,7 +3290,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
|
|
|
3290
3290
|
config.engine = { ...shared.ENGINE_DEFAULTS };
|
|
3291
3291
|
config.claude = { ...shared.DEFAULT_CLAUDE };
|
|
3292
3292
|
config.agents = { ...shared.DEFAULT_AGENTS };
|
|
3293
|
-
safeWrite(
|
|
3293
|
+
safeWrite(path.join(MINIONS_DIR, 'config.json'), config);
|
|
3294
3294
|
return jsonReply(res, 200, { ok: true });
|
|
3295
3295
|
} catch (e) { return jsonReply(res, 500, { error: e.message }); }
|
|
3296
3296
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.346",
|
|
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"
|