@yemi33/minions 0.1.1587 → 0.1.1588

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.1588 (2026-04-28)
4
+
5
+ ### Other
6
+ - Refresh quick notes immediately
7
+
3
8
  ## 0.1.1587 (2026-04-28)
4
9
 
5
10
  ### Fixes
package/dashboard.js CHANGED
@@ -2272,6 +2272,7 @@ const server = http.createServer(async (req, res) => {
2272
2272
  const filename = `${author}-${slug}-${today}-${shared.uid().slice(-4)}.md`;
2273
2273
  const content = `# ${body.title}\n\n**By:** ${author}\n**Date:** ${today}\n\n${body.what}\n${body.why ? '\n**Why:** ' + body.why + '\n' : ''}`;
2274
2274
  safeWrite(shared.uniquePath(path.join(inboxDir, filename)), content);
2275
+ invalidateStatusCache();
2275
2276
  return jsonReply(res, 200, { ok: true });
2276
2277
  } catch (e) { return jsonReply(res, 400, { error: e.message }); }
2277
2278
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1587",
3
+ "version": "0.1.1588",
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"