@aipm-registry/cli 0.1.1 → 0.1.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 +39 -4
- package/dist/bin.cjs +7753 -6639
- package/dist/bin.cjs.map +4 -4
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -7,6 +7,9 @@ Claude.
|
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
9
|
npm install -g @aipm-registry/cli
|
|
10
|
+
aipm --version
|
|
11
|
+
aipm doctor
|
|
12
|
+
aipm config
|
|
10
13
|
```
|
|
11
14
|
|
|
12
15
|
## Use
|
|
@@ -20,7 +23,7 @@ aipm init
|
|
|
20
23
|
Install a skill from the public registry:
|
|
21
24
|
|
|
22
25
|
```bash
|
|
23
|
-
aipm add @
|
|
26
|
+
aipm add @scope/name@1.0.0 --target cursor --ci
|
|
24
27
|
```
|
|
25
28
|
|
|
26
29
|
List installed skills:
|
|
@@ -29,14 +32,46 @@ List installed skills:
|
|
|
29
32
|
aipm list
|
|
30
33
|
```
|
|
31
34
|
|
|
35
|
+
Search the registry:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
aipm search sentry
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Update installed skills:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
aipm update
|
|
45
|
+
```
|
|
46
|
+
|
|
32
47
|
This package is bundled. Installing `@aipm-registry/cli` gives you the `aipm`
|
|
33
48
|
command without needing to install any other AIPM npm packages manually.
|
|
34
49
|
|
|
35
50
|
Publishing is currently approval-only:
|
|
36
51
|
|
|
37
52
|
```bash
|
|
38
|
-
|
|
53
|
+
aipm publish init --name @team/review-helper
|
|
54
|
+
aipm publish explain
|
|
55
|
+
aipm publish add .
|
|
56
|
+
aipm publish status
|
|
57
|
+
aipm publish preview
|
|
58
|
+
aipm publish validate
|
|
59
|
+
aipm publish token --package @team/review-helper
|
|
60
|
+
AIPM_TOKEN=<5-minute-token> aipm publish push --yes
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Use `.aipmignore` to exclude local-only files from publishing. AIPM also
|
|
64
|
+
rejects common private key, env, Azure connection string, publish profile, and
|
|
65
|
+
large package mistakes before upload.
|
|
66
|
+
|
|
67
|
+
Helpful publishing commands:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
aipm publish open --docs
|
|
71
|
+
aipm publish open --package @team/review-helper
|
|
72
|
+
aipm doctor --publish
|
|
39
73
|
```
|
|
40
74
|
|
|
41
|
-
The default registry is `https://aipm-registry.com`. Use `--registry <url
|
|
42
|
-
`AIPM_REGISTRY=<url>` for local or private
|
|
75
|
+
The default registry API is `https://api.aipm-registry.com`. Use `--registry <url>`,
|
|
76
|
+
`AIPM_REGISTRY_URL=<url>`, or `AIPM_REGISTRY=<url>` for local or private
|
|
77
|
+
registries.
|