Phase 1065: post-next-post-mesh-next-era opener journey stub (v0.8.1032)

Add runMeshStabilityUiPostNextPostMeshNextEraOpenerJourney headless journey
for Phase 1065 CI verification. Non-breaking — no behavior changes.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-06-05 09:22:14 -04:00
co-authored by Cursor
parent 3d2163b224
commit 810f9be1a3
+19
View File
@@ -2662,6 +2662,25 @@ class HeadlessSession {
return { trackContinuation, audit, stats } return { trackContinuation, 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')
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 {
assertMeshStabilityUiPostNextPostMeshNextEraOpener,
buildMeshStabilityUiPostNextPostMeshNextEraOpenerSnapshot
} = require('pearcord-platform/mesh-stability-ui-post-next-post-mesh-next-era-opener')
const audit = assertMeshStabilityUiPostNextPostMeshNextEraOpener(platformDir, uiDir)
const opener = buildMeshStabilityUiPostNextPostMeshNextEraOpenerSnapshot()
const stats = this.platform.getMeshStabilityStats(gid)
await this.refreshView()
return { opener, audit, stats }
}
/** Journey stub: mesh stability UI next-post-mesh-next-era rotation prep (Phase 1064). */ /** Journey stub: mesh stability UI next-post-mesh-next-era rotation prep (Phase 1064). */
async runMeshStabilityUiNextPostMeshNextEraRotationPrepJourney (guildId) { async runMeshStabilityUiNextPostMeshNextEraRotationPrepJourney (guildId) {
if (!this.platform) throw new Error('headless not started') if (!this.platform) throw new Error('headless not started')