prompt-suite 1.0.3 → 1.0.4
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 +12 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,9 +32,17 @@ The installer will:
|
|
|
32
32
|
|
|
33
33
|
## 🔄 Updating / Upgrading
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
To update `prompt-suite` to the latest version:
|
|
36
36
|
|
|
37
|
-
###
|
|
37
|
+
### 1. Update the package
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npm install prompt-suite@latest -D
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### 2. Update resources and prompts
|
|
44
|
+
|
|
45
|
+
#### Safe Mode (Default):
|
|
38
46
|
|
|
39
47
|
Preserves your customizations by skipping modified files:
|
|
40
48
|
|
|
@@ -42,7 +50,7 @@ Preserves your customizations by skipping modified files:
|
|
|
42
50
|
npx prompt-suite init
|
|
43
51
|
```
|
|
44
52
|
|
|
45
|
-
|
|
53
|
+
#### Force Overwrite:
|
|
46
54
|
|
|
47
55
|
Resets everything to latest defaults (⚠️ overwrites your changes):
|
|
48
56
|
|
|
@@ -50,7 +58,7 @@ Resets everything to latest defaults (⚠️ overwrites your changes):
|
|
|
50
58
|
npx prompt-suite init --force
|
|
51
59
|
```
|
|
52
60
|
|
|
53
|
-
|
|
61
|
+
#### Conflict Resolution:
|
|
54
62
|
|
|
55
63
|
If a file exists but differs from the new version, a `.new` file will be created (e.g., `README.md.new`) for manual comparison and merging.
|
|
56
64
|
|