fix: correct plugin.json manifest validation errors#15
Open
adrianodemarino wants to merge 1 commit intoedmund-io:mainfrom
Open
fix: correct plugin.json manifest validation errors#15adrianodemarino wants to merge 1 commit intoedmund-io:mainfrom
adrianodemarino wants to merge 1 commit intoedmund-io:mainfrom
Conversation
Fix all validation errors preventing plugin installation: - author: Change from string to object with name and url - commands: Change from array of objects to directory path string - agents: Rename to 'skills' and use directory path string - tags: Remove unrecognized field Fixes the installation error: "Plugin has an invalid manifest file... Validation errors: author: Invalid input: expected object, received string, commands: Invalid input, agents: Invalid input, : Unrecognized key: 'tags'"
|
any idea when this will be merged? cheers. |
|
he is too busy making YouTube videos :) |
Author
|
I strongly recommend these 2 : https://github.com/gsd-build/get-shit-done & https://github.com/affaan-m/everything-claude-code |
|
@adrianodemarino thank you a lot for sharing. I have followed you :) |
Don't even think about using it if you don't have a MAX X5 or X20 subscription. |
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
Fix all validation errors preventing plugin installation:
nameandurlproperties./.claude/commands/)skillsand use directory path string (./.claude/agents/)Problem
The current
plugin.jsoncauses this installation error:Solution
Updated the manifest to match Claude Code's expected schema:
{ "author": { "name": "Edmund", "url": "https://github.com/edmund-io" }, "commands": "./.claude/commands/", "skills": "./.claude/agents/", ... }Test plan
claude plugin install edmunds-claude-code.claude/commands/.claude/agents/Related
This is a more complete fix than PR #11 which only removes the
tagsfield.