@aipm-registry/cli 0.3.1 → 0.3.2
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 +8 -0
- package/dist/bin.cjs +349 -77
- package/dist/bin.cjs.map +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,6 +62,14 @@ Install a skill:
|
|
|
62
62
|
aipm add @scope/name@1.0.0 --target cursor
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
+
Some packages include temporary helper files and a manual AI setup prompt. After install, AIPM
|
|
66
|
+
prints the prompt path. You can show it again and clean helper files after setup:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
aipm show-prompt @scope/name
|
|
70
|
+
aipm cleanup @scope/name
|
|
71
|
+
```
|
|
72
|
+
|
|
65
73
|
See what is installed:
|
|
66
74
|
|
|
67
75
|
```bash
|