skillfish 1.0.0 → 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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -3
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`).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillfish",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Install AI agent skills from GitHub with a single command",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,10 +16,10 @@
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",
19
- "url": "git+https://github.com/nichochar/skillfish.git"
19
+ "url": "git+https://github.com/knoxgraeme/skillfish.git"
20
20
  },
21
21
  "bugs": {
22
- "url": "https://github.com/nichochar/skillfish/issues"
22
+ "url": "https://github.com/knoxgraeme/skillfish/issues"
23
23
  },
24
24
  "scripts": {
25
25
  "build": "tsc",