@yemi33/minions 0.1.884 → 0.1.885
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 +2 -1
- package/engine/github.js +5 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.885 (2026-04-11)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- add 13 missing CC action types for full dashboard parity
|
|
7
7
|
|
|
8
8
|
### Fixes
|
|
9
|
+
- track e2e/ and fix/ branches in PR reconciler
|
|
9
10
|
- show stale banner on paused PRDs (#905) (#909)
|
|
10
11
|
- regenerate-plan now dispatches diff-aware plan-to-prd agent
|
|
11
12
|
- suppress false [steering-failed] banner when agent responded (closes #894) (#896)
|
package/engine/github.js
CHANGED
|
@@ -562,7 +562,7 @@ async function pollPrHumanComments(config) {
|
|
|
562
562
|
|
|
563
563
|
async function reconcilePrs(config) {
|
|
564
564
|
const projects = getProjects(config).filter(isGitHub);
|
|
565
|
-
const branchPatterns = [/^work\//i, /^feat\//i, /^user\/yemishin\//i];
|
|
565
|
+
const branchPatterns = [/^work\//i, /^feat\//i, /^fix\//i, /^e2e\//i, /^user\/yemishin\//i];
|
|
566
566
|
let totalAdded = 0;
|
|
567
567
|
|
|
568
568
|
for (const project of projects) {
|
|
@@ -633,8 +633,11 @@ async function reconcilePrs(config) {
|
|
|
633
633
|
continue;
|
|
634
634
|
}
|
|
635
635
|
|
|
636
|
+
// E2E branches are always Minions-generated (verify tasks) — track even without a work item ID in the branch name
|
|
637
|
+
const isE2eBranch = /^e2e\//i.test(branch);
|
|
638
|
+
|
|
636
639
|
// Only auto-track PRs linked to a minions work item — skip human-authored PRs
|
|
637
|
-
if (!confirmedItemId) continue;
|
|
640
|
+
if (!confirmedItemId && !isE2eBranch) continue;
|
|
638
641
|
|
|
639
642
|
const prUrl = project.prUrlBase ? project.prUrlBase + ghPr.number : ghPr.html_url || '';
|
|
640
643
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.885",
|
|
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"
|