feat(marketplace): add Claude Code native marketplace support
Resolves #34 (marketplace visibility) - Part 2: Native Claude Code integration ## New Features ### marketplace.json - Decentralized marketplace for Claude Code plugin system - 12 plugin entries (6 domain bundles + 6 popular individual skills) - Native `/plugin` command integration - Version management with git tags ### Plugin Manifests Created `.claude-plugin/plugin.json` for all 6 domain bundles: - marketing-skill/ (5 skills) - engineering-team/ (18 skills) - product-team/ (5 skills) - c-level-advisor/ (2 skills) - project-management/ (6 skills) - ra-qm-team/ (12 skills) ### Documentation Updates - README.md: Two installation methods (native + universal) - INSTALLATION.md: Complete marketplace installation guide ## Installation Methods ### Method 1: Claude Code Native (NEW) ```bash /plugin marketplace add alirezarezvani/claude-skills /plugin install marketing-skills@claude-code-skills ``` ### Method 2: Universal Installer (Existing) ```bash npx ai-agent-skills install alirezarezvani/claude-skills ``` ## Benefits **Native Marketplace:** - ✅ Built-in Claude Code integration - ✅ Automatic updates with /plugin update - ✅ Version management - ✅ Skills in ~/.claude/skills/ **Universal Installer:** - ✅ Works across 9+ AI agents - ✅ One command for all agents - ✅ Cross-platform compatibility ## Impact - Dual distribution strategy maximizes reach - Claude Code users get native experience - Other agent users get universal installer - Both methods work simultaneously 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -17,7 +17,19 @@ Complete installation guide for all 48 production-ready skills across multiple A
|
||||
|
||||
## Quick Start
|
||||
|
||||
**Fastest way to install all 48 skills:**
|
||||
**Two installation methods available:**
|
||||
|
||||
### Method 1: Claude Code Native (Recommended for Claude Code users)
|
||||
|
||||
```bash
|
||||
# In Claude Code, run:
|
||||
/plugin marketplace add alirezarezvani/claude-skills
|
||||
/plugin install marketing-skills@claude-code-skills
|
||||
```
|
||||
|
||||
Native integration with automatic updates and version management.
|
||||
|
||||
### Method 2: Universal Installer (Works across all agents)
|
||||
|
||||
```bash
|
||||
npx ai-agent-skills install alirezarezvani/claude-skills
|
||||
@@ -27,7 +39,79 @@ This single command installs all skills to all supported agents (Claude Code, Cu
|
||||
|
||||
---
|
||||
|
||||
## Universal Installer (Recommended)
|
||||
## Claude Code Native Marketplace (New!)
|
||||
|
||||
**Best for Claude Code users** - Native integration with Claude Code's plugin system.
|
||||
|
||||
### Add the Marketplace
|
||||
|
||||
```bash
|
||||
# In Claude Code, run:
|
||||
/plugin marketplace add alirezarezvani/claude-skills
|
||||
```
|
||||
|
||||
This adds the skills library to your available marketplaces.
|
||||
|
||||
### Install Skill Bundles
|
||||
|
||||
```bash
|
||||
# Install by domain (bundles of skills)
|
||||
/plugin install marketing-skills@claude-code-skills # 5 marketing skills
|
||||
/plugin install engineering-skills@claude-code-skills # 18 engineering skills
|
||||
/plugin install product-skills@claude-code-skills # 5 product skills
|
||||
/plugin install c-level-skills@claude-code-skills # 2 C-level advisory skills
|
||||
/plugin install pm-skills@claude-code-skills # 6 project management skills
|
||||
/plugin install ra-qm-skills@claude-code-skills # 12 regulatory/quality skills
|
||||
```
|
||||
|
||||
### Install Individual Skills
|
||||
|
||||
```bash
|
||||
# Marketing
|
||||
/plugin install content-creator@claude-code-skills
|
||||
/plugin install demand-gen@claude-code-skills
|
||||
|
||||
# Engineering
|
||||
/plugin install fullstack-engineer@claude-code-skills
|
||||
/plugin install aws-architect@claude-code-skills
|
||||
|
||||
# Product
|
||||
/plugin install product-manager@claude-code-skills
|
||||
|
||||
# Project Management
|
||||
/plugin install scrum-master@claude-code-skills
|
||||
```
|
||||
|
||||
### Update Skills
|
||||
|
||||
```bash
|
||||
# Update all installed plugins
|
||||
/plugin update
|
||||
|
||||
# Update specific plugin
|
||||
/plugin update marketing-skills
|
||||
```
|
||||
|
||||
### Remove Skills
|
||||
|
||||
```bash
|
||||
# Remove specific plugin
|
||||
/plugin remove marketing-skills
|
||||
|
||||
# Remove marketplace
|
||||
/plugin marketplace remove claude-code-skills
|
||||
```
|
||||
|
||||
**Benefits:**
|
||||
- ✅ Native Claude Code integration
|
||||
- ✅ Automatic updates with `/plugin update`
|
||||
- ✅ Version management with git tags
|
||||
- ✅ Skills installed to `~/.claude/skills/`
|
||||
- ✅ Managed through Claude Code UI
|
||||
|
||||
---
|
||||
|
||||
## Universal Installer
|
||||
|
||||
The universal installer uses the [ai-agent-skills](https://github.com/skillcreatorai/Ai-Agent-Skills) package to install skills across multiple agents simultaneously.
|
||||
|
||||
|
||||
46
README.md
46
README.md
@@ -10,9 +10,42 @@
|
||||
|
||||
---
|
||||
|
||||
## ⚡ Quick Install (Universal Installer)
|
||||
## ⚡ Quick Install
|
||||
|
||||
Install skills to Claude Code, Cursor, VS Code, Amp, Goose, and more - all with one command!
|
||||
**Two installation methods available** - choose based on your needs:
|
||||
|
||||
### Method 1: Claude Code Native (Recommended for Claude Code users)
|
||||
|
||||
Use Claude Code's built-in plugin system for native integration:
|
||||
|
||||
```bash
|
||||
# In Claude Code, run:
|
||||
/plugin marketplace add alirezarezvani/claude-skills
|
||||
|
||||
# Then install skill bundles:
|
||||
/plugin install marketing-skills@claude-code-skills # 5 marketing skills
|
||||
/plugin install engineering-skills@claude-code-skills # 18 engineering skills
|
||||
/plugin install product-skills@claude-code-skills # 5 product skills
|
||||
/plugin install c-level-skills@claude-code-skills # 2 C-level advisory skills
|
||||
/plugin install pm-skills@claude-code-skills # 6 project management skills
|
||||
/plugin install ra-qm-skills@claude-code-skills # 12 regulatory/quality skills
|
||||
|
||||
# Or install individual skills:
|
||||
/plugin install content-creator@claude-code-skills # Single skill
|
||||
/plugin install fullstack-engineer@claude-code-skills # Single skill
|
||||
```
|
||||
|
||||
**Benefits:**
|
||||
- ✅ Native Claude Code integration
|
||||
- ✅ Automatic updates with `/plugin update`
|
||||
- ✅ Version management with git tags
|
||||
- ✅ Skills available in `~/.claude/skills/`
|
||||
|
||||
---
|
||||
|
||||
### Method 2: Universal Installer (Works across all agents)
|
||||
|
||||
Install to Claude Code, Cursor, VS Code, Amp, Goose, and more - all with one command:
|
||||
|
||||
```bash
|
||||
# Install all 48 skills to all supported agents
|
||||
@@ -31,6 +64,11 @@ npx ai-agent-skills install alirezarezvani/claude-skills --agent cursor
|
||||
npx ai-agent-skills install alirezarezvani/claude-skills --dry-run
|
||||
```
|
||||
|
||||
**Benefits:**
|
||||
- ✅ Works across 9+ AI agents simultaneously
|
||||
- ✅ One command installs to all agents
|
||||
- ✅ No agent-specific configuration needed
|
||||
|
||||
**Supported Agents:** Claude Code, Cursor, VS Code, Copilot, Goose, Amp, Codex, Letta, OpenCode
|
||||
|
||||
**Installation Locations:**
|
||||
@@ -40,7 +78,9 @@ npx ai-agent-skills install alirezarezvani/claude-skills --dry-run
|
||||
- Goose: `~/.config/goose/skills/`
|
||||
- Project-specific: `.skills/`
|
||||
|
||||
**Alternative:** Manual installation instructions in the [Installation](#-installation) section below.
|
||||
---
|
||||
|
||||
**Detailed Installation Guide:** See [INSTALLATION.md](INSTALLATION.md) for complete instructions, troubleshooting, and manual installation.
|
||||
|
||||
---
|
||||
|
||||
|
||||
12
c-level-advisor/.claude-plugin/plugin.json
Normal file
12
c-level-advisor/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "c-level-skills",
|
||||
"description": "2 production-ready C-level advisory skills: CEO advisor for strategic decision-making and CTO advisor for technical leadership",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani",
|
||||
"url": "https://alirezarezvani.com"
|
||||
},
|
||||
"homepage": "https://github.com/alirezarezvani/claude-skills/tree/main/c-level-advisor",
|
||||
"repository": "https://github.com/alirezarezvani/claude-skills",
|
||||
"license": "MIT"
|
||||
}
|
||||
12
engineering-team/.claude-plugin/plugin.json
Normal file
12
engineering-team/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "engineering-skills",
|
||||
"description": "18 production-ready engineering skills covering architecture, frontend, backend, fullstack, QA, DevOps, security, AI/ML, and data engineering",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani",
|
||||
"url": "https://alirezarezvani.com"
|
||||
},
|
||||
"homepage": "https://github.com/alirezarezvani/claude-skills/tree/main/engineering-team",
|
||||
"repository": "https://github.com/alirezarezvani/claude-skills",
|
||||
"license": "MIT"
|
||||
}
|
||||
12
marketing-skill/.claude-plugin/plugin.json
Normal file
12
marketing-skill/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "marketing-skills",
|
||||
"description": "5 production-ready marketing skills: content creator, demand generation, product marketing strategy, app store optimization, and social media analytics",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani",
|
||||
"url": "https://alirezarezvani.com"
|
||||
},
|
||||
"homepage": "https://github.com/alirezarezvani/claude-skills/tree/main/marketing-skill",
|
||||
"repository": "https://github.com/alirezarezvani/claude-skills",
|
||||
"license": "MIT"
|
||||
}
|
||||
192
marketplace.json
Normal file
192
marketplace.json
Normal file
@@ -0,0 +1,192 @@
|
||||
{
|
||||
"name": "claude-code-skills",
|
||||
"owner": {
|
||||
"name": "Alireza Rezvani",
|
||||
"url": "https://alirezarezvani.com"
|
||||
},
|
||||
"description": "Production-ready skill packages for Claude AI - 48 expert skills across marketing, engineering, product, C-level advisory, project management, and regulatory compliance",
|
||||
"homepage": "https://github.com/alirezarezvani/claude-skills",
|
||||
"repository": "https://github.com/alirezarezvani/claude-skills",
|
||||
"plugins": [
|
||||
{
|
||||
"name": "marketing-skills",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "marketing-skill"
|
||||
},
|
||||
"description": "5 marketing skills: content creator, demand generation, product marketing, ASO, social media analytics",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["marketing", "content", "seo", "demand-gen", "social-media"],
|
||||
"category": "marketing"
|
||||
},
|
||||
{
|
||||
"name": "engineering-skills",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "engineering-team"
|
||||
},
|
||||
"description": "18 engineering skills: architecture, frontend, backend, fullstack, QA, DevOps, security, AI/ML, data engineering",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["engineering", "architecture", "frontend", "backend", "devops", "security", "ai", "ml", "data"],
|
||||
"category": "development"
|
||||
},
|
||||
{
|
||||
"name": "product-skills",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "product-team"
|
||||
},
|
||||
"description": "5 product skills: product manager toolkit, agile product owner, product strategist, UX researcher, UI design system",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["product", "pm", "agile", "ux", "design-system"],
|
||||
"category": "product"
|
||||
},
|
||||
{
|
||||
"name": "c-level-skills",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "c-level-advisor"
|
||||
},
|
||||
"description": "2 C-level advisory skills: CEO advisor, CTO advisor",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["ceo", "cto", "executive", "strategy", "leadership"],
|
||||
"category": "leadership"
|
||||
},
|
||||
{
|
||||
"name": "pm-skills",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "project-management"
|
||||
},
|
||||
"description": "6 project management skills: senior PM, scrum master, Jira expert, Confluence expert, Atlassian admin, template creator",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["project-management", "scrum", "agile", "jira", "confluence", "atlassian"],
|
||||
"category": "project-management"
|
||||
},
|
||||
{
|
||||
"name": "ra-qm-skills",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "ra-qm-team"
|
||||
},
|
||||
"description": "12 regulatory affairs & quality management skills for HealthTech/MedTech: ISO 13485, MDR, FDA, GDPR, ISO 27001 compliance",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["regulatory", "quality", "compliance", "iso-13485", "mdr", "fda", "gdpr", "medtech"],
|
||||
"category": "compliance"
|
||||
},
|
||||
{
|
||||
"name": "content-creator",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "marketing-skill/content-creator"
|
||||
},
|
||||
"description": "Brand voice analysis, SEO optimization, content frameworks for marketing content creation",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["content", "seo", "brand-voice", "marketing"],
|
||||
"category": "marketing"
|
||||
},
|
||||
{
|
||||
"name": "demand-gen",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "marketing-skill/marketing-demand-acquisition"
|
||||
},
|
||||
"description": "Demand generation, paid media, SEO, partnerships for Series A+ startups",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["demand-gen", "paid-media", "acquisition", "marketing"],
|
||||
"category": "marketing"
|
||||
},
|
||||
{
|
||||
"name": "fullstack-engineer",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "engineering-team/senior-fullstack"
|
||||
},
|
||||
"description": "End-to-end application development with Next.js, GraphQL, PostgreSQL",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["fullstack", "nextjs", "graphql", "postgresql"],
|
||||
"category": "development"
|
||||
},
|
||||
{
|
||||
"name": "aws-architect",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "engineering-team/aws-solution-architect"
|
||||
},
|
||||
"description": "AWS solution architecture with serverless, cost optimization, and security best practices",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["aws", "cloud", "serverless", "architecture"],
|
||||
"category": "development"
|
||||
},
|
||||
{
|
||||
"name": "product-manager",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "product-team/product-manager-toolkit"
|
||||
},
|
||||
"description": "RICE prioritization, customer interview analysis, PRD templates for product managers",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["product-management", "rice", "prd", "prioritization"],
|
||||
"category": "product"
|
||||
},
|
||||
{
|
||||
"name": "scrum-master",
|
||||
"source": {
|
||||
"type": "github",
|
||||
"repo": "alirezarezvani/claude-skills",
|
||||
"path": "project-management/scrum-master-agent"
|
||||
},
|
||||
"description": "Agile facilitation, sprint planning, retrospectives for Scrum teams",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani"
|
||||
},
|
||||
"keywords": ["scrum", "agile", "sprint", "retrospective"],
|
||||
"category": "project-management"
|
||||
}
|
||||
]
|
||||
}
|
||||
12
product-team/.claude-plugin/plugin.json
Normal file
12
product-team/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "product-skills",
|
||||
"description": "5 production-ready product skills: product manager toolkit, agile product owner, product strategist, UX researcher designer, and UI design system",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani",
|
||||
"url": "https://alirezarezvani.com"
|
||||
},
|
||||
"homepage": "https://github.com/alirezarezvani/claude-skills/tree/main/product-team",
|
||||
"repository": "https://github.com/alirezarezvani/claude-skills",
|
||||
"license": "MIT"
|
||||
}
|
||||
12
project-management/.claude-plugin/plugin.json
Normal file
12
project-management/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "pm-skills",
|
||||
"description": "6 production-ready project management skills for Atlassian users: senior PM, scrum master, Jira expert, Confluence expert, Atlassian admin, and template creator with MCP integration",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani",
|
||||
"url": "https://alirezarezvani.com"
|
||||
},
|
||||
"homepage": "https://github.com/alirezarezvani/claude-skills/tree/main/project-management",
|
||||
"repository": "https://github.com/alirezarezvani/claude-skills",
|
||||
"license": "MIT"
|
||||
}
|
||||
12
ra-qm-team/.claude-plugin/plugin.json
Normal file
12
ra-qm-team/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "ra-qm-skills",
|
||||
"description": "12 production-ready regulatory affairs & quality management skills for HealthTech/MedTech: ISO 13485, MDR 2017/745, FDA, ISO 27001, GDPR compliance expertise",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Alireza Rezvani",
|
||||
"url": "https://alirezarezvani.com"
|
||||
},
|
||||
"homepage": "https://github.com/alirezarezvani/claude-skills/tree/main/ra-qm-team",
|
||||
"repository": "https://github.com/alirezarezvani/claude-skills",
|
||||
"license": "MIT"
|
||||
}
|
||||
Reference in New Issue
Block a user