@yemi33/minions 0.1.1021 → 0.1.1022
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 +27 -0
- package/dashboard.js +1 -0
- package/engine.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.1022 (2026-04-16)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
- route implement items to dedicated implement playbook (#1115)
|
|
7
|
+
|
|
8
|
+
### Fixes
|
|
9
|
+
- auto-review not firing for manually-linked PRs with autoObserve=true
|
|
10
|
+
- mark PR abandoned on 404 instead of silently retrying each tick
|
|
11
|
+
- replace undefined PROJECTS with config.projects in checkWatches (#1108)
|
|
12
|
+
- write permission for publish workflow
|
|
13
|
+
- run tests inline and post check runs for publish PRs
|
|
14
|
+
- add maxBuffer to all GitHub CLI spawns + paginate PR list (#1130)
|
|
15
|
+
- add required CI checks for PRs + update publish for auto-merge
|
|
16
|
+
- revert to PR merge now that stale status check is removed
|
|
17
|
+
- guard live review check against undefined vote/state values (#1132)
|
|
18
|
+
- push version bump directly to master instead of via PR
|
|
19
|
+
- add push-triggered CI for chore/publish branches
|
|
20
|
+
- publish workflow chore PRs failing to merge
|
|
21
|
+
- harden KB ordering
|
|
22
|
+
- harden audited state transitions
|
|
23
|
+
|
|
24
|
+
### Other
|
|
25
|
+
- chore: test publish after removing stale status check
|
|
26
|
+
- chore: trigger publish test
|
|
27
|
+
- chore: test publish workflow fix
|
|
28
|
+
- chore: trigger publish workflow test
|
|
29
|
+
|
|
3
30
|
## 0.1.1021 (2026-04-16)
|
|
4
31
|
|
|
5
32
|
### Features
|
package/dashboard.js
CHANGED
package/engine.js
CHANGED
|
@@ -1931,8 +1931,8 @@ async function discoverFromPrs(config, project) {
|
|
|
1931
1931
|
continue;
|
|
1932
1932
|
}
|
|
1933
1933
|
// Skip human-authored PRs not linked to any work item — only auto-manage agent PRs
|
|
1934
|
-
// Manually-linked PRs with autoObserve are allowed through
|
|
1935
|
-
const isAgentPr = knownAgents.has((pr.agent || '').toLowerCase()) || (pr.prdItems && pr.prdItems.length > 0) || pr.
|
|
1934
|
+
// Manually-linked PRs with autoObserve=true (_manual && !_contextOnly) are allowed through
|
|
1935
|
+
const isAgentPr = knownAgents.has((pr.agent || '').toLowerCase()) || (pr.prdItems && pr.prdItems.length > 0) || (pr._manual && !pr._contextOnly);
|
|
1936
1936
|
if (!isAgentPr) continue;
|
|
1937
1937
|
|
|
1938
1938
|
const prNumber = shared.getPrNumber(pr);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1022",
|
|
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"
|