@yemi33/minions 0.1.2012 → 0.1.2013

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.
Files changed (2) hide show
  1. package/dashboard.js +2 -0
  2. package/package.json +1 -1
package/dashboard.js CHANGED
@@ -9904,6 +9904,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
9904
9904
  const { createMeeting } = require('./engine/meeting');
9905
9905
  const meeting = createMeeting({ title: title.trim(), agenda: agenda.trim(), participants: meetingParticipants });
9906
9906
  invalidateStatusCache();
9907
+ shared.mutateControl(control => ({ ...control, _wakeupAt: Date.now() }));
9907
9908
  return jsonReply(res, 200, { ok: true, meeting });
9908
9909
  }},
9909
9910
 
@@ -9936,6 +9937,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
9936
9937
  const meeting = advanceMeetingRound(body.id);
9937
9938
  if (!meeting) return jsonReply(res, 404, { error: 'Meeting not found or already completed' });
9938
9939
  invalidateStatusCache();
9940
+ shared.mutateControl(control => ({ ...control, _wakeupAt: Date.now() }));
9939
9941
  return jsonReply(res, 200, { ok: true, meeting });
9940
9942
  }},
9941
9943
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.2012",
3
+ "version": "0.1.2013",
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"