@ifi/oh-pi-prompts 0.3.6 → 0.4.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 +42 -0
- package/package.json +11 -2
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# @ifi/oh-pi-prompts
|
|
2
|
+
|
|
3
|
+
Prompt templates for pi.
|
|
4
|
+
|
|
5
|
+
## Included prompts
|
|
6
|
+
|
|
7
|
+
This package contains reusable prompt templates such as:
|
|
8
|
+
- review
|
|
9
|
+
- fix
|
|
10
|
+
- explain
|
|
11
|
+
- refactor
|
|
12
|
+
- test
|
|
13
|
+
- commit
|
|
14
|
+
- document
|
|
15
|
+
- optimize
|
|
16
|
+
- security
|
|
17
|
+
- pr
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pi install npm:@ifi/oh-pi-prompts
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Or install the full bundle:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npx @ifi/oh-pi
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Package layout
|
|
32
|
+
|
|
33
|
+
```text
|
|
34
|
+
prompts/
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Templates are markdown files intended to be discovered and loaded by pi.
|
|
38
|
+
|
|
39
|
+
## Use case
|
|
40
|
+
|
|
41
|
+
Use this package when you want a ready-made library of prompt shortcuts and reusable task framing
|
|
42
|
+
for common development workflows.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ifi/oh-pi-prompts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Prompt templates for pi: review, fix, explain, refactor, test, commit, and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package"
|
|
@@ -14,5 +14,14 @@
|
|
|
14
14
|
"prompts",
|
|
15
15
|
"README.md"
|
|
16
16
|
],
|
|
17
|
-
"license": "MIT"
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/ifiokjr/oh-pi.git",
|
|
21
|
+
"directory": "packages/prompts"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/ifiokjr/oh-pi/tree/main/packages/prompts",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/ifiokjr/oh-pi/issues"
|
|
26
|
+
}
|
|
18
27
|
}
|