Skip to content

Commit c7e05ee

Browse files
geq1fangeqifan
authored andcommitted
docs: add plugins and plugins_override toggle documentation
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.
1 parent a49fbee commit c7e05ee

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,8 @@ Disable specific Claude Code compatibility features with the `claude_code` confi
687687
"commands": false,
688688
"skills": false,
689689
"agents": false,
690-
"hooks": false
690+
"hooks": false,
691+
"plugins": false
691692
}
692693
}
693694
```
@@ -699,9 +700,25 @@ Disable specific Claude Code compatibility features with the `claude_code` confi
699700
| `skills` | `~/.claude/skills/*/SKILL.md`, `./.claude/skills/*/SKILL.md` | - |
700701
| `agents` | `~/.claude/agents/*.md`, `./.claude/agents/*.md` | Built-in agents (oracle, librarian, etc.) |
701702
| `hooks` | `~/.claude/settings.json`, `./.claude/settings.json`, `./.claude/settings.local.json` | - |
703+
| `plugins` | `~/.claude/plugins/` (Claude Code marketplace plugins) | - |
702704

703705
All toggles default to `true` (enabled). Omit the `claude_code` object for full Claude Code compatibility.
704706

707+
**Selectively disable specific plugins** using `plugins_override`:
708+
709+
```json
710+
{
711+
"claude_code": {
712+
"plugins_override": {
713+
"claude-mem@thedotmack": false,
714+
"some-other-plugin@marketplace": false
715+
}
716+
}
717+
}
718+
```
719+
720+
This allows you to keep the plugin system enabled while disabling specific plugins by their full identifier (`plugin-name@marketplace-name`).
721+
705722
### Not Just for the Agents
706723

707724
When agents thrive, you thrive. But I want to help you directly too.

0 commit comments

Comments
 (0)