@yemi33/minions 0.1.1701 → 0.1.1702
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 -5
- package/engine/copilot-models.json +1 -1
- package/engine.js +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1702 (2026-05-04)
|
|
4
|
+
|
|
5
|
+
### Other
|
|
6
|
+
- Fix re-review dispatch for pending live status
|
|
7
|
+
|
|
8
|
+
## 0.1.1700 (2026-05-04)
|
|
4
9
|
|
|
5
10
|
### Features
|
|
6
|
-
- scope review cooldowns by PR head (#2026)
|
|
7
|
-
- harden docchat delegation (#2020)
|
|
8
|
-
- isolate review metadata (#2014)
|
|
9
|
-
- fix darwin pr path aliases (#2013)
|
|
10
11
|
- audit prompts and playbooks against Karpathy CLAUDE.md (#2012)
|
|
11
12
|
|
|
12
13
|
## 0.1.1699 (2026-05-04)
|
package/engine.js
CHANGED
|
@@ -2431,11 +2431,13 @@ async function discoverFromPrs(config, project) {
|
|
|
2431
2431
|
// completed-dispatch window would block legitimate re-reviews within the hour after a fix
|
|
2432
2432
|
if (fixThrottled || isOnCooldown(key, cooldownMs)) continue;
|
|
2433
2433
|
|
|
2434
|
-
// Pre-dispatch live vote check — cached 'waiting' may be stale if reviewer already acted
|
|
2434
|
+
// Pre-dispatch live vote check — cached 'waiting' may be stale if reviewer already acted.
|
|
2435
|
+
// Live 'pending' still means no decisive current-head review exists, so re-review should proceed.
|
|
2435
2436
|
try {
|
|
2436
2437
|
const checkFn = project.repoHost === 'github' ? ghCheckLiveReview : adoCheckLiveReview;
|
|
2437
2438
|
const liveStatus = await checkFn(pr, project);
|
|
2438
|
-
|
|
2439
|
+
const liveStatusBlocksReReview = liveStatus && liveStatus !== 'waiting' && liveStatus !== 'pending';
|
|
2440
|
+
if (liveStatusBlocksReReview) {
|
|
2439
2441
|
log('info', `Pre-dispatch vote check: ${pr.id} is ${liveStatus} (cached was waiting) — skipping re-review`);
|
|
2440
2442
|
if (pr.reviewStatus !== 'approved') pr.reviewStatus = liveStatus;
|
|
2441
2443
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1702",
|
|
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"
|