How to Install PM Skills Marketplace in Claude Code: A Step-by-Step Guide
To install the PM Skills Marketplace in Claude Code, run claude plugin marketplace add phuryn/pm-skills to register the marketplace, then install individual plugins using claude plugin install <plugin-name>@pm-skills.
The PM Skills Marketplace is a modular plugin ecosystem for product managers that integrates directly with Claude Code. Hosted in the phuryn/pm-skills repository, this marketplace ships nine specialized plugins containing domain-specific skills and slash commands. Each plugin bundles structured knowledge with executable workflows that run inside your Claude Code environment.
What Is the PM Skills Marketplace?
The PM Skills Marketplace is a plugin-based architecture that extends Claude Code with product management capabilities. Unlike monolithic tools, it separates concerns into nine distinct plugins—such as pm-toolkit, pm-product-strategy, and pm-execution—each containing skills (knowledge modules) and commands (slash-commands that chain skills together).
According to the repository's README.md, the marketplace follows a two-phase installation: first registering the marketplace source, then selectively installing the plugins you need. This modular approach ensures you only load the capabilities relevant to your current workflow.
Prerequisites
Before installing, ensure you have:
- Claude Code CLI installed and authenticated on your system
- GitHub access to reach the
phuryn/pm-skillsrepository - Claude Code version that supports the plugin marketplace (see
CLAUDE.mdin the repository for version-specific notes)
Installation Steps
Step 1: Add the Marketplace
Register the marketplace source so Claude Code knows where to fetch plugin definitions:
claude plugin marketplace add phuryn/pm-skills
This command creates the registry entry pointing to the phuryn/pm-skills repository. After execution, Claude Code can resolve plugin names against this marketplace.
Step 2: Install Individual Plugins
Once the marketplace is registered, install specific plugins using the <plugin-name>@pm-skills syntax. You can install all nine plugins or select only those matching your needs:
# Install the core toolkit first
claude plugin install pm-toolkit@pm-skills
# Strategy and discovery plugins
claude plugin install pm-product-strategy@pm-skills
claude plugin install pm-product-discovery@pm-skills
claude plugin install pm-market-research@pm-skills
# Analytics and growth plugins
claude plugin install pm-data-analytics@pm-skills
claude plugin install pm-marketing-growth@pm-skills
# Execution and shipping plugins
claude plugin install pm-go-to-market@pm-skills
claude plugin install pm-execution@pm-skills
claude plugin install pm-ai-shipping@pm-skills
Each installation pulls the skill files and command definitions from the repository's plugin directories (e.g., pm-toolkit/, pm-execution/) into your local Claude Code environment.
Available Plugins in the Marketplace
The repository defines nine modular plugins under the Available Plugins section of README.md:
- pm-toolkit – Core utilities and shared skills used by other plugins
- pm-product-strategy – Strategy canvases, vision frameworks, and competitive positioning
- pm-product-discovery – User research synthesis and opportunity identification
- pm-market-research – Market sizing, competitive analysis, and trend evaluation
- pm-data-analytics – Metrics definition, analytics implementation guidance, and data interpretation
- pm-marketing-growth – Growth loops, acquisition strategies, and retention frameworks
- pm-go-to-market – Launch planning, positioning, and cross-functional coordination
- pm-execution – PRD generation, OKR tracking, and roadmap management (documented in
pm-execution/README.md) - pm-ai-shipping – AI-assisted development workflows and shipping accelerators
Using PM Skills Commands
After installation, invoke commands using slash notation. The plugins-register commands automatically load skills from the installed plugin directories:
# Run a full product discovery workflow
/discover AI-powered meeting summarizer for remote teams
# Create a product strategy canvas
/strategy B2B project-management tool for agencies
# Generate a PRD from a feature idea
/write-prd Smart notification system that reduces alert fatigue
Commands chain together the skills defined in each plugin's skill files, executing the domain-specific logic packaged in repositories like pm-product-strategy/ and pm-execution/.
Key Repository Files
Understanding the source structure helps troubleshoot installations:
README.md– Central hub with installation instructions and plugin overview (referenced athttps://github.com/phuryn/pm-skills/blob/main/README.md)CLAUDE.md– Official guidance for Claude agents and version compatibility notespm-toolkit/README.md– Demonstrates the concrete layout of skills and commands for the core pluginpm-product-strategy/README.md– Example of strategy-focused plugin organizationpm-execution/README.md– Shows execution-oriented skills including PRD and roadmap commands
These files define the marketplace's architecture (plugins → skills → commands) and provide the exact installation commands referenced above.
Summary
- Register first: Use
claude plugin marketplace add phuryn/pm-skillsto enable the marketplace source - Install selectively: Use
claude plugin install <name>@pm-skillsto pull only the plugins you need from the nine available options - Verify files: Check
README.mdandCLAUDE.mdfor the latest installation requirements and version compatibility - Execute commands: After installation, use slash commands like
/discover,/strategy, and/write-prdto invoke PM skills
Frequently Asked Questions
Do I need to install all nine plugins to use the PM Skills Marketplace?
No. The marketplace is designed for modular installation. You can install only the plugins relevant to your current workflow—such as pm-product-strategy for planning or pm-execution for documentation—and add others later using the same claude plugin install command.
Where does Claude Code store the installed PM Skills files?
Claude Code downloads the skill files and command definitions from the phuryn/pm-skills repository into your local Claude Code environment. The specific storage location depends on your Claude Code installation, but the files are pulled from the plugin directories (e.g., pm-toolkit/, pm-execution/) as defined in the repository structure.
What is the difference between adding a marketplace and installing a plugin?
Adding a marketplace (claude plugin marketplace add) registers the source location so Claude Code knows where to find plugin definitions. Installing a plugin (claude plugin install) actually downloads the specific plugin's skills and commands into your local environment. You must add the marketplace once before you can install any of its plugins.
Can I use PM Skills commands immediately after installing the plugins?
Yes. Once the installation completes, the slash commands (like /discover, /strategy, and /write-prd) are immediately available in your Claude Code session. The commands work by chaining together the skills contained in the installed plugin directories, as implemented in the repository's command handlers.
Have a question about this repo?
These articles cover the highlights, but your codebase questions are specific. Give your agent direct access to the source. Share this with your agent to get started:
curl -s "https://instagit.com/install.md" Maintain an open-source project? Get it listed too →