prpm 2.1.18 → 2.1.20
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.
|
@@ -35,6 +35,11 @@
|
|
|
35
35
|
"type": "string",
|
|
36
36
|
"description": "Path to custom system prompt file using {file:./path} syntax"
|
|
37
37
|
},
|
|
38
|
+
"maxSteps": {
|
|
39
|
+
"type": "integer",
|
|
40
|
+
"minimum": 1,
|
|
41
|
+
"description": "Maximum number of iterations the agent can run. Unlimited if not set."
|
|
42
|
+
},
|
|
38
43
|
"tools": {
|
|
39
44
|
"type": "object",
|
|
40
45
|
"description": "Enable/disable specific tools. Supports wildcards (e.g., 'mymcp_*')",
|
|
@@ -71,9 +71,34 @@
|
|
|
71
71
|
"chatmode",
|
|
72
72
|
"hook",
|
|
73
73
|
"plugin",
|
|
74
|
-
"server"
|
|
74
|
+
"server",
|
|
75
|
+
"snippet"
|
|
75
76
|
]
|
|
76
77
|
},
|
|
78
|
+
"snippet": {
|
|
79
|
+
"type": "object",
|
|
80
|
+
"description": "Configuration for snippet packages. Snippets are content that gets appended to existing files (AGENTS.md, CLAUDE.md, etc.)",
|
|
81
|
+
"properties": {
|
|
82
|
+
"target": {
|
|
83
|
+
"type": "string",
|
|
84
|
+
"description": "Target file to append the snippet to",
|
|
85
|
+
"examples": ["AGENTS.md", "CLAUDE.md", "CONVENTIONS.md"]
|
|
86
|
+
},
|
|
87
|
+
"position": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"description": "Where to insert the snippet in the target file. Use 'append', 'prepend', or 'section:## Header Name' to insert after a specific section.",
|
|
90
|
+
"pattern": "^(append|prepend|section:.+)$",
|
|
91
|
+
"default": "append",
|
|
92
|
+
"examples": ["append", "prepend", "section:## Tools", "section:## Guidelines"]
|
|
93
|
+
},
|
|
94
|
+
"header": {
|
|
95
|
+
"type": "string",
|
|
96
|
+
"description": "Optional section header to wrap the snippet content",
|
|
97
|
+
"examples": ["My Custom Section", "Project Guidelines"]
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"required": ["target"]
|
|
101
|
+
},
|
|
77
102
|
"author": {
|
|
78
103
|
"description": "Package author",
|
|
79
104
|
"oneOf": [
|
|
@@ -304,7 +329,8 @@
|
|
|
304
329
|
"chatmode",
|
|
305
330
|
"hook",
|
|
306
331
|
"plugin",
|
|
307
|
-
"server"
|
|
332
|
+
"server",
|
|
333
|
+
"snippet"
|
|
308
334
|
]
|
|
309
335
|
},
|
|
310
336
|
"name": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prpm",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.20",
|
|
4
4
|
"description": "Prompt Package Manager CLI - Install and manage prompt-based files",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -45,11 +45,12 @@
|
|
|
45
45
|
"license": "MIT",
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@octokit/rest": "^22.0.0",
|
|
48
|
-
"@pr-pm/converters": "^2.1.
|
|
49
|
-
"@pr-pm/registry-client": "^2.3.
|
|
50
|
-
"@pr-pm/types": "^2.1.
|
|
48
|
+
"@pr-pm/converters": "^2.1.21",
|
|
49
|
+
"@pr-pm/registry-client": "^2.3.20",
|
|
50
|
+
"@pr-pm/types": "^2.1.21",
|
|
51
51
|
"ajv": "^8.17.1",
|
|
52
52
|
"ajv-formats": "^3.0.1",
|
|
53
|
+
"chalk": "^5.6.2",
|
|
53
54
|
"commander": "^11.1.0",
|
|
54
55
|
"jsonwebtoken": "^9.0.2",
|
|
55
56
|
"posthog-node": "^5.10.0",
|
|
@@ -71,9 +71,34 @@
|
|
|
71
71
|
"chatmode",
|
|
72
72
|
"hook",
|
|
73
73
|
"plugin",
|
|
74
|
-
"server"
|
|
74
|
+
"server",
|
|
75
|
+
"snippet"
|
|
75
76
|
]
|
|
76
77
|
},
|
|
78
|
+
"snippet": {
|
|
79
|
+
"type": "object",
|
|
80
|
+
"description": "Configuration for snippet packages. Snippets are content that gets appended to existing files (AGENTS.md, CLAUDE.md, etc.)",
|
|
81
|
+
"properties": {
|
|
82
|
+
"target": {
|
|
83
|
+
"type": "string",
|
|
84
|
+
"description": "Target file to append the snippet to",
|
|
85
|
+
"examples": ["AGENTS.md", "CLAUDE.md", "CONVENTIONS.md"]
|
|
86
|
+
},
|
|
87
|
+
"position": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"description": "Where to insert the snippet in the target file. Use 'append', 'prepend', or 'section:## Header Name' to insert after a specific section.",
|
|
90
|
+
"pattern": "^(append|prepend|section:.+)$",
|
|
91
|
+
"default": "append",
|
|
92
|
+
"examples": ["append", "prepend", "section:## Tools", "section:## Guidelines"]
|
|
93
|
+
},
|
|
94
|
+
"header": {
|
|
95
|
+
"type": "string",
|
|
96
|
+
"description": "Optional section header to wrap the snippet content",
|
|
97
|
+
"examples": ["My Custom Section", "Project Guidelines"]
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"required": ["target"]
|
|
101
|
+
},
|
|
77
102
|
"author": {
|
|
78
103
|
"description": "Package author",
|
|
79
104
|
"oneOf": [
|
|
@@ -304,7 +329,8 @@
|
|
|
304
329
|
"chatmode",
|
|
305
330
|
"hook",
|
|
306
331
|
"plugin",
|
|
307
|
-
"server"
|
|
332
|
+
"server",
|
|
333
|
+
"snippet"
|
|
308
334
|
]
|
|
309
335
|
},
|
|
310
336
|
"name": {
|