Getting Started with PRPM
Learn how to discover, test, and install AI prompts and rules in minutes
Quick Navigation
What is PRPM?
PRPM (Prompt Package Manager) is like npm, but for AI prompts. It lets you discover, test, and install pre-built prompts, rules, and skills for AI coding assistants.
The Problem PRPM Solves
What You Get
Installation
Install the PRPM CLI globally using npm:
$ npm install -g prpmVerify the installation:
$ prpm --versionDiscovering Packages
There are three ways to find packages:
1. Browse the Web Registry
Recommended for beginners. Browse all packages with full descriptions, README files, and the actual prompt contents.
Browse Packages2. Search from CLI
Quick searches when you know what you're looking for.
$ prpm search typescript$ prpm search "test driven development"$ prpm trending3. Browse Collections
Curated bundles of packages for common workflows. Install multiple packages at once.
$ prpm collections$ prpm collections search frontendTesting Packages in the Playground
The Playground lets you test any package with real AI models (Claude, GPT-4, etc.) before installing.
How It Works
Testing on the Web
On any package page, click the "Test in Playground" button to try it instantly.
Try the PlaygroundTesting from CLI
$ prpm playground --package @user/code-reviewer --input "Review this: console.log(x)"Interactive mode for multi-turn conversations:
$ prpm playground --package @user/brainstorm-assistant --interactiveComparison mode (with vs without package):
$ prpm playground --package @user/typescript-helper --input "Explain generics" --comparePlayground Credits
1 credit = 5,000 tokens. Most tests cost 1-3 credits.
Installing Packages
Once you've reviewed and tested a package, installing is simple:
Auto-Detect Format
Let PRPM detect your editor automatically:
$ prpm install @username/typescript-rulesPRPM checks for .cursor/, .claude/, .continue/, etc. and installs to the right place.
Specify Format
Or explicitly choose your editor:
$ prpm install @username/typescript-rules --as cursor$ prpm install @username/typescript-rules --as claude$ prpm install @username/typescript-rules --as windsurfInstall Collections
Install multiple packages at once with collections:
$ prpm install collection/nextjs-proThis installs 5+ packages: React best practices, TypeScript rules, Tailwind helpers, Next.js patterns, and component architecture.
Next Steps
Ready to get started?
Install the CLI and discover your first packages in minutes
$ npm install -g prpm