From 4b95c9bf0068153ed430b1cc1f5e5232d0be6e26 Mon Sep 17 00:00:00 2001 From: Reza Rezvani Date: Wed, 7 Jan 2026 18:39:28 +0100 Subject: [PATCH] feat(marketplace): add Claude Code native marketplace support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- INSTALLATION.md | 88 +++++++- README.md | 46 ++++- c-level-advisor/.claude-plugin/plugin.json | 12 ++ engineering-team/.claude-plugin/plugin.json | 12 ++ marketing-skill/.claude-plugin/plugin.json | 12 ++ marketplace.json | 192 ++++++++++++++++++ product-team/.claude-plugin/plugin.json | 12 ++ project-management/.claude-plugin/plugin.json | 12 ++ ra-qm-team/.claude-plugin/plugin.json | 12 ++ 9 files changed, 393 insertions(+), 5 deletions(-) create mode 100644 c-level-advisor/.claude-plugin/plugin.json create mode 100644 engineering-team/.claude-plugin/plugin.json create mode 100644 marketing-skill/.claude-plugin/plugin.json create mode 100644 marketplace.json create mode 100644 product-team/.claude-plugin/plugin.json create mode 100644 project-management/.claude-plugin/plugin.json create mode 100644 ra-qm-team/.claude-plugin/plugin.json diff --git a/INSTALLATION.md b/INSTALLATION.md index d3abb85..3f438e1 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -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. diff --git a/README.md b/README.md index 7fdf044..4bca66c 100644 --- a/README.md +++ b/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. --- diff --git a/c-level-advisor/.claude-plugin/plugin.json b/c-level-advisor/.claude-plugin/plugin.json new file mode 100644 index 0000000..5728a40 --- /dev/null +++ b/c-level-advisor/.claude-plugin/plugin.json @@ -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" +} diff --git a/engineering-team/.claude-plugin/plugin.json b/engineering-team/.claude-plugin/plugin.json new file mode 100644 index 0000000..4e538c8 --- /dev/null +++ b/engineering-team/.claude-plugin/plugin.json @@ -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" +} diff --git a/marketing-skill/.claude-plugin/plugin.json b/marketing-skill/.claude-plugin/plugin.json new file mode 100644 index 0000000..9fcc08a --- /dev/null +++ b/marketing-skill/.claude-plugin/plugin.json @@ -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" +} diff --git a/marketplace.json b/marketplace.json new file mode 100644 index 0000000..d49357e --- /dev/null +++ b/marketplace.json @@ -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" + } + ] +} diff --git a/product-team/.claude-plugin/plugin.json b/product-team/.claude-plugin/plugin.json new file mode 100644 index 0000000..9704d4c --- /dev/null +++ b/product-team/.claude-plugin/plugin.json @@ -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" +} diff --git a/project-management/.claude-plugin/plugin.json b/project-management/.claude-plugin/plugin.json new file mode 100644 index 0000000..391915f --- /dev/null +++ b/project-management/.claude-plugin/plugin.json @@ -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" +} diff --git a/ra-qm-team/.claude-plugin/plugin.json b/ra-qm-team/.claude-plugin/plugin.json new file mode 100644 index 0000000..42fb115 --- /dev/null +++ b/ra-qm-team/.claude-plugin/plugin.json @@ -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" +}