@yemi33/minions 0.1.1767 → 0.1.1768
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 +6 -1
- package/engine/copilot-models.json +1 -1
- package/engine/dispatch.js +7 -0
- package/engine.js +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1768 (2026-05-07)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
|
+
- stamp dispatchItem.started_at locally so updateMetrics sees it (#2158)
|
|
6
7
|
- stop test fixtures leaking into live engine/log.json (#2154)
|
|
7
8
|
|
|
9
|
+
### Other
|
|
10
|
+
- test(engine): add unit tests for PR branch/cause resolution helpers (#2160)
|
|
11
|
+
- test(dispatch): add unit tests for dedup/lock-key + retry-classification helpers (#2159)
|
|
12
|
+
|
|
8
13
|
## 0.1.1765 (2026-05-07)
|
|
9
14
|
|
|
10
15
|
### Features
|
package/engine/dispatch.js
CHANGED
|
@@ -658,4 +658,11 @@ module.exports = {
|
|
|
658
658
|
cancelPendingDispatchesForPr,
|
|
659
659
|
cleanDispatchEntries,
|
|
660
660
|
cancelPendingWorkItems,
|
|
661
|
+
// exported for testing
|
|
662
|
+
getDispatchProjectKey,
|
|
663
|
+
getPrDispatchTargetKey,
|
|
664
|
+
getBranchDispatchLockKey,
|
|
665
|
+
findActivePrOrBranchLock,
|
|
666
|
+
normalizeRetryableDecision,
|
|
667
|
+
isCompletedWorkItemForFailure,
|
|
661
668
|
};
|
package/engine.js
CHANGED
|
@@ -1692,6 +1692,10 @@ async function spawnAgent(dispatchItem, config) {
|
|
|
1692
1692
|
}
|
|
1693
1693
|
return dispatch;
|
|
1694
1694
|
});
|
|
1695
|
+
// Also stamp the local ref — mutateDispatch re-reads from disk, so `item`
|
|
1696
|
+
// above is a different object than the `dispatchItem` parameter. updateMetrics
|
|
1697
|
+
// reads dispatchItem.started_at for runtimeMs. (W-moux9nwn0008f923)
|
|
1698
|
+
dispatchItem.started_at = startedAt;
|
|
1695
1699
|
|
|
1696
1700
|
// Atomically stamp dispatched_to/dispatched_at on the originating work item (#402)
|
|
1697
1701
|
// The discover phase sets these via safeWrite which can race with concurrent writes;
|
|
@@ -4709,6 +4713,7 @@ module.exports = {
|
|
|
4709
4713
|
parseConflictFiles, pruneAncestorDeps, preflightMergeSimulation, // exported for testing
|
|
4710
4714
|
isWorktreeRetryableError, removeStaleIndexLock, syncReusedWorktree, // exported for testing
|
|
4711
4715
|
_maxTurnsForType, buildProjectContext, normalizeAc, _buildAgentSpawnFlags, _classifyAgentFailure, // exported for testing
|
|
4716
|
+
normalizePrBranch, resolvePrBranch, prCausePart, getPrCauseHead, getPrCauseBase, getPrAutomationCauseKey, getPrAutomationDispatchKey, // exported for testing
|
|
4712
4717
|
|
|
4713
4718
|
// Playbooks
|
|
4714
4719
|
renderPlaybook, validatePlaybookVars, PLAYBOOK_REQUIRED_VARS, buildWorkItemDispatchVars,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1768",
|
|
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"
|