prpm 1.0.3 โ 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +86 -358
- package/dist/index.js +2472 -66
- package/dist/schemas/agents-md.schema.json +23 -0
- package/dist/schemas/canonical.schema.json +435 -0
- package/dist/schemas/claude-agent.schema.json +57 -0
- package/dist/schemas/claude-hook.schema.json +68 -0
- package/dist/schemas/claude-skill.schema.json +51 -0
- package/dist/schemas/claude-slash-command.schema.json +63 -0
- package/dist/schemas/claude.schema.json +51 -0
- package/dist/schemas/continue.schema.json +97 -0
- package/dist/schemas/copilot.schema.json +75 -0
- package/dist/schemas/cursor-command.schema.json +26 -0
- package/dist/schemas/cursor.schema.json +88 -0
- package/dist/schemas/gemini.schema.json +29 -0
- package/dist/schemas/kiro-hooks.schema.json +119 -0
- package/dist/schemas/kiro-steering.schema.json +73 -0
- package/dist/schemas/windsurf.schema.json +21 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,428 +1,156 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/pr-pm/prpm/main/packages/webapp/public/logo.svg" alt="PRPM Logo" width="200" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# PRPM - The Package Manager for AI Prompts
|
|
2
6
|
|
|
3
|
-
|
|
7
|
+
The universal registry for AI coding tools.
|
|
8
|
+
|
|
9
|
+
Discover and install cross-platform prompts, rules, skills, and agents that work with Cursor, Claude, Continue, Windsurf, GitHub Copilot, OpenAI Codex, Google Gemini, Kiro, and more โ all from one file.
|
|
4
10
|
|
|
5
11
|
```bash
|
|
6
12
|
npm install -g prpm
|
|
7
|
-
prpm install
|
|
13
|
+
prpm install collections/nextjs-pro # Entire Next.js setup in one command
|
|
8
14
|
```
|
|
15
|
+
Installs 20 packages: backend-architect, cloud-architect, database-architect, and more
|
|
9
16
|
|
|
10
|
-
|
|
17
|
+
7,5000+ cross platform packages
|
|
11
18
|
|
|
12
|
-
|
|
19
|
+
[Docs](https://docs.prpm.dev) | [Search Packages](https://prpm.dev/search) | [Search Collections](https://prpm.dev/search?tab=collections)
|
|
13
20
|
|
|
14
21
|
---
|
|
15
22
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
Skip installing packages one-by-one. Get curated bundles for your entire workflow:
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
# Install 5+ packages at once
|
|
22
|
-
prpm install collection/nextjs-pro
|
|
23
|
-
# โ Installs react-best-practices, typescript-strict, tailwind-helper,
|
|
24
|
-
# nextjs-patterns, component-architect
|
|
25
|
-
|
|
26
|
-
# Python data science stack
|
|
27
|
-
prpm install collection/python-data
|
|
28
|
-
# โ Installs pandas-helper, numpy-patterns, matplotlib-guide,
|
|
29
|
-
# jupyter-best-practices, ml-workflow
|
|
30
|
-
|
|
31
|
-
# Full-stack React
|
|
32
|
-
prpm install collection/react-fullstack
|
|
33
|
-
# โ Everything for React + Node + PostgreSQL (8 packages)
|
|
34
|
-
```
|
|
23
|
+

|
|
35
24
|
|
|
36
|
-
|
|
25
|
+
## Self Improve
|
|
26
|
+
Give your IDE the ability to self improve by installing packages that it finds useful:
|
|
27
|
+

|
|
37
28
|
|
|
38
29
|
---
|
|
39
30
|
|
|
40
|
-
##
|
|
31
|
+
## Universal Packages - Install Once, Use Anywhere
|
|
41
32
|
|
|
42
33
|
Every package works in **any** AI editor. No conversion tools, no separate downloads:
|
|
43
34
|
|
|
44
35
|
```bash
|
|
45
36
|
# Same package, different editors
|
|
46
|
-
prpm install @
|
|
47
|
-
prpm install @
|
|
48
|
-
prpm install @
|
|
49
|
-
prpm install @
|
|
50
|
-
prpm install @
|
|
51
|
-
prpm install @
|
|
52
|
-
|
|
53
|
-
# Or just let PRPM auto-detect
|
|
54
|
-
prpm install @username/react-best-practices # Installs in the right place automatically
|
|
37
|
+
prpm install @sanjeed5/react --as cursor # โ .cursor/rules/
|
|
38
|
+
prpm install @sanjeed5/react --as claude --subtype agent # โ .claude/agents/
|
|
39
|
+
prpm install @sanjeed5/react --as continue # โ .continue/prompts/
|
|
40
|
+
prpm install @sanjeed5/react --as windsurf # โ .windsurf/rules/
|
|
41
|
+
prpm install @sanjeed5/react --as copilot # โ .github/instructions/
|
|
42
|
+
prpm install @sanjeed5/react --as kiro # โ .kiro/steering/
|
|
55
43
|
```
|
|
56
44
|
|
|
57
|
-
|
|
45
|
+
## Discovery - Find What You Need
|
|
58
46
|
|
|
59
|
-
|
|
47
|
+
Browse packages with powerful discovery:
|
|
60
48
|
|
|
61
|
-
## Why PRPM?
|
|
62
|
-
|
|
63
|
-
### The Problem
|
|
64
49
|
```bash
|
|
65
|
-
#
|
|
66
|
-
1. Find cursor rule on GitHub
|
|
67
|
-
2. Copy raw file URL
|
|
68
|
-
3. Create .cursor/rules/something.md
|
|
69
|
-
4. Paste content
|
|
70
|
-
5. Repeat for every rule
|
|
71
|
-
6. Update manually when rules change
|
|
72
|
-
7. Do it all again for Claude/Continue/Windsurf
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
### The Solution
|
|
76
|
-
```bash
|
|
77
|
-
# PRPM workflow (simple)
|
|
78
|
-
prpm install collection/nextjs-pro # Entire setup (multiple packages)
|
|
79
|
-
# OR
|
|
80
|
-
prpm install @username/test-driven-development # Single package
|
|
81
|
-
prpm install @username/systematic-debugging
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
**It's npm for AI prompts. But it works everywhere.**
|
|
85
|
-
|
|
86
|
-
### Team Consistency
|
|
87
|
-
|
|
88
|
-
If you're working on a big project and some coworkers use Copilot, others use Claude, and sometimes it's Cursor, the only way to unify rules so it's consistent across the codebase is to use PRPM. It's an easy way to make sure everyone has the same rules across the team.
|
|
89
|
-
|
|
90
|
-
---
|
|
91
|
-
|
|
92
|
-
## Installation
|
|
93
|
-
|
|
94
|
-
```bash
|
|
95
|
-
# NPM (recommended)
|
|
96
|
-
npm install -g prpm
|
|
97
|
-
|
|
98
|
-
# Homebrew (macOS)
|
|
99
|
-
brew install khaliqgant/homebrew-prpm/prpm
|
|
100
|
-
```
|
|
101
|
-
|
|
102
|
-
---
|
|
103
|
-
|
|
104
|
-
## Quick Start
|
|
105
|
-
|
|
106
|
-
```bash
|
|
107
|
-
# Install a complete collection
|
|
108
|
-
prpm install collection/nextjs-pro
|
|
109
|
-
|
|
110
|
-
# Or browse and search
|
|
50
|
+
# Search by keyword
|
|
111
51
|
prpm search react
|
|
112
|
-
prpm
|
|
113
|
-
prpm collections
|
|
114
|
-
|
|
115
|
-
# Install individual packages
|
|
116
|
-
prpm install @username/test-driven-development
|
|
117
|
-
prpm install @username/react-best-practices --as cursor
|
|
118
|
-
|
|
119
|
-
# Check what's installed
|
|
120
|
-
prpm list
|
|
121
|
-
|
|
122
|
-
# Keep packages up to date
|
|
123
|
-
prpm outdated
|
|
124
|
-
prpm update
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
---
|
|
128
|
-
|
|
129
|
-
## Commands
|
|
130
|
-
|
|
131
|
-
### Collections
|
|
132
|
-
```bash
|
|
133
|
-
prpm collections # Browse available collections
|
|
134
|
-
prpm collections search frontend # Search collections
|
|
135
|
-
prpm collections info collection/nextjs-pro # View details
|
|
136
|
-
prpm install collection/nextjs-pro # Install a collection
|
|
137
|
-
```
|
|
138
|
-
|
|
139
|
-
### Package Management
|
|
140
|
-
```bash
|
|
141
|
-
prpm search react # Search packages
|
|
142
|
-
prpm install <package-name> # Install package
|
|
143
|
-
prpm install <package> --as cursor # Install for specific editor
|
|
144
|
-
prpm list # List installed
|
|
145
|
-
prpm uninstall <package-name> # Remove package
|
|
146
|
-
```
|
|
52
|
+
prpm search "test driven development"
|
|
147
53
|
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
prpm trending # Trending packages
|
|
151
|
-
prpm popular # Most popular packages
|
|
152
|
-
prpm info <package-name> # Package details
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
### Updates
|
|
156
|
-
```bash
|
|
157
|
-
prpm outdated # Check for updates
|
|
158
|
-
prpm update # Update all packages
|
|
159
|
-
prpm upgrade # Upgrade (including major versions)
|
|
160
|
-
```
|
|
54
|
+
# See what's trending
|
|
55
|
+
prpm trending
|
|
161
56
|
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
prpm whoami # Show current user
|
|
166
|
-
prpm publish # Publish a package
|
|
167
|
-
prpm init # Create prpm.json
|
|
168
|
-
```
|
|
57
|
+
# Get detailed info
|
|
58
|
+
prpm info @username/react-best-practices
|
|
59
|
+
# โ Shows: description, downloads, rating, tags, installation instructions
|
|
169
60
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
prpm
|
|
173
|
-
prpm
|
|
174
|
-
prpm config list # List all config
|
|
61
|
+
# Browse collections
|
|
62
|
+
prpm collections
|
|
63
|
+
prpm collections search frontend
|
|
64
|
+
prpm collections info collection/nextjs-pro
|
|
175
65
|
```
|
|
176
66
|
|
|
177
|
-
|
|
67
|
+
[CLI Reference](https://docs.prpm.dev/cli/overview)
|
|
178
68
|
|
|
179
69
|
---
|
|
180
70
|
|
|
181
|
-
##
|
|
71
|
+
## Playground
|
|
182
72
|
|
|
183
|
-
|
|
184
|
-
```bash
|
|
185
|
-
prpm install collection/nextjs-pro
|
|
186
|
-
# Installs 5+ packages in one command: React best practices, TypeScript config,
|
|
187
|
-
# Tailwind helpers, Next.js patterns, component architecture
|
|
188
|
-
```
|
|
73
|
+
Test packages interactively before installing:
|
|
189
74
|
|
|
190
|
-
### Switch Between Editors
|
|
191
75
|
```bash
|
|
192
|
-
#
|
|
193
|
-
prpm
|
|
76
|
+
# Try a package in the browser playground
|
|
77
|
+
prpm playground --package @username/react-best-practices
|
|
194
78
|
|
|
195
|
-
#
|
|
196
|
-
|
|
197
|
-
#
|
|
79
|
+
# Test with different AI models
|
|
80
|
+
# โ Opens browser playground at prpm.dev/playground
|
|
81
|
+
# โ Select model: Claude 3.5 Sonnet, GPT-4, etc.
|
|
82
|
+
# โ Test prompt with sample code
|
|
83
|
+
# โ See results before installing
|
|
198
84
|
```
|
|
199
85
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
---
|
|
86
|
+
**Features:**
|
|
87
|
+
- **Multi-Model Testing** - Try packages with Claude, GPT-4, and more
|
|
88
|
+
- **Free Credits** - 1,000 monthly credits for all logged in users
|
|
89
|
+
- **Live Results** - See how prompts perform in real-time
|
|
90
|
+
- **Save Sessions** - Resume testing later
|
|
91
|
+
- **Compare Models** - Test same prompt across different AI models
|
|
208
92
|
|
|
209
|
-
|
|
93
|
+
**[Try Playground โ](https://prpm.dev/playground)**
|
|
210
94
|
|
|
211
|
-
|
|
212
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
213
|
-
โ prpm install <package> --as cursor โ
|
|
214
|
-
โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโ
|
|
215
|
-
โ
|
|
216
|
-
โโ> Fetches from registry
|
|
217
|
-
โโ> Converts to Cursor format (server-side)
|
|
218
|
-
โโ> Installs to .cursor/rules/
|
|
219
|
-
โโ> Tracks in prpm.lock
|
|
220
|
-
```
|
|
221
|
-
|
|
222
|
-
**Smart Features:**
|
|
223
|
-
- **Auto-detection** - Detects Cursor vs Claude vs Continue vs Windsurf
|
|
224
|
-
- **Format conversion** - Server-side conversion to any editor format
|
|
225
|
-
- **Dependency resolution** - Handles package dependencies automatically
|
|
226
|
-
- **Version locking** - prpm-lock.json for consistent installs
|
|
227
|
-
- **Collections** - Install multiple packages as bundles
|
|
228
|
-
|
|
229
|
-
๐ **[Learn More](https://docs.prpm.dev/guides/format-conversion)**
|
|
230
|
-
|
|
231
|
-
---
|
|
232
|
-
|
|
233
|
-
## What Makes PRPM Different?
|
|
234
|
-
|
|
235
|
-
| Feature | PRPM | Manual Copying | Other Tools |
|
|
236
|
-
|---------|------|----------------|-------------|
|
|
237
|
-
| **Collections (multi-package installs)** | โ
| โ | โ |
|
|
238
|
-
| **Universal packages (any editor)** | โ
| โ | โ |
|
|
239
|
-
| **Server-side format conversion** | โ
| โ | โ |
|
|
240
|
-
| **Auto-updates** | โ
| โ | โ ๏ธ |
|
|
241
|
-
| **Version control** | โ
| โ | โ ๏ธ |
|
|
242
|
-
| **Dependency handling** | โ
| โ | โ |
|
|
243
|
-
| **Works with Cursor + Claude + Continue + Windsurf** | โ
| โ ๏ธ | โ |
|
|
244
|
-
| **Configures MCP servers (Claude Code)** | โ
| โ | โ |
|
|
245
|
-
|
|
246
|
-
---
|
|
247
|
-
|
|
248
|
-
## ๐ Package Library (2,100+)
|
|
249
|
-
|
|
250
|
-
- **๐ฏ Cursor Rules** - Next.js, React, Vue, Python, Laravel, TypeScript, mobile, testing, and hundreds more
|
|
251
|
-
- **๐ค Claude Skills & Agents** - Repository analysis, code review, architecture, specialized workflows
|
|
252
|
-
- **๐ Windsurf Rules** - Frontend, backend, mobile, DevOps, and full-stack development
|
|
253
|
-
- **๐ MCP Server Configs** - Auto-configure MCP servers for Claude Code
|
|
254
|
-
- **๐ฆ Collections** - Multi-package bundles for complete workflow setups
|
|
255
|
-
|
|
256
|
-
**Categories:** Frontend frameworks, Backend frameworks, Programming languages, Testing, Mobile development, Cloud & DevOps, AI & ML, Databases, Web3, Best practices, and more
|
|
257
|
-
|
|
258
|
-
๐ **[Browse Packages](https://prpm.dev/search)** | ๐ **[Documentation](https://docs.prpm.dev)**
|
|
259
|
-
|
|
260
|
-
---
|
|
261
|
-
|
|
262
|
-
## Configuration
|
|
263
|
-
|
|
264
|
-
PRPM stores configuration in `~/.prpmrc`:
|
|
265
|
-
|
|
266
|
-
```json
|
|
267
|
-
{
|
|
268
|
-
"registryUrl": "https://registry.prpm.dev",
|
|
269
|
-
"token": "your-auth-token",
|
|
270
|
-
"username": "your-username",
|
|
271
|
-
"defaultFormat": "cursor",
|
|
272
|
-
"telemetryEnabled": true
|
|
273
|
-
}
|
|
274
|
-
```
|
|
275
|
-
|
|
276
|
-
### Set Default Format
|
|
277
|
-
|
|
278
|
-
```bash
|
|
279
|
-
# Set default format for all installs
|
|
280
|
-
prpm config set defaultFormat cursor # or claude, continue, windsurf
|
|
281
|
-
```
|
|
282
|
-
|
|
283
|
-
### Environment Variables
|
|
284
|
-
|
|
285
|
-
- `PRPM_REGISTRY_URL` - Override registry URL
|
|
286
|
-
- `PRPM_NO_TELEMETRY` - Disable telemetry (set to "1" or "true")
|
|
287
|
-
|
|
288
|
-
๐ **[Configuration Guide](https://docs.prpm.dev/installation#configuration)**
|
|
289
|
-
|
|
290
|
-
---
|
|
291
|
-
|
|
292
|
-
## Project Structure
|
|
293
|
-
|
|
294
|
-
After installing packages, your project will look like:
|
|
295
|
-
|
|
296
|
-
```
|
|
297
|
-
my-project/
|
|
298
|
-
โโโ .cursor/rules/ # Cursor rules
|
|
299
|
-
โ โโโ react-rules.md
|
|
300
|
-
โโโ .claude/agents/ # Claude agents
|
|
301
|
-
โ โโโ typescript-best.md
|
|
302
|
-
โโโ .continue/ # Continue configs
|
|
303
|
-
โโโ .windsurf/ # Windsurf configs
|
|
304
|
-
โโโ .promptpm.json # Package registry
|
|
305
|
-
โโโ prpm-lock.json # Lock file
|
|
306
|
-
```
|
|
307
|
-
|
|
308
|
-
---
|
|
309
|
-
|
|
310
|
-
## Publishing Your Own Package
|
|
95
|
+
## Why PRPM?
|
|
311
96
|
|
|
97
|
+
### The Problem
|
|
312
98
|
```bash
|
|
313
|
-
#
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
# 4. Publish
|
|
323
|
-
prpm publish
|
|
99
|
+
# Current workflow (painful)
|
|
100
|
+
1. Find cursor rule on GitHub
|
|
101
|
+
2. Copy raw file URL
|
|
102
|
+
3. Create .cursor/rules/something.md
|
|
103
|
+
4. Paste content
|
|
104
|
+
5. Repeat for every rule
|
|
105
|
+
6. Update manually when rules change
|
|
106
|
+
7. Do it all again for Claude/Continue/Windsurf
|
|
324
107
|
```
|
|
325
108
|
|
|
326
|
-
###
|
|
327
|
-
|
|
328
|
-
```json
|
|
329
|
-
{
|
|
330
|
-
"name": "my-package",
|
|
331
|
-
"version": "1.0.0",
|
|
332
|
-
"description": "My awesome package",
|
|
333
|
-
"type": "cursor",
|
|
334
|
-
"format": "cursor",
|
|
335
|
-
"tags": ["react", "javascript"],
|
|
336
|
-
"files": [
|
|
337
|
-
"prpm.json",
|
|
338
|
-
".cursorrules",
|
|
339
|
-
"README.md"
|
|
340
|
-
]
|
|
341
|
-
}
|
|
342
|
-
```
|
|
109
|
+
### Team Consistency
|
|
343
110
|
|
|
344
|
-
|
|
111
|
+
If you're working on a big project and some coworkers use Copilot, others use Claude, and sometimes it's Cursor, the only way to unify rules so it's consistent across the codebase is to use PRPM. It's an easy way to make sure everyone has the same rules across the team.
|
|
345
112
|
|
|
346
|
-
|
|
113
|
+
## For Package Authors
|
|
347
114
|
|
|
348
|
-
|
|
115
|
+
### Share Your Packages
|
|
349
116
|
|
|
350
|
-
|
|
117
|
+
Package authors can publish to PRPM and reach users across all editors.
|
|
351
118
|
|
|
352
|
-
|
|
119
|
+
**How it works:**
|
|
120
|
+
- Authors publish in canonical format
|
|
121
|
+
- PRPM converts to all editor formats automatically
|
|
122
|
+
- Users install in their preferred editor
|
|
353
123
|
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
| `windsurf` | `.windsurf/` | Windsurf IDE configs |
|
|
360
|
-
| `copilot` | `.github/instructions/` | GitHub Copilot instructions |
|
|
361
|
-
| `kiro` | `.kiro/steering/` | Kiro steering files |
|
|
124
|
+
**Benefits:**
|
|
125
|
+
- At least 4x reach (Cursor + Claude + Continue + Windsurf users, + more)
|
|
126
|
+
- One package, works everywhere
|
|
127
|
+
- Version control and updates
|
|
128
|
+
- Download analytics
|
|
362
129
|
|
|
363
130
|
---
|
|
364
131
|
|
|
365
132
|
## Stats
|
|
366
133
|
|
|
367
|
-
- **
|
|
368
|
-
- **Universal package manager** - Works with Cursor, Claude, Continue, Windsurf
|
|
134
|
+
- **7,500+ packages** - Cursor rules, Claude skills/agents, Windsurf rules, MCP configs
|
|
135
|
+
- **Universal package manager** - Works with Cursor, Claude, Continue, Windsurf and more
|
|
369
136
|
- **100+ Collections** - Complete workflow setups in one command
|
|
370
|
-
- **6 editor formats** supported (server-side conversion)
|
|
371
|
-
|
|
372
|
-
---
|
|
373
|
-
|
|
374
|
-
## Documentation
|
|
375
|
-
|
|
376
|
-
### ๐ Official Documentation
|
|
377
|
-
|
|
378
|
-
**โก๏ธ [docs.prpm.dev](https://docs.prpm.dev) - Complete documentation**
|
|
379
|
-
|
|
380
|
-
**Quick Links:**
|
|
381
|
-
- ๐ [Getting Started](https://docs.prpm.dev/installation) - Install and configure PRPM
|
|
382
|
-
- ๐ป [CLI Reference](https://docs.prpm.dev/cli/commands) - All commands and options
|
|
383
|
-
- ๐ฆ [Collections Guide](https://docs.prpm.dev/concepts/collections) - Multi-package bundles
|
|
384
|
-
- ๐ [Format Conversion](https://docs.prpm.dev/concepts/formats) - Universal packages explained
|
|
385
|
-
- ๐ [MCP Servers](https://docs.prpm.dev/guides/mcp-servers) - Model Context Protocol configuration
|
|
386
|
-
|
|
387
|
-
---
|
|
388
|
-
|
|
389
|
-
## Support & Resources
|
|
390
|
-
|
|
391
|
-
- **Website**: https://prpm.dev
|
|
392
|
-
- **GitHub**: https://github.com/pr-pm/prpm
|
|
393
|
-
- **Issues**: https://github.com/pr-pm/prpm/issues
|
|
394
|
-
- **Documentation**: https://docs.prpm.dev
|
|
137
|
+
- **6+ editor formats** supported (server-side conversion)
|
|
395
138
|
|
|
396
|
-
---
|
|
397
139
|
|
|
398
140
|
## Contributing
|
|
399
141
|
|
|
400
142
|
We welcome contributions!
|
|
401
143
|
|
|
402
|
-
-
|
|
403
|
-
-
|
|
404
|
-
-
|
|
405
|
-
-
|
|
406
|
-
-
|
|
144
|
+
- **Add packages** - Submit your prompts (they'll work in all editors!)
|
|
145
|
+
- **Create collections** - Curate helpful package bundles
|
|
146
|
+
- **Report bugs** - Open issues
|
|
147
|
+
- **Suggest features** - Start discussions
|
|
148
|
+
- **Write tests** - Improve coverage
|
|
407
149
|
|
|
408
|
-
**[Contributing Guide โ](
|
|
150
|
+
**[Contributing Guide โ](CONTRIBUTING.md)**
|
|
409
151
|
|
|
410
152
|
---
|
|
411
153
|
|
|
412
154
|
## License
|
|
413
155
|
|
|
414
|
-
MIT License - See [LICENSE](
|
|
415
|
-
|
|
416
|
-
---
|
|
417
|
-
|
|
418
|
-
<div align="center">
|
|
419
|
-
|
|
420
|
-
**Stop copy-pasting. Start installing.**
|
|
421
|
-
|
|
422
|
-
**[Read the Docs](https://docs.prpm.dev)** | **[Browse Packages](https://prpm.dev)** | **[Get Started](#installation)**
|
|
423
|
-
|
|
424
|
-
_Collections install multiple curated packages with one command โข Packages work in all editors โข No manual copying needed_
|
|
425
|
-
|
|
426
|
-
Made with ๐ฅ by [@khaliqgant](https://github.com/khaliqgant)
|
|
427
|
-
|
|
428
|
-
</div>
|
|
156
|
+
MIT License - See [LICENSE](LICENSE)
|