From 384b255ff803702efbcedc945ddbc0bfd35e3144 Mon Sep 17 00:00:00 2001 From: m0_56676577 Date: Tue, 27 Jan 2026 13:38:17 +0800 Subject: [PATCH] docs: add note about rules limitation in plugin installation The Claude Code plugin system does not support distributing rules via plugins. Added a note to Option 1 (Plugin Installation) section explaining this limitation and providing manual installation steps. Closes #88 Co-Authored-By: Claude Opus 4.5 --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 7f8743b..585eb29 100644 --- a/README.md +++ b/README.md @@ -238,6 +238,20 @@ Or add directly to your `~/.claude/settings.json`: This gives you instant access to all commands, agents, skills, and hooks. +> **Note:** The Claude Code plugin system does not support distributing `rules` via plugins ([upstream limitation](https://code.claude.com/docs/en/plugins-reference)). You need to install rules manually: +> +> ```bash +> # Clone the repo first +> git clone https://github.com/affaan-m/everything-claude-code.git +> +> # Option A: User-level rules (applies to all projects) +> cp -r everything-claude-code/rules/* ~/.claude/rules/ +> +> # Option B: Project-level rules (applies to current project only) +> mkdir -p .claude/rules +> cp -r everything-claude-code/rules/* .claude/rules/ +> ``` + --- ### Option 2: Manual Installation