Phase 1029: add quad settings/sounds/churn bundle refresh journey (v0.8.996).

Headless agentctl journey stub for quad settings/sounds/churn bundle refresh
verification; non-breaking test harness extension only.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-06-05 07:28:03 -04:00
co-authored by Cursor
parent 0e84c9a2d7
commit f422b3cab3
+27
View File
@@ -2586,6 +2586,33 @@ class HeadlessSession {
return { guildId: gid, keys, snapshot, stable, view }
}
/** Journey stub: quad settings/sounds/churn bundle refresh predicates (Phase 1029). */
async runMeshStabilityUiGuildQuadSettingsSoundsChurnBundleRefreshJourney (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-settings-sounds-churn-bundle-refresh-keys')
const settingsUi = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui', 'mesh-stability-ui-guild-quad-channel-settings-refresh.js')
const topicUi = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui', 'mesh-stability-ui-guild-quad-channel-topic-refresh.js')
const soundsUi = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui', 'mesh-stability-ui-guild-quad-sounds-refresh.js')
const churnUi = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui', 'mesh-stability-ui-guild-multi-guild-quad-churn-matrix-refresh.js')
const settings = await import(settingsUi)
const topic = await import(topicUi)
const sounds = await import(soundsUi)
const churn = await import(churnUi)
const view = await this.refreshView()
const kinds = bundleKeys.listMeshStabilityUiGuildQuadSettingsSoundsChurnBundleRefreshKindKeys()
const snapshots = {
channelSettings: settings.buildMeshStabilityGuildQuadChannelSettingsRefreshSnapshot(view),
channelTopic: topic.buildMeshStabilityGuildQuadChannelTopicRefreshSnapshot(view),
sounds: sounds.buildMeshStabilityGuildQuadSoundsRefreshSnapshot(view),
multiGuildQuadChurnMatrix: churn.buildMeshStabilityGuildMultiGuildQuadChurnMatrixRefreshSnapshot(view)
}
const stableChurn = churn.guildMultiGuildQuadChurnMatrixNeedsRefresh(view, view)
return { guildId: gid, kinds, snapshots, stableChurn, view }
}
/** Journey stub: quad channels/offline/expression bundle refresh predicates (Phase 1028). */
async runMeshStabilityUiGuildQuadChannelsOfflineExpressionBundleRefreshJourney (guildId) {
if (!this.platform) throw new Error('headless not started')