- Add skill-reviewer v1.0.0 for reviewing Claude Code skills against best practices - Self-review mode: validate your own skills before publishing - External review mode: evaluate others' skill repositories - Auto-PR mode: fork, improve, submit PRs with additive-only changes - Auto-install dependencies: automatically installs skill-creator if missing - Add github-contributor v1.0.0 for strategic open-source contribution - Four contribution types: Documentation, Code Quality, Bug Fixes, Features - Project selection criteria and red flags - PR excellence workflow and reputation building ladder - GitHub CLI commands and conventional commit format - Update marketplace to v1.22.0 with 30 skills - Update documentation (README, README.zh-CN, CLAUDE.md, CHANGELOG) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
667 B
JSON
28 lines
667 B
JSON
{
|
|
"metadata": {
|
|
"name": "{marketplace-name}",
|
|
"description": "{Brief description of the marketplace/skill collection}",
|
|
"owner": "{github-username}",
|
|
"version": "1.0.0",
|
|
"homepage": "https://github.com/{owner}/{repo}"
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "{skill-name}",
|
|
"description": "{Copy from SKILL.md frontmatter description - must be third-person and include trigger conditions}",
|
|
"source": "./",
|
|
"strict": false,
|
|
"version": "1.0.0",
|
|
"category": "{category}",
|
|
"keywords": [
|
|
"{keyword1}",
|
|
"{keyword2}",
|
|
"{keyword3}"
|
|
],
|
|
"skills": [
|
|
"./"
|
|
]
|
|
}
|
|
]
|
|
}
|