From memstack
Guides submission of Claude Code skills and plugins to marketplaces like buildwithclaude via GitHub forks, branches, and PRs. Activated for 'submit to marketplace', 'publish my skill' requests.
npx claudepluginhub cwinvestments/memstack --plugin memstackThis skill uses the workspace's default tool permissions.
*Step-by-step guide to submit skills, plugins, or tools to community marketplaces via pull request.*
Creates and configures GitHub-hosted Claude Code plugin marketplaces. Scaffolds repos via init_marketplace.py, adds plugins to marketplace.json (local, GitHub, or URL sources), sets team metadata, and handles skills auto-discovery.
Publishes Claude skills to claude-hacks marketplace: copies files, updates marketplace.json, bumps versions, commits/pushes via CLI. Use for porting/sharing skills.
Creates reusable Claude Code skills and plugins from repeatable workflows. Generates SKILL.md files, packages as plugins, creates GitHub repos, and publishes to marketplace. Activates on requests to make skills or plugins.
Share bugs, ideas, or general feedback.
Step-by-step guide to submit skills, plugins, or tools to community marketplaces via pull request.
| Trigger | Status |
|---|---|
| User says "submit to marketplace" or "publish my skill" | ACTIVE |
| User says "share this skill" or "list on marketplace" | ACTIVE |
| User says "submit plugin" or "publish to community" | ACTIVE |
| User wants to build a skill | NOT this skill — use Forge |
| User wants to write plugin code | NOT this skill — use standard development |
| Marketplace | URL | Format | Submission |
|---|---|---|---|
| buildwithclaude | github.com/davepoon/buildwithclaude | Skills/plugins directory | Fork + PR |
| awesome-mcp-servers | github.com/punkpeye/awesome-mcp-servers | Awesome list | Fork + PR |
| Smithery | smithery.ai | MCP registry | Web submission |
| Glama MCP | glama.ai/mcp/servers | MCP directory | Fork + PR |
| awesome-claude-code | Community repos | Various | Fork + PR |
Verify the skill/plugin is ready:
| Check | How to verify |
|---|---|
| SKILL.md exists and is complete | Read the file, confirm frontmatter + body |
| Name and description are clear | Description explains what it does in one sentence |
| Trigger words are specific | No vague triggers that overlap with other skills |
| No proprietary/Pro content | Confirm this is a free skill or has permission |
| Works locally | User has tested it in their own CC session |
# Verify the skill file exists and has frontmatter
head -10 skills/<category>/<name>/SKILL.md
# Fork via GitHub CLI
gh repo fork <owner>/<repo> --clone
# Or fork via web UI at github.com/<owner>/<repo>/fork
cd <forked-repo>
git checkout -b add-<skill-name>
Each marketplace has its own structure. Follow the existing patterns:
For buildwithclaude (skill directory):
# Create your skill folder
mkdir -p <skill-name>
# Copy your SKILL.md
cp /path/to/your/SKILL.md <skill-name>/SKILL.md
# Add a README if required
For awesome lists (link addition):
<!-- Add to the appropriate section in README.md -->
- [Skill Name](link) - One-line description of what it does
Follow this template:
## Add [Skill Name]
### What it does
[1-2 sentences explaining the skill's purpose]
### Trigger keywords
[List the activation triggers]
### Category
[e.g., Development, Automation, Marketing]
### Testing
- [ ] Tested locally in Claude Code
- [ ] Follows repository's contribution guidelines
- [ ] No duplicate of existing entries
### Author
[Your name/handle]
# Stage and commit
git add .
git commit -m "Add <skill-name> skill"
# Push to your fork
git push origin add-<skill-name>
# Create the PR
gh pr create --title "Add <skill-name>" --body "$(cat <<'PREOF'
## Add [Skill Name]
### What it does
[description]
### Trigger keywords
[triggers]
### Testing
- [x] Tested locally in Claude Code
- [x] Follows contribution guidelines
- [x] No duplicate of existing entries
PREOF
)"
# Check PR status
gh pr status
# View PR checks
gh pr checks
Marketplace Submission Checklist:
- Target: [marketplace name]
- Skill: [skill name]
- Branch: add-[skill-name]
- PR: [URL when created]
Status: [ready to submit / submitted / merged]
For maximum visibility, submit to multiple marketplaces in sequence:
Do NOT submit proprietary or Pro skills to public marketplaces.