@yemi33/minions 0.1.17 → 0.1.18

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,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.18 (2026-03-28)
4
+
5
+ ### Dashboard
6
+ - dashboard/js/render-inbox.js
7
+
3
8
  ## 0.1.17 (2026-03-28)
4
9
 
5
10
  ### Engine
@@ -168,7 +168,7 @@ async function submitQuickNote() {
168
168
  try {
169
169
  const res = await fetch('/api/notes', {
170
170
  method: 'POST', headers: { 'Content-Type': 'application/json' },
171
- body: JSON.stringify({ title: title || 'Quick note', content: content || title })
171
+ body: JSON.stringify({ title: title || 'Quick note', what: content || title })
172
172
  });
173
173
  if (res.ok) { closeModal(); refresh(); showToast('cmd-toast', 'Note saved to inbox', true); }
174
174
  else { const d = await res.json(); alert('Error: ' + (d.error || 'unknown')); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
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"