@yemi33/minions 0.1.807 → 0.1.808

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.807 (2026-04-10)
3
+ ## 0.1.808 (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
+ - don't URL-encode ADO branchName filter (refs/heads/ format expected raw)
12
13
  - ADO build query filters by source branch (not all org builds)
13
14
  - adoFetch supports method/body for PATCH requests (auto-complete)
14
15
  - prevent false [process-exit] detection from tool result content
@@ -28,7 +29,6 @@
28
29
  - human feedback fixes are never capped (only minion review→fix loop is)
29
30
  - 5 bugs from comprehensive audit
30
31
  - stale ADO build detection + merge conflict auto-fix for both platforms
31
- - don't overwrite reviewStatus when platform vote hasn't propagated
32
32
 
33
33
  ## 0.1.782 (2026-04-10)
34
34
 
package/engine/ado.js CHANGED
@@ -368,7 +368,7 @@ async function pollPrStatus(config) {
368
368
  try {
369
369
  // Find builds for this PR — filter by source branch to avoid scanning all org builds
370
370
  const sourceBranch = prData.sourceRefName || '';
371
- const branchFilter = sourceBranch ? `&branchName=${encodeURIComponent(sourceBranch)}` : '';
371
+ const branchFilter = sourceBranch ? `&branchName=${sourceBranch}` : '';
372
372
  const buildsUrl = `${orgBase}/${project.adoProject}/_apis/build/builds?$top=10${branchFilter}&api-version=7.1`;
373
373
  const buildsData = await adoFetch(buildsUrl, token);
374
374
  // Match by exact merge commit — only current builds, not stale
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.807",
3
+ "version": "0.1.808",
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"