@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.346 (2026-04-04)
4
+
5
+ ### Fixes
6
+ - settings reset CONFIG_PATH error + status shown beneath buttons
7
+ - move settings status message to header actions bar next to buttons
8
+
3
9
  ## 0.1.344 (2026-04-04)
4
10
 
5
11
  ### Fixes
@@ -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(CONFIG_PATH, config);
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.344",
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"