@yemi33/minions 0.1.1022 → 0.1.1024

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,62 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1024 (2026-04-16)
4
+
5
+ ### Features
6
+ - route implement items to dedicated implement playbook (#1115)
7
+
8
+ ### Fixes
9
+ - scheduler enabled field falsy check treats undefined as disabled (#1160)
10
+ - update branch-dedup tests to use canonical PR IDs after merge with master (#1146)
11
+ - auto-review not firing for manually-linked PRs with autoObserve=true
12
+ - mark PR abandoned on 404 instead of silently retrying each tick
13
+ - replace undefined PROJECTS with config.projects in checkWatches (#1108)
14
+ - write permission for publish workflow
15
+ - run tests inline and post check runs for publish PRs
16
+ - add maxBuffer to all GitHub CLI spawns + paginate PR list (#1130)
17
+ - add required CI checks for PRs + update publish for auto-merge
18
+ - revert to PR merge now that stale status check is removed
19
+ - guard live review check against undefined vote/state values (#1132)
20
+ - push version bump directly to master instead of via PR
21
+ - add push-triggered CI for chore/publish branches
22
+ - publish workflow chore PRs failing to merge
23
+ - harden KB ordering
24
+ - harden audited state transitions
25
+
26
+ ### Other
27
+ - chore: test publish after removing stale status check
28
+ - chore: trigger publish test
29
+ - chore: test publish workflow fix
30
+ - chore: trigger publish workflow test
31
+
32
+ ## 0.1.1023 (2026-04-16)
33
+
34
+ ### Features
35
+ - route implement items to dedicated implement playbook (#1115)
36
+
37
+ ### Fixes
38
+ - update branch-dedup tests to use canonical PR IDs after merge with master (#1146)
39
+ - auto-review not firing for manually-linked PRs with autoObserve=true
40
+ - mark PR abandoned on 404 instead of silently retrying each tick
41
+ - replace undefined PROJECTS with config.projects in checkWatches (#1108)
42
+ - write permission for publish workflow
43
+ - run tests inline and post check runs for publish PRs
44
+ - add maxBuffer to all GitHub CLI spawns + paginate PR list (#1130)
45
+ - add required CI checks for PRs + update publish for auto-merge
46
+ - revert to PR merge now that stale status check is removed
47
+ - guard live review check against undefined vote/state values (#1132)
48
+ - push version bump directly to master instead of via PR
49
+ - add push-triggered CI for chore/publish branches
50
+ - publish workflow chore PRs failing to merge
51
+ - harden KB ordering
52
+ - harden audited state transitions
53
+
54
+ ### Other
55
+ - chore: test publish after removing stale status check
56
+ - chore: trigger publish test
57
+ - chore: test publish workflow fix
58
+ - chore: trigger publish workflow test
59
+
3
60
  ## 0.1.1022 (2026-04-16)
4
61
 
5
62
  ### Features
@@ -114,7 +114,7 @@ function discoverScheduledWork(config) {
114
114
  mutateJsonFileLocked(SCHEDULE_RUNS_PATH, (runs) => {
115
115
  for (const sched of schedules) {
116
116
  if (!sched.id || !sched.cron || !sched.title) continue;
117
- if (!sched.enabled) continue; // truthy check — matches dashboard UI badge behavior
117
+ if (sched.enabled === false) continue; // strict false check — undefined/null default to enabled per schema
118
118
 
119
119
  // Backward compat: runs[sched.id] can be a string (old format) or object (new format)
120
120
  const runEntry = runs[sched.id] || null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1022",
3
+ "version": "0.1.1024",
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"