@yemi33/minions 0.1.2287 → 0.1.2288

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.
@@ -205,7 +205,7 @@ function reconcilePrdsFromDisk() {
205
205
  let mtime;
206
206
  try { mtime = Math.round(fs.statSync(full).mtimeMs); } catch { continue; }
207
207
  if (_reconcileMtimes.get(key) === mtime) continue; // unchanged since last seen
208
- const prd = _readJsonObj(full);
208
+ const prd = require('./shared').safeJsonNoRestore(full);
209
209
  if (!prd) continue;
210
210
  try {
211
211
  const { withTransaction } = require('./db');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.2287",
3
+ "version": "0.1.2288",
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"