Phase 1070: next-post-next-post-mesh-next-era opener journey (v0.8.1037)

Add runMeshStabilityUiNextPostNextPostMeshNextEraOpenerJourney headless stub for
era opener CI verification. Non-breaking — no mesh UI behavior changes; validates
86 combined modules and 5-phase regression chain.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-06-05 09:36:54 -04:00
co-authored by Cursor
parent c15a2cdefa
commit b40ea730a3
+19
View File
@@ -2738,6 +2738,25 @@ class HeadlessSession {
return { consolidation, audit, stats }
}
/** Journey stub: mesh stability UI next-post-next-post-mesh-next-era era opener (Phase 1070). */
async runMeshStabilityUiNextPostNextPostMeshNextEraOpenerJourney (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 {
assertMeshStabilityUiNextPostNextPostMeshNextEraOpener,
buildMeshStabilityUiNextPostNextPostMeshNextEraOpenerSnapshot
} = require('pearcord-platform/mesh-stability-ui-next-post-next-post-mesh-next-era-opener')
const audit = assertMeshStabilityUiNextPostNextPostMeshNextEraOpener(platformDir, uiDir)
const opener = buildMeshStabilityUiNextPostNextPostMeshNextEraOpenerSnapshot()
const stats = this.platform.getMeshStabilityStats(gid)
await this.refreshView()
return { opener, audit, stats }
}
/** Journey stub: mesh stability UI post-next-post-mesh-next-era era opener (Phase 1065). */
async runMeshStabilityUiPostNextPostMeshNextEraOpenerJourney (guildId) {
if (!this.platform) throw new Error('headless not started')