@yemi33/minions 0.1.874 → 0.1.875

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,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.874 (2026-04-11)
3
+ ## 0.1.875 (2026-04-11)
4
4
 
5
5
  ### Fixes
6
+ - reset central work-items.json on agent kill (closes #890) (#891)
6
7
  - include started_at in done/error agent status so duration renders
7
8
 
8
9
  ## 0.1.873 (2026-04-11)
package/dashboard.js CHANGED
@@ -1622,7 +1622,7 @@ const server = http.createServer(async (req, res) => {
1622
1622
  }, { defaultValue: { pending: [], active: [], completed: [] } });
1623
1623
 
1624
1624
  // 4. Reset work items from dispatched → pending so they can be retried
1625
- const allWiPaths = [];
1625
+ const allWiPaths = [path.join(MINIONS_DIR, 'work-items.json')];
1626
1626
  for (const proj of PROJECTS) allWiPaths.push(shared.projectWorkItemsPath(proj));
1627
1627
  let resetCount = 0;
1628
1628
  for (const wiPath of allWiPaths) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.874",
3
+ "version": "0.1.875",
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"