skillfish 1.0.1 → 1.0.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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Install AI agent skills from GitHub with a single command.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npx skillfish owner/repo
|
|
6
|
+
npx skillfish add owner/repo
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
## Overview
|
|
@@ -159,7 +159,7 @@ This CLI collects anonymous, aggregate install counts to understand skill popula
|
|
|
159
159
|
To opt out, set `DO_NOT_TRACK=1` in your environment:
|
|
160
160
|
|
|
161
161
|
```bash
|
|
162
|
-
DO_NOT_TRACK=1 npx skillfish owner/repo
|
|
162
|
+
DO_NOT_TRACK=1 npx skillfish add owner/repo
|
|
163
163
|
```
|
|
164
164
|
|
|
165
165
|
Telemetry is also automatically disabled in CI environments (`CI=true`).
|