feat(manifest): add Agent Plugins 1.0.0 portable manifest - #76
Merged
Conversation
Agent Plugins clients read plugin.json at the package root; Claude Code reads .claude-plugin/plugin.json and nothing else. The portable schema is closed, so the Claude-only keys stay where they are. Root plugin.json is the source of truth for the shared metadata. Values are copied from .claude-plugin/plugin.json, so nothing changes for Claude Code. Keep them in sync with skill-repo-skill's sync-plugin-manifest.sh. Standard: https://agent-plugins.org/specification Signed-off-by: Sebastian Mendel <info@sebastianmendel.de>
|
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
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 root
plugin.jsonrequired by Agent Plugins 1.0.0, so this plugin loads in conformant clients (Cursor, Copilot, …) and not only in Claude Code..claude-plugin/plugin.json— nothing changes for Claude Code, which reads its own manifest and ignores this file.skills/agents/supportstay in the Claude manifest.skills/<name>/SKILL.mdalready matches what Agent Plugins clients discover; no layout change.From here on the root manifest is the source of truth for name, version, description, author, homepage, repository, license and keywords.
skill-repo-skill'ssync-plugin-manifest.shprojects it into.claude-plugin/plugin.jsonand CI checks the parity — see netresearch/skill-repo-skill#202.