@aipm-registry/cli 0.2.13 → 0.3.1
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 +11 -2
- package/dist/bin.cjs +406 -77
- package/dist/bin.cjs.map +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ aipm doctor
|
|
|
36
36
|
Start in any project folder:
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
aipm init
|
|
39
|
+
aipm init --target cursor
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
*Search the registry at [aipm-registry.com](https://aipm-registry.com) for a skill:*
|
|
@@ -47,6 +47,15 @@ aipm search sentry
|
|
|
47
47
|
|
|
48
48
|
Results show version, supported tools, description, publisher, license, and size.
|
|
49
49
|
|
|
50
|
+
For private organization packages, sign in once from the CLI:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
aipm login
|
|
54
|
+
aipm whoami
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
After login, `aipm add`, `aipm install`, `aipm update`, and `aipm search` automatically use your account access. Use `--token` or `AIPM_TOKEN` only for CI or bot installs.
|
|
58
|
+
|
|
50
59
|
Install a skill:
|
|
51
60
|
|
|
52
61
|
```bash
|
|
@@ -120,6 +129,7 @@ Full publishing guide: **[aipm-registry.com/publish](https://aipm-registry.com/p
|
|
|
120
129
|
|
|
121
130
|
```bash
|
|
122
131
|
aipm config
|
|
132
|
+
aipm logout
|
|
123
133
|
```
|
|
124
134
|
|
|
125
135
|
Default registry API: `https://api.aipm-registry.com`
|
|
@@ -132,4 +142,3 @@ For a local or private registry, use `--registry <url>`, or set `AIPM_REGISTRY_U
|
|
|
132
142
|
- **Publishing guide:** [aipm-registry.com/publish](https://aipm-registry.com/publish)
|
|
133
143
|
- **Docs & examples:** [aipm-registry.com/examples](https://aipm-registry.com/examples)
|
|
134
144
|
- **Source code:** [github.com/aipm-registry/aipm](https://github.com/aipm-registry/aipm)
|
|
135
|
-
|