orchestrix-yuri 4.8.1 → 4.8.2
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.
|
@@ -1690,12 +1690,14 @@ class PhaseOrchestrator {
|
|
|
1690
1690
|
this._timer = null;
|
|
1691
1691
|
}
|
|
1692
1692
|
|
|
1693
|
-
|
|
1693
|
+
const scope = (this._changeContext && this._changeContext.scope) || 'small';
|
|
1694
|
+
|
|
1695
|
+
log.engine(`Change management complete (scope=${scope}): ${summary}`);
|
|
1694
1696
|
this.onComplete('change', `✅ Change management complete.\n\n${summary}`);
|
|
1695
1697
|
|
|
1696
|
-
//
|
|
1697
|
-
//
|
|
1698
|
-
if (this._session && tmx.hasSession(this._session)) {
|
|
1698
|
+
// Only transition to dev monitoring for medium/large changes where SM *draft
|
|
1699
|
+
// started the dev cycle. Small/direct changes are single-agent tasks — done is done.
|
|
1700
|
+
if ((scope === 'medium' || scope === 'large') && this._session && tmx.hasSession(this._session)) {
|
|
1699
1701
|
this._phase = 'develop';
|
|
1700
1702
|
this._changeContext = null;
|
|
1701
1703
|
this._devStartedAt = Date.now();
|