Phase 1027: add mesh stability heal voice chrome bundle refresh journey (v0.8.994).
Headless agentctl journey stub for heal + voice chrome bundle refresh verification; non-breaking test harness extension only. Co-authored-by: Cursor <[email protected]>
This commit is contained in:
+21
@@ -2586,6 +2586,27 @@ class HeadlessSession {
|
||||
return { guildId: gid, keys, snapshot, stable, view }
|
||||
}
|
||||
|
||||
/** Journey stub: heal + voice chrome bundle refresh predicates (Phase 1027). */
|
||||
async runMeshStabilityUiHealVoiceChromeBundleRefreshJourney (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-heal-voice-chrome-bundle-refresh-keys')
|
||||
const healRailUi = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui', 'mesh-stability-ui-partition-heal-rail-refresh.js')
|
||||
const voiceUi = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui', 'mesh-stability-ui-voice-chrome-refresh.js')
|
||||
const healRail = await import(healRailUi)
|
||||
const voice = await import(voiceUi)
|
||||
const view = await this.refreshView()
|
||||
const kinds = bundleKeys.listMeshStabilityUiHealVoiceChromeBundleRefreshKindKeys()
|
||||
const snapshots = {
|
||||
partitionHealRail: healRail.buildMeshStabilityPartitionHealRailRefreshSnapshot(view),
|
||||
voiceChrome: voice.buildMeshStabilityVoiceChromeRefreshSnapshot(view)
|
||||
}
|
||||
const stableHealRail = healRail.partitionHealRailNeedsRefresh(view, view)
|
||||
return { guildId: gid, kinds, snapshots, stableHealRail, view }
|
||||
}
|
||||
|
||||
/** Journey stub: channel chrome bundle refresh predicates (Phase 1026). */
|
||||
async runMeshStabilityUiChannelChromeBundleRefreshJourney (guildId) {
|
||||
if (!this.platform) throw new Error('headless not started')
|
||||
|
||||
Reference in New Issue
Block a user