Phase 1055: post-mesh-next-era era opener journey stub (v0.8.1022)

Add runMeshStabilityUiPostMeshNextEraOpenerJourney headless journey for
68-module post-mesh next-era opener audit verification. No behavior changes.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-06-05 08:53:40 -04:00
co-authored by Cursor
parent 8170d4f94c
commit 2c98b086af
+19
View File
@@ -2586,6 +2586,25 @@ class HeadlessSession {
return { guildId: gid, keys, snapshot, stable, view }
}
/** Journey stub: mesh stability UI post-mesh-next-era era opener (Phase 1055). */
async runMeshStabilityUiPostMeshNextEraOpenerJourney (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 platformDir = path.join(__dirname, '..', 'pearcord-platform')
const uiDir = path.join(__dirname, '..', '..', 'apps', 'pearcord', 'ui')
const {
assertMeshStabilityUiPostMeshNextEraOpener,
buildMeshStabilityUiPostMeshNextEraOpenerSnapshot
} = require('pearcord-platform/mesh-stability-ui-post-mesh-next-era-opener')
const audit = assertMeshStabilityUiPostMeshNextEraOpener(platformDir, uiDir)
const opener = buildMeshStabilityUiPostMeshNextEraOpenerSnapshot()
const stats = this.platform.getMeshStabilityStats(gid)
await this.refreshView()
return { opener, audit, stats }
}
/** Journey stub: mesh stability UI mesh next-era rotation prep (Phase 1054). */
async runMeshStabilityUiMeshNextEraRotationPrepJourney (guildId) {
if (!this.platform) throw new Error('headless not started')