*/
async snapshotResolvedCustomizations(): Promise<ISdkResolvedCustomizations> {
const [commands, agents, mcpServers] = await Promise.all([
query.supportedCommands(),
query.supportedAgents(),
query.mcpServerStatus(),
]);
return { commands, agents, mcpServers, plugins: this._initPlugins };
async startMcpServer(serverName: string): Promise<boolean> {