-
Notifications
You must be signed in to change notification settings - Fork 553
docs: add plugins and plugins_override toggle documentation #481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
docs: add plugins and plugins_override toggle documentation #481
Conversation
|
All contributors have signed the CLA. Thank you! ✅ |
Greptile SummaryThis PR adds documentation for the
The documentation is clear and provides practical examples for users who want to disable Claude Code marketplace plugins entirely or selectively disable specific plugins. This addresses the documentation gap identified in the PR description. Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant OpenCode
participant ConfigHandler
participant PluginLoader
User->>OpenCode: Start OpenCode session
OpenCode->>ConfigHandler: Load configuration (oh-my-opencode.json)
ConfigHandler->>ConfigHandler: Check claude_code.plugins setting
alt plugins: false
ConfigHandler->>ConfigHandler: Return empty plugin components
else plugins: true (default)
ConfigHandler->>PluginLoader: Load plugin components
PluginLoader->>PluginLoader: Check plugins_override settings
alt plugins_override configured
PluginLoader->>PluginLoader: Filter disabled plugins by identifier
PluginLoader->>ConfigHandler: Return filtered plugins
else no overrides
PluginLoader->>ConfigHandler: Return all plugins
end
end
ConfigHandler->>OpenCode: Plugins configured
OpenCode->>User: Session ready with plugins applied
|
Greptile found no issues!From now on, if a review finishes and we haven't found any issues, we will not post anything, but you can confirm that we reviewed your changes in the status check section. This feature can be toggled off in your Code Review Settings by deselecting "Create a status check for each PR". |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No issues found across 1 file
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Add documentation for the 'plugins' and 'plugins_override' options in the claude_code configuration section. This allows users to: - Disable all Claude Code marketplace plugins with 'plugins: false' - Selectively disable specific plugins using 'plugins_override' These options were missing from the documentation but are supported by the codebase.
7ba076c to
c7e05ee
Compare
|
I have read the CLA Document and I hereby sign the CLA |
Summary
pluginstoggle option inclaude_codeconfigplugins_overrideoption to selectively disable specific pluginspluginsoptionProblem
The
pluginsandplugins_overrideconfiguration options were supported by the codebase but not documented in the README. Users had no way to know how to:Solution
Added the missing documentation to the "Compatibility Toggles" section, including:
plugins: falseoption in the example JSONpluginscontrolsplugins_overridewith specific plugin identifiersTesting
Documentation-only change, no code changes.
Summary by cubic
Adds documentation for the plugins and plugins_override options in the claude_code config so users can disable all marketplace plugins or selectively turn off specific ones. Updates the compatibility toggles table and example JSON to include plugins.
Written for commit c7e05ee. Summary will update on new commits.