fix: merge duplicate plugins to prevent double skill loading - #942
Open
Sagargupta16 wants to merge 1 commit into
Open
fix: merge duplicate plugins to prevent double skill loading#942Sagargupta16 wants to merge 1 commit into
Sagargupta16 wants to merge 1 commit into
Conversation
Sagargupta16
force-pushed
the
fix/merge-duplicate-plugins
branch
from
May 12, 2026 01:33
acfa138 to
f9933c1
Compare
Sagargupta16
force-pushed
the
fix/merge-duplicate-plugins
branch
from
May 21, 2026 11:02
f9933c1 to
f5538d6
Compare
Both plugins referenced the same source directory, causing Claude Code to cache all 17 skills identically under two different prefixes. This wastes context tokens and causes routing ambiguity. Merged into a single "anthropic-skills" plugin that exposes all 16 non-API skills. The "claude-api" plugin remains separate. Fixes anthropics#919
Sagargupta16
force-pushed
the
fix/merge-duplicate-plugins
branch
from
July 5, 2026 01:00
f5538d6 to
0921a14
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Both
document-skillsandexample-skillsplugins reference the same source directory ("source": "./"), causing Claude Code to cache all 17 skills identically under two different prefixes. This wastes context tokens and causes routing ambiguity.Problem
When both plugins are enabled (default after marketplace install), Claude loads every skill twice:
document-skills:pdf,document-skills:xlsx,document-skills:algorithmic-art, ...example-skills:pdf,example-skills:xlsx,example-skills:algorithmic-art, ...Both cache directories have identical file counts (376 files) and content.
Fix
Merged
document-skillsandexample-skillsinto a singleanthropic-skillsplugin that exposes all 16 non-API skills under one prefix. Theclaude-apiplugin remains separate.Users who previously disabled one plugin as a workaround can remove that setting.
Fixes #919