Phase 1059: post-mesh-next-era rotation prep journey stub (v0.8.1026)
Add runMeshStabilityUiPostMeshNextEraRotationPrepJourney expecting 74 combined modules and 4 regression phases. Non-breaking agentctl rotation prep verification. Co-authored-by: Cursor <[email protected]>
This commit is contained in:
+19
@@ -2586,6 +2586,25 @@ class HeadlessSession {
|
||||
return { guildId: gid, keys, snapshot, stable, view }
|
||||
}
|
||||
|
||||
/** Journey stub: mesh stability UI post-mesh-next-era rotation prep (Phase 1059). */
|
||||
async runMeshStabilityUiPostMeshNextEraRotationPrepJourney (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 {
|
||||
assertMeshStabilityUiPostMeshNextEraRotationPrep,
|
||||
buildMeshStabilityUiPostMeshNextEraRotationPrepSnapshot
|
||||
} = require('pearcord-platform/mesh-stability-ui-post-mesh-next-era-rotation-prep')
|
||||
const audit = assertMeshStabilityUiPostMeshNextEraRotationPrep(platformDir, uiDir)
|
||||
const rotationPrep = buildMeshStabilityUiPostMeshNextEraRotationPrepSnapshot()
|
||||
const stats = this.platform.getMeshStabilityStats(gid)
|
||||
await this.refreshView()
|
||||
return { rotationPrep, audit, stats }
|
||||
}
|
||||
|
||||
/** Journey stub: mesh stability UI post-mesh-next-era track closure (Phase 1058). */
|
||||
async runMeshStabilityUiPostMeshNextEraTrackClosureJourney (guildId) {
|
||||
if (!this.platform) throw new Error('headless not started')
|
||||
|
||||
Reference in New Issue
Block a user