refactor(platform): Phase 735 core preamble scopes and scope registry

Add swarmScope, dmScope, appEventsScope, cryptoScope, channelMetaScope,
permissionsScope, and hyperdbScope namespaces in index.js with dedicated
import modules and platform-index-scope-registry.js (17 scopes). No
behavior or mesh semantics changes.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-06-03 10:29:40 -04:00
co-authored by Cursor
parent 60a103a653
commit b3c011e61f
9 changed files with 286 additions and 224 deletions
+15
View File
@@ -0,0 +1,15 @@
'use strict'
const swarm = require('pearcord-swarm-manager')
module.exports = {
boundedFlush: swarm.boundedFlush,
retryWire: swarm.retryWire,
GossipOutbox: swarm.GossipOutbox,
adaptiveBurstDelays: swarm.adaptiveBurstDelays,
nextRoundRobinIndex: swarm.nextRoundRobinIndex,
gossipLaneForLabel: swarm.gossipLaneForLabel,
discoveryMeshFlushListings: swarm.discoveryMeshFlushListings,
GuildTopicPool: swarm.GuildTopicPool,
computeGuildTopicPoolMax: swarm.computeGuildTopicPoolMax
}