prpm 1.1.7 → 1.1.9
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/dist/index.js +154 -105
- package/dist/schemas/agents-md.schema.json +2 -1
- package/dist/schemas/canonical.schema.json +1 -1
- package/dist/schemas/claude-agent.schema.json +15 -10
- package/dist/schemas/claude-hook.schema.json +5 -3
- package/dist/schemas/claude-skill.schema.json +3 -12
- package/dist/schemas/claude-slash-command.schema.json +2 -6
- package/dist/schemas/claude.schema.json +2 -1
- package/dist/schemas/continue.schema.json +2 -1
- package/dist/schemas/copilot.schema.json +2 -1
- package/dist/schemas/cursor-command.schema.json +2 -1
- package/dist/schemas/cursor.schema.json +2 -16
- package/dist/schemas/droid-hook.schema.json +103 -0
- package/dist/schemas/droid-skill.schema.json +46 -0
- package/dist/schemas/droid-slash-command.schema.json +53 -0
- package/dist/schemas/droid.schema.json +2 -1
- package/dist/schemas/gemini-md.schema.json +24 -0
- package/dist/schemas/gemini.schema.json +3 -2
- package/dist/schemas/kiro-agent.schema.json +2 -1
- package/dist/schemas/{kiro-hooks.schema.json → kiro-hook.schema.json} +3 -2
- package/dist/schemas/kiro-steering.schema.json +2 -1
- package/dist/schemas/opencode-slash-command.schema.json +60 -0
- package/dist/schemas/opencode.schema.json +16 -10
- package/dist/schemas/ruler.schema.json +2 -1
- package/dist/schemas/windsurf.schema.json +2 -1
- package/package.json +4 -4
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$id": "https://prpm.dev/schemas/opencode.
|
|
3
|
+
"$id": "https://registry.prpm.dev/api/v1/schemas/opencode.json",
|
|
4
|
+
"$comment": "https://opencode.ai/docs/agents/",
|
|
4
5
|
"title": "OpenCode Agent Format",
|
|
5
6
|
"description": "JSON Schema for OpenCode Agents - markdown files with YAML frontmatter stored in .opencode/agent/",
|
|
6
7
|
"type": "object",
|
|
@@ -8,30 +9,35 @@
|
|
|
8
9
|
"properties": {
|
|
9
10
|
"frontmatter": {
|
|
10
11
|
"type": "object",
|
|
11
|
-
"required": ["description"],
|
|
12
|
+
"required": ["description", "mode"],
|
|
12
13
|
"properties": {
|
|
13
14
|
"description": {
|
|
14
15
|
"type": "string",
|
|
15
|
-
"description": "Brief
|
|
16
|
+
"description": "Brief explanation of the agent's purpose and use cases (required)"
|
|
16
17
|
},
|
|
17
18
|
"mode": {
|
|
18
19
|
"type": "string",
|
|
19
20
|
"enum": ["subagent", "primary", "all"],
|
|
20
|
-
"description": "Determines
|
|
21
|
+
"description": "Determines how the agent can be used: 'primary' (main assistant), 'subagent' (spawned by primary), or 'all' (both contexts). Required field.",
|
|
22
|
+
"default": "all"
|
|
21
23
|
},
|
|
22
24
|
"model": {
|
|
23
25
|
"type": "string",
|
|
24
|
-
"description": "Override default
|
|
26
|
+
"description": "Override default model (e.g., 'anthropic/claude-sonnet-4-20250514')"
|
|
25
27
|
},
|
|
26
28
|
"temperature": {
|
|
27
29
|
"type": "number",
|
|
28
30
|
"minimum": 0.0,
|
|
29
31
|
"maximum": 1.0,
|
|
30
|
-
"description": "
|
|
32
|
+
"description": "Controls response randomness (0.0-1.0). Defaults to model-specific values (typically 0, or 0.55 for Qwen models)"
|
|
33
|
+
},
|
|
34
|
+
"prompt": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"description": "Path to custom system prompt file using {file:./path} syntax"
|
|
31
37
|
},
|
|
32
38
|
"tools": {
|
|
33
39
|
"type": "object",
|
|
34
|
-
"description": "Enable/disable specific
|
|
40
|
+
"description": "Enable/disable specific tools. Supports wildcards (e.g., 'mymcp_*')",
|
|
35
41
|
"properties": {
|
|
36
42
|
"write": { "type": "boolean" },
|
|
37
43
|
"edit": { "type": "boolean" },
|
|
@@ -46,7 +52,7 @@
|
|
|
46
52
|
},
|
|
47
53
|
"permission": {
|
|
48
54
|
"type": "object",
|
|
49
|
-
"description": "
|
|
55
|
+
"description": "Manages tool access with values: 'ask', 'allow', or 'deny'",
|
|
50
56
|
"properties": {
|
|
51
57
|
"edit": {
|
|
52
58
|
"type": "string",
|
|
@@ -72,10 +78,10 @@
|
|
|
72
78
|
},
|
|
73
79
|
"disable": {
|
|
74
80
|
"type": "boolean",
|
|
75
|
-
"description": "
|
|
81
|
+
"description": "When true, disables the agent"
|
|
76
82
|
}
|
|
77
83
|
},
|
|
78
|
-
"additionalProperties":
|
|
84
|
+
"additionalProperties": true
|
|
79
85
|
},
|
|
80
86
|
"content": {
|
|
81
87
|
"type": "string",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$id": "https://prpm.dev/schemas/ruler.
|
|
3
|
+
"$id": "https://registry.prpm.dev/api/v1/schemas/ruler.json",
|
|
4
|
+
"$comment": "https://okigu.com/ruler",
|
|
4
5
|
"title": "Ruler Rules Format",
|
|
5
6
|
"description": "JSON Schema for Ruler .ruler/ format - plain markdown without frontmatter, used for AI coding assistant instructions",
|
|
6
7
|
"type": "object",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$id": "https://prpm.dev/schemas/windsurf.
|
|
3
|
+
"$id": "https://registry.prpm.dev/api/v1/schemas/windsurf.json",
|
|
4
|
+
"$comment": "https://docs.windsurf.com/windsurf/cascade/memories#rules",
|
|
4
5
|
"title": "Windsurf Rules Format",
|
|
5
6
|
"description": "JSON Schema for Windsurf .windsurf/rules format - plain markdown without frontmatter",
|
|
6
7
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prpm",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"description": "Prompt Package Manager CLI - Install and manage prompt-based files",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"license": "MIT",
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@octokit/rest": "^22.0.0",
|
|
48
|
-
"@pr-pm/converters": "^1.1.
|
|
49
|
-
"@pr-pm/registry-client": "^2.1.
|
|
50
|
-
"@pr-pm/types": "^1.1.
|
|
48
|
+
"@pr-pm/converters": "^1.1.9",
|
|
49
|
+
"@pr-pm/registry-client": "^2.1.9",
|
|
50
|
+
"@pr-pm/types": "^1.1.9",
|
|
51
51
|
"ajv": "^8.17.1",
|
|
52
52
|
"ajv-formats": "^3.0.1",
|
|
53
53
|
"commander": "^11.1.0",
|