@yemi33/minions 0.1.175 → 0.1.176

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.176 (2026-04-02)
4
+
5
+ ### Engine
6
+ - engine/meeting.js
7
+
8
+ ### Dashboard
9
+ - dashboard/js/settings.js
10
+
3
11
  ## 0.1.175 (2026-04-02)
4
12
 
5
13
  ### Engine
@@ -66,6 +66,7 @@ async function openSettings() {
66
66
 
67
67
  // Add save button to modal header actions (next to copy/close)
68
68
  const actions = document.querySelector('.modal-header-actions');
69
+ if (!actions) return;
69
70
  const existingSaveBtn = document.getElementById('modal-settings-save');
70
71
  if (!existingSaveBtn) {
71
72
  const saveBtn = document.createElement('button');
package/engine/meeting.js CHANGED
@@ -28,7 +28,14 @@ function getMeetings() {
28
28
 
29
29
  function getMeeting(id) {
30
30
  const filePath = path.join(MEETINGS_DIR, id + '.json');
31
- return safeJson(filePath);
31
+ const m = safeJson(filePath);
32
+ if (m) {
33
+ if (!m.findings) m.findings = {};
34
+ if (!m.debate) m.debate = {};
35
+ if (!m.humanNotes) m.humanNotes = [];
36
+ if (!m.participants) m.participants = [];
37
+ }
38
+ return m;
32
39
  }
33
40
 
34
41
  function saveMeeting(meeting) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.175",
3
+ "version": "0.1.176",
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"
@@ -1,5 +0,0 @@
1
- <section class="prd-panel" id="prd-section">
2
- <h2>PRD <span class="count" id="prd-progress-count">0%</span> <span id="prd-badge"></span> <span id="archive-btns"></span></h2>
3
- <div id="prd-content"><p class="prd-pending">No PRD found.</p></div>
4
- <div id="prd-progress-content" style="margin-top:12px"></div>
5
- </section>