@yemi33/minions 0.1.1745 → 0.1.1747
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 +9 -0
- package/engine/copilot-models.json +1 -1
- package/engine/lifecycle.js +12 -0
- package/engine/timeout.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.1747 (2026-05-06)
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
- treat null branch-change as unconfirmed (#2096) (#2115)
|
|
7
|
+
|
|
8
|
+
### Other
|
|
9
|
+
- test(dashboard): add unit tests for meeting/pipeline/work-item helpers (#2117)
|
|
10
|
+
- test(timeout): add unit tests for parse helpers and runtime capability check (#2116)
|
|
11
|
+
|
|
3
12
|
## 0.1.1745 (2026-05-06)
|
|
4
13
|
|
|
5
14
|
### Features
|
package/engine/lifecycle.js
CHANGED
|
@@ -1629,6 +1629,18 @@ function updatePrAfterFix(pr, project, source, options = {}, legacyDispatchId =
|
|
|
1629
1629
|
log('warn', `Updated ${pr.id} → recorded no-op ${cause} fix attempt ${record.count}${record.paused ? ' (paused)' : ''}; PR branch was unchanged`);
|
|
1630
1630
|
return prs;
|
|
1631
1631
|
}
|
|
1632
|
+
// Issue #2096: detectPrFixBranchChange returns three states; null means
|
|
1633
|
+
// detection could not determine whether the branch advanced (missing
|
|
1634
|
+
// baseline, fetch failed, worktree gone). Treat that as a no-op attempt
|
|
1635
|
+
// so the pause-after-N counter eventually engages, but do NOT mark the
|
|
1636
|
+
// automation cause handled — a future tick with working detection must
|
|
1637
|
+
// be free to re-dispatch.
|
|
1638
|
+
if (explicitlyChangedBranch && options.branchChange?.changed === null) {
|
|
1639
|
+
const record = recordPrNoOpFixAttempt(target, cause, source, options.dispatchItem, options.branchChange, options.config);
|
|
1640
|
+
result = { noOp: true, cause, paused: !!record.paused, count: record.count, indeterminate: true };
|
|
1641
|
+
log('warn', `Updated ${pr.id} → recorded indeterminate ${cause} fix attempt ${record.count}${record.paused ? ' (paused)' : ''}; PR branch advance could not be verified${options.branchChange?.reason ? ` (${options.branchChange.reason})` : ''}`);
|
|
1642
|
+
return prs;
|
|
1643
|
+
}
|
|
1632
1644
|
clearPrNoOpFixAttempt(target, cause);
|
|
1633
1645
|
if (source === 'pr-human-feedback') {
|
|
1634
1646
|
const clearPendingFix = shouldClearHumanFeedbackPendingFix(target, pr, automationCauseKey);
|
package/engine/timeout.js
CHANGED
|
@@ -562,4 +562,6 @@ module.exports = {
|
|
|
562
562
|
checkSteering,
|
|
563
563
|
checkIdleThreshold,
|
|
564
564
|
isOsPidAliveForDispatch,
|
|
565
|
+
parseProcessExitCode, terminalResultIndicatesError, parseTerminalResultFallbackExitCode, // exported for testing
|
|
566
|
+
readFileTail, runtimeSupportsMidRunSessionId, // exported for testing
|
|
565
567
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1747",
|
|
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"
|