Phase 1032: agentctl quad base heal bundle refresh journey stub.
Add runMeshStabilityUiGuildQuadBaseHealBundleRefreshJourney for four-predicate bundle verification. Non-breaking only. Co-authored-by: Cursor <[email protected]>
This commit is contained in:
+27
@@ -2586,6 +2586,33 @@ class HeadlessSession {
|
|||||||
return { guildId: gid, keys, snapshot, stable, view }
|
return { guildId: gid, keys, snapshot, stable, view }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Journey stub: quad base heal bundle refresh predicates (Phase 1032). */
|
||||||
|
async runMeshStabilityUiGuildQuadBaseHealBundleRefreshJourney (guildId) {
|
||||||
|
if (!this.platform) throw new Error('headless not started')
|
||||||
|
const gid = guildId || this.platform.guild?.guild?.id
|
||||||
|
if (!gid) throw new Error('no guild')
|
||||||
|
const path = require('bare-path')
|
||||||
|
const bundleKeys = require('pearcord-platform/mesh-stability-ui-guild-quad-base-heal-bundle-refresh-keys')
|
||||||
|
const expressionUi = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui', 'mesh-stability-ui-guild-quad-expression-soak-refresh.js')
|
||||||
|
const partitionUi = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui', 'mesh-stability-ui-guild-quad-partition-heal-refresh.js')
|
||||||
|
const churnUi = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui', 'mesh-stability-ui-guild-quad-churn-heal-refresh.js')
|
||||||
|
const recoveryUi = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui', 'mesh-stability-ui-guild-quad-recovery-heal-refresh.js')
|
||||||
|
const expression = await import(expressionUi)
|
||||||
|
const partition = await import(partitionUi)
|
||||||
|
const churn = await import(churnUi)
|
||||||
|
const recovery = await import(recoveryUi)
|
||||||
|
const view = await this.refreshView()
|
||||||
|
const kinds = bundleKeys.listMeshStabilityUiGuildQuadBaseHealBundleRefreshKindKeys()
|
||||||
|
const snapshots = {
|
||||||
|
expressionSoak: expression.buildMeshStabilityGuildQuadExpressionSoakRefreshSnapshot(view),
|
||||||
|
partitionHeal: partition.buildMeshStabilityGuildQuadPartitionHealRefreshSnapshot(view),
|
||||||
|
churnHeal: churn.buildMeshStabilityGuildQuadChurnHealRefreshSnapshot(view),
|
||||||
|
recoveryHeal: recovery.buildMeshStabilityGuildQuadRecoveryHealRefreshSnapshot(view)
|
||||||
|
}
|
||||||
|
const stableExpression = expression.guildQuadExpressionSoakNeedsRefresh(view, view)
|
||||||
|
return { guildId: gid, kinds, snapshots, stableExpression, view }
|
||||||
|
}
|
||||||
|
|
||||||
/** Journey stub: multi-guild production matrix bundle refresh predicates (Phase 1031). */
|
/** Journey stub: multi-guild production matrix bundle refresh predicates (Phase 1031). */
|
||||||
async runMeshStabilityUiGuildMultiGuildProductionMatrixBundleRefreshJourney (guildId) {
|
async runMeshStabilityUiGuildMultiGuildProductionMatrixBundleRefreshJourney (guildId) {
|
||||||
if (!this.platform) throw new Error('headless not started')
|
if (!this.platform) throw new Error('headless not started')
|
||||||
|
|||||||
Reference in New Issue
Block a user