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.
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/draft-07/schema#",
3
- "$id": "https://prpm.dev/schemas/opencode.schema.json",
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 description of the agent's purpose (required)"
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 usage context - subagent (spawned), primary (main), or all (both)"
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 LLM (e.g., 'anthropic/claude-sonnet-4-20250514')"
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": "Control response creativity (0.0-1.0 range)"
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 tool access",
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": "Granular control over tool usage (ask/allow/deny)",
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": "Boolean to deactivate the agent"
81
+ "description": "When true, disables the agent"
76
82
  }
77
83
  },
78
- "additionalProperties": false
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.schema.json",
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.schema.json",
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.7",
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.7",
49
- "@pr-pm/registry-client": "^2.1.7",
50
- "@pr-pm/types": "^1.1.7",
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",