@yemi33/minions 0.1.263 → 0.1.264

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.264 (2026-04-03)
4
+
5
+ ### Fixes
6
+ - clean up remaining evaluate references in comments and log messages
7
+
3
8
  ## 0.1.263 (2026-04-03)
4
9
 
5
10
  ### Features
@@ -1075,7 +1075,7 @@ function resolveWiPath(meta) {
1075
1075
  }
1076
1076
 
1077
1077
  /**
1078
- * Parse structured eval verdict from evaluate agent output.
1078
+ * Parse structured eval verdict from review agent output.
1079
1079
  * Looks for a JSON block with { pass, build, tests, criteria_met, criteria_failed, feedback }.
1080
1080
  * Returns parsed object or null if not found.
1081
1081
  */
@@ -1256,7 +1256,7 @@ function runPostCompletionHooks(dispatchItem, agentId, code, stdout, config) {
1256
1256
 
1257
1257
  if (isSuccess && meta?.item?.id && !skipDoneStatus) updateWorkItemStatus(meta, 'done', '');
1258
1258
 
1259
- // Auto-dispatch evaluate work item after implement or fix completes successfully
1259
+ // Auto-dispatch review work item after implement or fix completes successfully
1260
1260
  if (isSuccess && !skipDoneStatus && (type === 'implement' || (type === 'fix' && meta?.item?._evalParentId)) && meta?.item?.id) {
1261
1261
  const evalLoop = config.engine?.evalLoop ?? shared.ENGINE_DEFAULTS.evalLoop;
1262
1262
  if (evalLoop) {
@@ -1269,7 +1269,7 @@ function runPostCompletionHooks(dispatchItem, agentId, code, stdout, config) {
1269
1269
  // Dedup: skip if a review item already exists for this parent
1270
1270
  const existing = items.find(i => i._evalParentId === evalTargetId && i.type === 'review' && i.status === 'pending');
1271
1271
  if (existing) {
1272
- log('info', `Eval loop: evaluate item ${existing.id} already exists for ${evalTargetId}, skipping`);
1272
+ log('info', `Eval loop: review item ${existing.id} already exists for ${evalTargetId}, skipping`);
1273
1273
  return items;
1274
1274
  }
1275
1275
  const parentItem = items.find(i => i.id === evalTargetId);
package/engine/shared.js CHANGED
@@ -356,8 +356,8 @@ const ENGINE_DEFAULTS = {
356
356
  autoApprovePlans: false, // auto-approve PRDs without waiting for human approval
357
357
  autoReview: true, // auto-dispatch review agents for new PRs (disable for manual review workflow)
358
358
  meetingRoundTimeout: 600000, // 10min per meeting round before auto-advance
359
- evalLoop: true, // enable evaluate→fix loop after implementation completes
360
- evalMaxIterations: 3, // max evaluate→fix cycles before escalating to human
359
+ evalLoop: true, // enable review→fix loop after implementation completes
360
+ evalMaxIterations: 3, // max review→fix cycles before escalating to human
361
361
  evalMaxCost: null, // USD ceiling per work item across all eval iterations; null = no limit (gather baseline data first)
362
362
  };
363
363
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.263",
3
+ "version": "0.1.264",
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"