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:
+19
@@ -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 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). */
|
/** Journey stub: mesh stability UI post-next-post-mesh-next-era track closure (Phase 1068). */
|
||||||
async runMeshStabilityUiPostNextPostMeshNextEraTrackClosureJourney (guildId) {
|
async runMeshStabilityUiPostNextPostMeshNextEraTrackClosureJourney (guildId) {
|
||||||
if (!this.platform) throw new Error('headless not started')
|
if (!this.platform) throw new Error('headless not started')
|
||||||
|
|||||||
Reference in New Issue
Block a user