prpm 1.0.4 → 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.
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://prpm.dev/schemas/gemini.schema.json",
4
+ "title": "Gemini Custom Commands Format",
5
+ "description": "JSON Schema for Gemini CLI custom commands (.toml format)",
6
+ "type": "object",
7
+ "required": ["prompt"],
8
+ "properties": {
9
+ "prompt": {
10
+ "type": "string",
11
+ "description": "The instruction text sent to the Gemini model. Can span multiple lines and supports placeholders like {{args}}, !{...} for shell commands, and @{...} for file injection."
12
+ },
13
+ "description": {
14
+ "type": "string",
15
+ "description": "A brief, single-line explanation of the command's purpose. Appears in /help menu. If omitted, system generates a generic description from filename."
16
+ }
17
+ },
18
+ "additionalProperties": false,
19
+ "examples": [
20
+ {
21
+ "prompt": "Review the code for potential bugs and suggest improvements.",
22
+ "description": "Code review assistant"
23
+ },
24
+ {
25
+ "prompt": "Generate unit tests for {{args}}",
26
+ "description": "Generate unit tests for the specified file"
27
+ }
28
+ ]
29
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prpm",
3
- "version": "1.0.4",
3
+ "version": "1.1.0",
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.0.4",
49
- "@pr-pm/registry-client": "^2.0.4",
50
- "@pr-pm/types": "^1.0.4",
48
+ "@pr-pm/converters": "^1.1.0",
49
+ "@pr-pm/registry-client": "^2.1.0",
50
+ "@pr-pm/types": "^1.1.0",
51
51
  "ajv": "^8.17.1",
52
52
  "ajv-formats": "^3.0.1",
53
53
  "commander": "^11.1.0",