Remove syncPlugins method from MicrobotPluginManager#1431
Remove syncPlugins method from MicrobotPluginManager#1431gmason0 merged 1 commit intochsami:developmentfrom
Conversation
…he microbot plugin manager will load plugins indivually
|
Caution Review failedThe pull request is closed. WalkthroughThe plugin registration now uses the public add(plugin) method instead of directly appending to the internal list. In the Microbot external plugin manager, the syncPlugins() method and its invocation from loadSideLoadPlugins() were removed, eliminating the sideload purge step. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant User
participant MicrobotPluginManager as MicrobotPluginManager
participant ExternalPluginLoader as ExternalPluginLoader
rect rgba(200,230,255,0.3)
note over MicrobotPluginManager: Previous flow (with sync)
User->>MicrobotPluginManager: loadSideLoadPlugins()
MicrobotPluginManager->>MicrobotPluginManager: syncPlugins() [purge not-installed]
MicrobotPluginManager->>ExternalPluginLoader: Load installed external plugins
ExternalPluginLoader-->>MicrobotPluginManager: Plugins loaded
end
rect rgba(200,255,200,0.3)
note over MicrobotPluginManager: New flow (sync removed)
User->>MicrobotPluginManager: loadSideLoadPlugins()
MicrobotPluginManager->>ExternalPluginLoader: Load installed external plugins
ExternalPluginLoader-->>MicrobotPluginManager: Plugins loaded
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. 📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (2)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
This method is no longer required considering plugins that are downloaded & installed from the Microbot Plugin Hub are loaded individually.
This resolves the issue where plugins that were from the plugin hub were trying to be loaded using the sideloaded-plugins folder did not show.
Summary by CodeRabbit