@yemi33/minions 0.1.846 → 0.1.847

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.846 (2026-04-11)
3
+ ## 0.1.847 (2026-04-11)
4
4
 
5
5
  ### Features
6
6
  - optimistic UI updates for all remaining dashboard pages
@@ -9,6 +9,7 @@
9
9
  - stale PRD shows Regenerate PRD + Resume as-is buttons
10
10
 
11
11
  ### Fixes
12
+ - KB create modal stays open on API error for retry
12
13
  - steering resume failure no longer silently marked as SUCCESS
13
14
  - cli.js reads PID files from wrong directory on reattach
14
15
  - revert modal CSS changes from 227779d that broke plan modal layout
@@ -208,8 +208,8 @@ async function submitKbEntry() {
208
208
  body: JSON.stringify({ category, title, content })
209
209
  });
210
210
  if (res.ok) { closeModal(); refreshKnowledgeBase(); }
211
- else { const d = await res.json().catch(() => ({})); showToast('cmd-toast', 'KB create failed: ' + (d.error || 'unknown'), false); }
212
- } catch (e) { showToast('cmd-toast', 'Error: ' + e.message, false); }
211
+ else { if (btn) { btn.disabled = false; btn.textContent = 'Create'; } const d = await res.json().catch(() => ({})); showToast('cmd-toast', 'KB create failed: ' + (d.error || 'unknown'), false); }
212
+ } catch (e) { if (btn) { btn.disabled = false; btn.textContent = 'Create'; } showToast('cmd-toast', 'Error: ' + e.message, false); }
213
213
  }
214
214
 
215
215
  async function kbOpenItem(category, file) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.846",
3
+ "version": "0.1.847",
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"