@yemi33/minions 0.1.345 → 0.1.347

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,8 +1,14 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.345 (2026-04-04)
3
+ ## 0.1.347 (2026-04-04)
4
+
5
+ ### Other
6
+ - docs: update CLAUDE.md with constants, best practices, latest architecture
7
+
8
+ ## 0.1.346 (2026-04-04)
4
9
 
5
10
  ### Fixes
11
+ - settings reset CONFIG_PATH error + status shown beneath buttons
6
12
  - move settings status message to header actions bar next to buttons
7
13
 
8
14
  ## 0.1.344 (2026-04-04)
@@ -100,13 +100,7 @@ async function openSettings() {
100
100
  saveBtn.onclick = saveSettings;
101
101
  actions.insertBefore(saveBtn, actions.lastElementChild);
102
102
  }
103
- if (!document.getElementById('settings-status')) {
104
- const status = document.createElement('span');
105
- status.id = 'settings-status';
106
- status.style.cssText = 'font-size:11px;color:var(--muted)';
107
- actions.insertBefore(status, actions.lastElementChild);
108
- }
109
- 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;
110
104
  document.getElementById('modal-body').style.fontFamily = '';
111
105
  document.getElementById('modal-body').style.whiteSpace = '';
112
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.345",
3
+ "version": "0.1.347",
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"