feat: add initial plugin and marketplace configuration files#63
Open
shresthagarwal77 wants to merge 1 commit intoblader:mainfrom
Open
feat: add initial plugin and marketplace configuration files#63shresthagarwal77 wants to merge 1 commit intoblader:mainfrom
shresthagarwal77 wants to merge 1 commit intoblader:mainfrom
Conversation
Author
|
@blader Have registered this as a plugin |
There was a problem hiding this comment.
Pull request overview
This PR introduces initial Claude/Cursor plugin marketplace configuration alongside documentation updates, aiming to make the Humanizer skill installable via plugin tooling rather than only via manual cloning.
Changes:
- Update the Humanizer skill metadata/content in
skills/humanizer/SKILL.md. - Add Claude/Cursor plugin configuration files under
.claude-plugin/and.cursor-plugin/. - Update
README.mdinstallation instructions to include marketplace-based installation and Cursor setup.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| skills/humanizer/SKILL.md | Updates skill frontmatter and editing/audit instructions for the Humanizer prompt. |
| README.md | Adds marketplace installation steps and Cursor installation instructions. |
| .cursor-plugin/plugin.json | Introduces Cursor plugin manifest for this repository. |
| .claude-plugin/plugin.json | Introduces Claude plugin manifest for this repository. |
| .claude-plugin/marketplace.json | Introduces a marketplace definition for distributing the plugin. |
Comments suppressed due to low confidence (4)
.claude-plugin/plugin.json:13
- This JSON file is syntactically invalid because it’s missing the closing
}at the end. Add the closing brace so it can be parsed by tooling.
"license": "MIT",
"keywords": ["skills", "humanizer", "readability", "code-quality", "best-practices"]
.claude-plugin/marketplace.json:20
- This JSON file is syntactically invalid because it’s missing the closing
}at the end. Add the closing brace so marketplace tooling can parse it.
}
]
skills/humanizer/SKILL.md:4
SKILL.mdfrontmatter no longer includes aversion:field, but this repo’s guidance states the runtime YAML frontmatter should containname,version,description, andallowed-tools(seeWARP.md). Please addversion:back and keep it in sync with the README/plugin versions.
.cursor-plugin/plugin.json:18- This JSON file is syntactically invalid because it’s missing the closing
}at the end. Add the closing brace (and ensure the file ends with valid JSON) so plugin consumers can parse it.
"commands": "./commands/",
"hooks": "./hooks/hooks-cursor.json"
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+14
to
+17
| "skills": "./skills/", | ||
| "agents": "./agents/", | ||
| "commands": "./commands/", | ||
| "hooks": "./hooks/hooks-cursor.json" |
Comment on lines
+3
to
+5
| "displayName": "Humanizer", | ||
| "description": "Skills library for humanizing code and improving readability", | ||
| "version": "2.2.0", |
Comment on lines
+2
to
+4
| "name": "humanizer", | ||
| "description": "Skills library for humanizing code and improving readability", | ||
| "version": "2.2.0", |
Comment on lines
+12
to
+14
| "version": "2.2.0", | ||
| "source": "./", | ||
| "author": { |
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.
No description provided.