feat(agentctl): exportGuildSyncDiagnostics headless helper

Expose platform sync diagnostics export for mesh/sync validation scenarios.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-06-01 18:08:37 -04:00
co-authored by Cursor
parent 1becb410f0
commit 6308f2aff1
+5
View File
@@ -1012,6 +1012,11 @@ class HeadlessSession {
return out
}
exportGuildSyncDiagnostics (guildId) {
if (!this.platform) throw new Error('headless not started')
return this.platform.exportGuildSyncDiagnostics(guildId)
}
async revokeGuildInvite (code) {
if (!this.platform) throw new Error('headless not started')
const result = await this.platform.revokeInvite(code)