Publishing to PRPM
Learn how to publish your AI tool configurations to the PRPM registry.Prerequisites
- PRPM CLI installed:
npm install -g prpm - GitHub account: Required for authentication
- Valid prpm.json: Package manifest in your repository
Authentication
Login using GitHub:Publishing Your First Package
1. Create prpm.json
Let AI help you create prpm.json! Install the prpm-json package for expert guidance:The AI will then help you structure your manifest with proper fields, tags, and examples.
2. Validate
Test your manifest before publishing:- ✓ prpm.json syntax is valid
- ✓ All required fields are present
- ✓ All files exist
- ✓ Tags are properly formatted
- ✓ Version follows semver
3. Publish
Publish your package:Publishing Multiple Packages
For repositories containing multiple packages, use thepackages array:
Versioning
Follow Semantic Versioning:| Change Type | Version Bump | Example |
|---|---|---|
| Bug fix, typo | Patch | 1.0.0 → 1.0.1 |
| New feature (backward compatible) | Minor | 1.0.0 → 1.1.0 |
| Breaking change | Major | 1.0.0 → 2.0.0 |