@yemi33/minions 0.1.994 → 0.1.995
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 +2 -2
- package/engine/watches.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.995 (2026-04-15)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- fix stopAfter=0 watch expiry — run forever for all conditions (#1117)
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
- gate auto-fix conflict dispatch behind autoFixConflicts flag
|
|
26
26
|
|
|
27
27
|
### Fixes
|
|
28
|
+
- restore WATCH_ABSOLUTE_CONDITIONS import in watches.js lost in #1117 squash merge
|
|
28
29
|
- remove dead 'meeting' row from routing.md — orchestrated by engine/meeting.js directly
|
|
29
30
|
- gate review auto-dispatch on adoPollEnabled and evalLoop (#1116)
|
|
30
31
|
- updatePrAfterReview preserves fixedAt when writing minionsReview
|
|
@@ -44,7 +45,6 @@
|
|
|
44
45
|
- loop queue flush so messages queued during combined send aren't orphaned
|
|
45
46
|
- set lastPushedAt on fix completion to unblock re-review without poller
|
|
46
47
|
- restore ADO throttle test functions deleted during merge conflict resolution
|
|
47
|
-
- trigger second-pass re-review after fix agent completes
|
|
48
48
|
|
|
49
49
|
### Other
|
|
50
50
|
- chore: harden prompt posture
|
package/engine/watches.js
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
const path = require('path');
|
|
12
12
|
const shared = require('./shared');
|
|
13
13
|
const { safeJson, mutateJsonFileLocked, ts, uid, log, writeToInbox,
|
|
14
|
-
WATCH_STATUS, WATCH_TARGET_TYPE, WATCH_CONDITION } = shared;
|
|
14
|
+
WATCH_STATUS, WATCH_TARGET_TYPE, WATCH_CONDITION, WATCH_ABSOLUTE_CONDITIONS } = shared;
|
|
15
15
|
|
|
16
16
|
// Dynamic path — respects MINIONS_TEST_DIR for test isolation
|
|
17
17
|
function _watchesPath() { return path.join(shared.MINIONS_DIR, 'engine', 'watches.json'); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.995",
|
|
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"
|