@yemi33/minions 0.1.294 → 0.1.296

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,14 +1,21 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.294 (2026-04-03)
3
+ ## 0.1.296 (2026-04-03)
4
4
 
5
5
  ### Features
6
+ - fix 7 bugs across cooldown, spawn-agent, playbook, scheduler, consolidation
7
+
8
+ ## 0.1.295 (2026-04-03)
9
+
10
+ ### Features
11
+ - fix engine.js race conditions — worktree TOCTOU, self-heal, dispatch dedup
6
12
  - fix dashboard.js race conditions, input validation, and watcher leaks
7
13
  - fix cleanup.js — worktree TOCTOU, readdirSync isolation, KB restore verify
8
14
  - harden shared.js — backup verification, lock TOCTOU, docs
9
15
  - all doc-chats use Sonnet with full tools (agent change)
10
16
 
11
17
  ### Fixes
18
+ - address PR-124 review feedback — safeJson regression, read-only lock, filter cleanup
12
19
  - address review feedback on PR-122
13
20
  - add behavioral tests for CRITICAL propagation and stale lock ENOENT
14
21
  - CRITICAL errors in safeJson now propagate to callers
@@ -224,12 +224,22 @@ function consolidateWithLLM(items, existingNotes, files, config) {
224
224
  let newContent = current + entry;
225
225
 
226
226
  if (newContent.length > 50000) {
227
- const sections = newContent.split('\n---\n\n### ');
228
- if (sections.length > 10) {
229
- const header = sections[0];
230
- const recent = sections.slice(-8);
231
- newContent = header + '\n---\n\n### ' + recent.join('\n---\n\n### ');
232
- log('info', `Pruned notes.md: removed ${sections.length - 9} old sections`);
227
+ // Truncate on section boundary — scan backward for last \n# before byte limit
228
+ // Never cut mid-section to preserve readability
229
+ const limit = 50000;
230
+ const lastSectionBoundary = newContent.lastIndexOf('\n---\n\n### ', limit);
231
+ if (lastSectionBoundary > 0) {
232
+ newContent = newContent.slice(0, lastSectionBoundary);
233
+ log('info', `Pruned notes.md at section boundary (pos ${lastSectionBoundary}) to stay under ${limit} bytes`);
234
+ } else {
235
+ // Fallback: use the old section-count approach
236
+ const sections = newContent.split('\n---\n\n### ');
237
+ if (sections.length > 10) {
238
+ const header = sections[0];
239
+ const recent = sections.slice(-8);
240
+ newContent = header + '\n---\n\n### ' + recent.join('\n---\n\n### ');
241
+ log('info', `Pruned notes.md: removed ${sections.length - 9} old sections`);
242
+ }
233
243
  }
234
244
  }
235
245
 
@@ -312,8 +322,9 @@ function consolidateWithRegex(items, files) {
312
322
  const seen = new Map();
313
323
  const deduped = [];
314
324
  for (const insight of allInsights) {
315
- const fpWords = insight.fingerprint.split(' ').filter(w => w.length > 4).slice(0, 5);
325
+ const fpWords = insight.fingerprint.split(' ').filter(w => w.length > 4 && w.length <= 200).slice(0, 5);
316
326
  // Use word-boundary regex to avoid substring false positives (e.g. 'fix' matching 'prefix')
327
+ // Cap word length at 200 chars to prevent ReDoS on pathological input
317
328
  if (fpWords.length >= 3 && fpWords.every(w => new RegExp(`\\b${w.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}\\b`).test(existingNotes))) continue;
318
329
  const existing = seen.get(insight.fingerprint);
319
330
  if (existing) { if (!existing.sources.includes(insight.agent)) existing.sources.push(insight.agent); continue; }
@@ -355,8 +366,14 @@ function consolidateWithRegex(items, files) {
355
366
  const current = getNotes();
356
367
  let newContent = current + entry;
357
368
  if (newContent.length > 50000) {
358
- const sections = newContent.split('\n---\n\n### ');
359
- if (sections.length > 10) { newContent = sections[0] + '\n---\n\n### ' + sections.slice(-8).join('\n---\n\n### '); }
369
+ const limit = 50000;
370
+ const lastBoundary = newContent.lastIndexOf('\n---\n\n### ', limit);
371
+ if (lastBoundary > 0) {
372
+ newContent = newContent.slice(0, lastBoundary);
373
+ } else {
374
+ const sections = newContent.split('\n---\n\n### ');
375
+ if (sections.length > 10) { newContent = sections[0] + '\n---\n\n### ' + sections.slice(-8).join('\n---\n\n### '); }
376
+ }
360
377
  }
361
378
  safeWrite(NOTES_PATH, newContent);
362
379
  classifyToKnowledgeBase(items);
@@ -38,7 +38,11 @@ function saveCooldowns() {
38
38
  if (now - v.timestamp > 24 * 60 * 60 * 1000) dispatchCooldowns.delete(k);
39
39
  }
40
40
  const obj = Object.fromEntries(dispatchCooldowns);
41
- safeWrite(COOLDOWN_PATH, obj);
41
+ try {
42
+ safeWrite(COOLDOWN_PATH, obj);
43
+ } catch (err) {
44
+ log('warn', `saveCooldowns failed writing ${COOLDOWN_PATH}: ${err.message}`);
45
+ }
42
46
  }, 1000); // debounce — write at most once per second
43
47
  }
44
48
 
@@ -285,6 +285,14 @@ function renderPlaybook(type, vars) {
285
285
  content = content.replace(new RegExp(`\\{\\{${key}\\}\\}`, 'g'), String(val));
286
286
  }
287
287
 
288
+ // Warn when a substituted value itself contains {{...}} patterns (potential self-reference)
289
+ const selfRefVars = Object.entries(allVars)
290
+ .filter(([, val]) => /\{\{\w+\}\}/.test(String(val)))
291
+ .map(([key]) => key);
292
+ if (selfRefVars.length > 0) {
293
+ log('warn', `Playbook "${type}": substituted values contain unresolved {{...}} patterns (potential self-reference): ${selfRefVars.join(', ')}`);
294
+ }
295
+
288
296
  // Warn on variables that resolved to empty string
289
297
  const emptyVars = Object.entries(allVars)
290
298
  .filter(([, val]) => String(val) === '')
@@ -114,7 +114,7 @@ function discoverScheduledWork(config) {
114
114
  mutateJsonFileLocked(SCHEDULE_RUNS_PATH, (runs) => {
115
115
  for (const sched of schedules) {
116
116
  if (!sched.id || !sched.cron || !sched.title) continue;
117
- if (sched.enabled === false) continue;
117
+ if (sched.enabled !== true) continue; // explicit true required — undefined/null/false all skip
118
118
 
119
119
  const lastRun = runs[sched.id] || null;
120
120
  if (!shouldRunNow(sched, lastRun)) continue;
package/engine/shared.js CHANGED
@@ -57,16 +57,12 @@ function safeJson(p) {
57
57
  // Verify the restored file matches expected content
58
58
  const verifyData = JSON.parse(fs.readFileSync(p, 'utf8'));
59
59
  if (JSON.stringify(verifyData) !== JSON.stringify(backupData)) {
60
- const errMsg = `[safeJson] CRITICAL: backup restore verification failed for ${p} — written data does not match backup`;
61
- console.error(errMsg);
62
- throw new Error(errMsg);
60
+ console.error(`[safeJson] CRITICAL: backup restore verification failed for ${p} — written data does not match backup`);
63
61
  }
64
62
  } catch (restoreErr) {
65
- // Re-throw CRITICAL errors so they propagate to callers
66
- if (restoreErr.message && restoreErr.message.includes('CRITICAL')) throw restoreErr;
67
- const errMsg = `[safeJson] CRITICAL: backup restore failed for ${p}: ${restoreErr.message}`;
68
- console.error(errMsg);
69
- throw new Error(errMsg);
63
+ // Restore-to-primary is best-effort backupData is already parsed and valid.
64
+ // Don't throw: disk-full / permission errors should not discard valid data.
65
+ console.error(`[safeJson] restore write failed for ${p}: ${restoreErr.message}`);
70
66
  }
71
67
  return backupData;
72
68
  } catch (outerErr) {
@@ -158,8 +154,7 @@ function withFileLock(lockPath, fn, {
158
154
  // ENOENT: another process deleted the lock between stat and unlink — safe to retry
159
155
  if (unlinkErr.code !== 'ENOENT') throw unlinkErr;
160
156
  }
161
- sleepMs(retryDelayMs); // avoid busy-loop on contention
162
- continue;
157
+ continue; // lock just removed — retry immediately
163
158
  }
164
159
  } catch (staleErr) {
165
160
  // ENOENT from statSync: lock file disappeared between EEXIST and stat — retry will succeed
@@ -154,17 +154,31 @@ const pidFile = promptFile.replace(/prompt-/, 'pid-').replace(/\.md$/, '.pid');
154
154
  fs.writeFileSync(pidFile, String(proc.pid || ''));
155
155
 
156
156
  // Send prompt via stdin — if system prompt was truncated, prepend the full context
157
- if (!isResume && Buffer.byteLength(sysPrompt) >= 30000) {
158
- // System prompt was too large for CLI — prepend full context to user prompt
159
- proc.stdin.write(`## Full Agent Context\n\n${sysPrompt}\n\n---\n\n## Your Task\n\n${prompt}`);
160
- } else {
161
- proc.stdin.write(prompt);
157
+ try {
158
+ if (!isResume && Buffer.byteLength(sysPrompt) >= 30000) {
159
+ // System prompt was too large for CLI — prepend full context to user prompt
160
+ proc.stdin.write(`## Full Agent Context\n\n${sysPrompt}\n\n---\n\n## Your Task\n\n${prompt}`);
161
+ } else {
162
+ proc.stdin.write(prompt);
163
+ }
164
+ proc.stdin.end();
165
+ } catch (err) {
166
+ console.error(`FATAL: stdin write failed (broken pipe): ${err.message}`);
167
+ fs.appendFileSync(debugPath, `STDIN ERROR: ${err.message}\n`);
168
+ try { proc.kill('SIGTERM'); } catch { /* process may already be dead */ }
169
+ process.exit(1);
162
170
  }
163
- proc.stdin.end();
164
171
 
165
172
  // Clean up temp file (only created for non-resume sessions)
166
173
  if (!isResume) setTimeout(() => { try { fs.unlinkSync(sysTmpPath); } catch { /* cleanup */ } }, 5000);
167
174
 
175
+ // Register exit handler to clean up orphaned temp files (system prompt tmp)
176
+ function _cleanupSpawnTempFiles() {
177
+ try { fs.unlinkSync(sysTmpPath); } catch { /* may already be cleaned */ }
178
+ }
179
+ process.on('exit', _cleanupSpawnTempFiles);
180
+ process.on('SIGTERM', () => { _cleanupSpawnTempFiles(); process.exit(143); });
181
+
168
182
  // Capture stderr separately for debugging
169
183
  let stderrBuf = '';
170
184
  proc.stderr.on('data', (chunk) => {
package/engine.js CHANGED
@@ -91,6 +91,7 @@ const safeJson = shared.safeJson;
91
91
  const safeRead = shared.safeRead;
92
92
  const safeWrite = shared.safeWrite;
93
93
  const mutateJsonFileLocked = shared.mutateJsonFileLocked;
94
+ const withFileLock = shared.withFileLock;
94
95
 
95
96
  // ─── Dispatch Management (extracted to engine/dispatch.js) ───────────────────
96
97
 
@@ -352,10 +353,15 @@ function spawnAgent(dispatchItem, config) {
352
353
  if (alreadyUsed) {
353
354
  const existingWtPath = findExistingWorktree(rootDir, branchName);
354
355
  if (existingWtPath && fs.existsSync(existingWtPath)) {
355
- const dispatch = safeJson(DISPATCH_PATH) || {};
356
- const activelyUsed = (dispatch.active || []).some(d => {
357
- const dBranch = d.meta?.branch ? sanitizeBranch(d.meta.branch) : '';
358
- return dBranch === branchName && d.id !== id;
356
+ // Bug fix: read dispatch under file lock so check-and-act is atomic
357
+ // Uses withFileLock directly (read-only) no unnecessary disk write
358
+ let activelyUsed = false;
359
+ withFileLock(DISPATCH_PATH + '.lock', () => {
360
+ const dp = safeJson(DISPATCH_PATH) || {};
361
+ activelyUsed = (dp.active || []).some(d => {
362
+ const dBranch = d.meta?.branch ? sanitizeBranch(d.meta.branch) : '';
363
+ return dBranch === branchName && d.id !== id;
364
+ });
359
365
  });
360
366
  if (activelyUsed) {
361
367
  log('warn', `Branch ${branchName} actively used by another agent at ${existingWtPath} — cannot create worktree`);
@@ -2354,9 +2360,17 @@ async function tickInner() {
2354
2360
  // Only dispatch to agents that aren't already busy (one task per agent at a time).
2355
2361
  // Build set of agents currently active.
2356
2362
  const busyAgents = new Set((dispatch.active || []).map(d => d.agent));
2363
+ // Bug fix #14: deduplicate pending by dispatch ID to prevent double-dispatch.
2364
+ // This guards against the same item appearing twice in the in-memory pending array.
2365
+ const seenPendingIds = new Set();
2357
2366
  const toDispatch = [];
2358
2367
  for (const item of dispatch.pending) {
2359
2368
  if (toDispatch.length >= slotsAvailable) break;
2369
+ if (seenPendingIds.has(item.id)) {
2370
+ log('warn', `Duplicate dispatch ID ${item.id} in pending queue — skipping`);
2371
+ continue;
2372
+ }
2373
+ seenPendingIds.add(item.id);
2360
2374
  if (busyAgents.has(item.agent)) continue; // agent already has an active task
2361
2375
  toDispatch.push(item);
2362
2376
  busyAgents.add(item.agent); // mark busy for this dispatch round too
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.294",
3
+ "version": "0.1.296",
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"