@yemi33/minions 0.1.800 → 0.1.801

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.800 (2026-04-10)
3
+ ## 0.1.801 (2026-04-10)
4
4
 
5
5
  ### Features
6
6
  - configurable ignored comment authors — auto-filtered, never trigger fixes
@@ -9,6 +9,7 @@
9
9
  - cap review→fix cycles at evalMaxIterations (default 3)
10
10
 
11
11
  ### Fixes
12
+ - move ignoredAuthors construction outside inner comment loop (ADO)
12
13
  - approved is permanent — no path can ever downgrade it
13
14
  - allow fix dispatch on approved PRs (only guard is in updatePrAfterFix)
14
15
  - bot comment on approved PR can no longer reset vote
package/engine/ado.js CHANGED
@@ -496,6 +496,7 @@ async function pollPrHumanComments(config) {
496
496
  // Collect ALL human comments on the PR for full context
497
497
  const allHumanComments = [];
498
498
  const newHumanComments = [];
499
+ const ignoredAuthors = (config.engine?.ignoredCommentAuthors || []).map(a => a.toLowerCase());
499
500
 
500
501
  for (const thread of threads) {
501
502
  for (const comment of (thread.comments || [])) {
@@ -503,7 +504,6 @@ async function pollPrHumanComments(config) {
503
504
  const content = comment.content;
504
505
  // Skip bots, CI noise, and ignored authors
505
506
  const authorName = (comment.author?.displayName || '').toLowerCase();
506
- const ignoredAuthors = (config.engine?.ignoredCommentAuthors || []).map(a => a.toLowerCase());
507
507
  if (ignoredAuthors.some(a => authorName.includes(a))) continue;
508
508
  if (/\b(bot|service|build|pipeline|codecov|sonar)\b/i.test(authorName)) continue;
509
509
  if (/^#{1,3}\s*(Coverage|Build|Test|Deploy|Pipeline)\s*(Report|Status|Result|Summary)/i.test(content)) continue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.800",
3
+ "version": "0.1.801",
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"