Add 5 language-based SDK plugin entries to plugin marketplace.json - #148
Merged
thegovind merged 3 commits intoFeb 19, 2026
Merged
Conversation
kvenkatrajan
force-pushed
the
update-plugin-marketplace-json
branch
from
February 19, 2026 15:11
98a1db0 to
cd51e96
Compare
kvenkatrajan
marked this pull request as draft
February 19, 2026 16:20
- .claude-plugin/marketplace.json: pluginRoot .github/plugins -> ./.github/plugins, source values prefixed with ./, reverted dotnet skills array to string - marketplace.json: pluginRoot .github/plugins -> ./.github/plugins - .github/plugin/marketplace.json: pluginRoot .github/plugins -> ./.github/plugins - Removed .agents/skills junction, .claude/skills junction, .claude/plugins junction, .claude/agents symlink
Kept 5 cross-language root skills in .github/skills/: - copilot-sdk - github-issue-creator - mcp-builder - podcast-generation - skill-creator All 127 language-specific skills now live exclusively in their plugin directories under .github/plugins/. The .github/skills/ directory only contains skills that aren't part of any plugin. Verified: npx skills add . --list finds 155 skills (5 from .github/skills/ + 150 from plugin directories via marketplace manifest). Install of azure-identity-dotnet from the plugin directory works correctly.
thegovind
marked this pull request as ready for review
February 19, 2026 17:52
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.
Adds the 5 new language-based SDK plugin entries, fixes paths across all marketplace.json files, removes unnecessary symlinks, and cleans up .github/skills/.
Commit 1: Add SDK plugin entries
Adds 5 new plugin entries to .github/plugin/marketplace.json and .claude-plugin/marketplace.json:
Commit 2: Fix paths and remove unnecessary symlinks
Changes to .claude-plugin/marketplace.json (used by
npx skills)pluginRoot:.github/plugins->./.github/pluginsazure-sdk-python->./azure-sdk-python(7 plugins)skills/string (array format not needed)Changes to marketplace.json (root, used by Copilot CLI)
pluginRoot:.github/plugins->./.github/plugins(consistency fix)Changes to .github/plugin/marketplace.json (Copilot CLI)
pluginRoot:.github/plugins->./.github/plugins(consistency fix)Removed (unnecessary symlinks/junctions)
.agents/directory (junction to .github/skills).claude/skills(junction to .github/skills).claude/plugins(junction to .github/plugins).claude/agents(symlink text file to .github/agents)Commit 3: Remove 127 language-specific skills from .github/skills/
Kept 5 cross-language root skills in
.github/skills/:All 127 language-specific skills now live exclusively in their plugin directories under
.github/plugins/. The.github/skills/directory only contains skills that aren't part of any plugin.Verified:
npx skills add . --liststill finds 155 skills (5 from .github/skills/ + 150 from plugin directories via marketplace manifest). Install of azure-identity-dotnet from the plugin directory works correctly.