@yemi33/minions 0.1.1021 → 0.1.1023

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 CHANGED
@@ -1,5 +1,60 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1023 (2026-04-16)
4
+
5
+ ### Features
6
+ - route implement items to dedicated implement playbook (#1115)
7
+
8
+ ### Fixes
9
+ - update branch-dedup tests to use canonical PR IDs after merge with master (#1146)
10
+ - auto-review not firing for manually-linked PRs with autoObserve=true
11
+ - mark PR abandoned on 404 instead of silently retrying each tick
12
+ - replace undefined PROJECTS with config.projects in checkWatches (#1108)
13
+ - write permission for publish workflow
14
+ - run tests inline and post check runs for publish PRs
15
+ - add maxBuffer to all GitHub CLI spawns + paginate PR list (#1130)
16
+ - add required CI checks for PRs + update publish for auto-merge
17
+ - revert to PR merge now that stale status check is removed
18
+ - guard live review check against undefined vote/state values (#1132)
19
+ - push version bump directly to master instead of via PR
20
+ - add push-triggered CI for chore/publish branches
21
+ - publish workflow chore PRs failing to merge
22
+ - harden KB ordering
23
+ - harden audited state transitions
24
+
25
+ ### Other
26
+ - chore: test publish after removing stale status check
27
+ - chore: trigger publish test
28
+ - chore: test publish workflow fix
29
+ - chore: trigger publish workflow test
30
+
31
+ ## 0.1.1022 (2026-04-16)
32
+
33
+ ### Features
34
+ - route implement items to dedicated implement playbook (#1115)
35
+
36
+ ### Fixes
37
+ - auto-review not firing for manually-linked PRs with autoObserve=true
38
+ - mark PR abandoned on 404 instead of silently retrying each tick
39
+ - replace undefined PROJECTS with config.projects in checkWatches (#1108)
40
+ - write permission for publish workflow
41
+ - run tests inline and post check runs for publish PRs
42
+ - add maxBuffer to all GitHub CLI spawns + paginate PR list (#1130)
43
+ - add required CI checks for PRs + update publish for auto-merge
44
+ - revert to PR merge now that stale status check is removed
45
+ - guard live review check against undefined vote/state values (#1132)
46
+ - push version bump directly to master instead of via PR
47
+ - add push-triggered CI for chore/publish branches
48
+ - publish workflow chore PRs failing to merge
49
+ - harden KB ordering
50
+ - harden audited state transitions
51
+
52
+ ### Other
53
+ - chore: test publish after removing stale status check
54
+ - chore: trigger publish test
55
+ - chore: test publish workflow fix
56
+ - chore: trigger publish workflow test
57
+
3
58
  ## 0.1.1021 (2026-04-16)
4
59
 
5
60
  ### Features
package/dashboard.js CHANGED
@@ -4536,6 +4536,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
4536
4536
  prdItems: [],
4537
4537
  _manual: true,
4538
4538
  _contextOnly: !autoObserve,
4539
+ _autoObserve: !!autoObserve,
4539
4540
  _context: context || '',
4540
4541
  });
4541
4542
  return prs;
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 (they have _autoObserve flag)
1935
- const isAgentPr = knownAgents.has((pr.agent || '').toLowerCase()) || (pr.prdItems && pr.prdItems.length > 0) || pr._autoObserve;
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.1021",
3
+ "version": "0.1.1023",
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"