@yemi33/minions 0.1.2295 → 0.1.2296
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/engine.js +0 -10
- package/package.json +1 -1
package/engine.js
CHANGED
|
@@ -9738,16 +9738,6 @@ async function tickInner() {
|
|
|
9738
9738
|
} else if (!autoFixPaused) {
|
|
9739
9739
|
_resetAutoFixPausedLogState();
|
|
9740
9740
|
}
|
|
9741
|
-
const adoPollEnabled = !pollingPaused && (config.engine?.adoPollEnabled ?? ENGINE_DEFAULTS.adoPollEnabled);
|
|
9742
|
-
const ghPollEnabled = !pollingPaused && (config.engine?.ghPollEnabled ?? ENGINE_DEFAULTS.ghPollEnabled);
|
|
9743
|
-
// P-c4d8e1a3 — granular per-poller flags. Each of the 6 PR-poll axes
|
|
9744
|
-
// (ADO/GH × status/comments/reconcile) plus processPendingRebases gets
|
|
9745
|
-
// its own resolution via shared.resolvePollFlag(...). Explicit granular
|
|
9746
|
-
// values win; the legacy `adoPollEnabled` / `ghPollEnabled` macros
|
|
9747
|
-
// silence their whole bundle as a fallback (including reconcile — a
|
|
9748
|
-
// documented breaking change). Defaults: all true. pollingPaused (master
|
|
9749
|
-
// killswitch) still composes with status + comments gates; reconcile and
|
|
9750
|
-
// the rebase processor are recovery-sweep paths and are NOT gated by it.
|
|
9751
9741
|
const adoStatusPollEnabled = !pollingPaused && resolvePollFlag(config.engine, 'adoPrStatusPollEnabled', 'adoPollEnabled');
|
|
9752
9742
|
const ghStatusPollEnabled = !pollingPaused && resolvePollFlag(config.engine, 'ghPrStatusPollEnabled', 'ghPollEnabled');
|
|
9753
9743
|
const adoCommentsPollEnabled = !pollingPaused && resolvePollFlag(config.engine, 'adoPrCommentsPollEnabled', 'adoPollEnabled');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2296",
|
|
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"
|