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:
Raven Scott
2026-06-05 07:20:21 -04:00
co-authored by Cursor
parent 0e67b07556
commit 3f30a8d0b4
+21
View File
@@ -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')