Phase 1069: post-next-post-mesh-next-era rotation prep journey (v0.8.1036)

Add runMeshStabilityUiPostNextPostMeshNextEraRotationPrepJourney headless
stub for rotation prep CI verification. Non-breaking — no mesh UI behavior
changes; validates 86 combined modules and 4-phase regression chain.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-06-05 09:33:59 -04:00
co-authored by Cursor
parent 119f769d54
commit c15a2cdefa
+19
View File
@@ -2662,6 +2662,25 @@ class HeadlessSession {
return { trackContinuation, audit, stats }
}
/** Journey stub: mesh stability UI post-next-post-mesh-next-era rotation prep (Phase 1069). */
async runMeshStabilityUiPostNextPostMeshNextEraRotationPrepJourney (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 {
assertMeshStabilityUiPostNextPostMeshNextEraRotationPrep,
buildMeshStabilityUiPostNextPostMeshNextEraRotationPrepSnapshot
} = require('pearcord-platform/mesh-stability-ui-post-next-post-mesh-next-era-rotation-prep')
const audit = assertMeshStabilityUiPostNextPostMeshNextEraRotationPrep(platformDir, uiDir)
const rotationPrep = buildMeshStabilityUiPostNextPostMeshNextEraRotationPrepSnapshot()
const stats = this.platform.getMeshStabilityStats(gid)
await this.refreshView()
return { rotationPrep, audit, stats }
}
/** Journey stub: mesh stability UI post-next-post-mesh-next-era track closure (Phase 1068). */
async runMeshStabilityUiPostNextPostMeshNextEraTrackClosureJourney (guildId) {
if (!this.platform) throw new Error('headless not started')