@h0tp/shucky 0.1.0 → 0.4.4
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/CHANGELOG.md +131 -29
- package/LICENSE +21 -21
- package/NOTICE +24 -0
- package/README.md +214 -119
- package/SKILL.md +168 -124
- package/bin/shucky.js +13 -13
- package/config.json +28 -28
- package/lib/agents.js +163 -0
- package/lib/approvals.js +50 -50
- package/lib/archive.js +173 -0
- package/lib/cli.js +782 -118
- package/lib/config.js +52 -52
- package/lib/discover.js +143 -0
- package/lib/fetch.js +303 -0
- package/lib/find.js +162 -0
- package/lib/lock.js +119 -0
- package/lib/place.js +247 -0
- package/lib/registry.js +141 -0
- package/lib/report.js +53 -53
- package/lib/rules.js +162 -162
- package/lib/safeurl.js +139 -0
- package/lib/scan.js +148 -148
- package/lib/sources.js +311 -0
- package/package.json +43 -41
package/package.json
CHANGED
|
@@ -1,41 +1,43 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@h0tp/shucky",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"publishConfig": {
|
|
5
|
-
"access": "public"
|
|
6
|
-
},
|
|
7
|
-
"description": "
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/h0tp-ftw/shucky.git"
|
|
11
|
-
},
|
|
12
|
-
"homepage": "https://github.com/h0tp-ftw/shucky#readme",
|
|
13
|
-
"bin": {
|
|
14
|
-
"shucky": "bin/shucky.js"
|
|
15
|
-
},
|
|
16
|
-
"type": "commonjs",
|
|
17
|
-
"files": [
|
|
18
|
-
"bin",
|
|
19
|
-
"lib",
|
|
20
|
-
"config.json",
|
|
21
|
-
"SKILL.md",
|
|
22
|
-
"CHANGELOG.md"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@h0tp/shucky",
|
|
3
|
+
"version": "0.4.4",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"description": "Find, vet, and install agent skills from anywhere — a zero-dependency safety scanner + installer for SKILL.md packages. It shucks every skill before it lands.",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/h0tp-ftw/shucky.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/h0tp-ftw/shucky#readme",
|
|
13
|
+
"bin": {
|
|
14
|
+
"shucky": "bin/shucky.js"
|
|
15
|
+
},
|
|
16
|
+
"type": "commonjs",
|
|
17
|
+
"files": [
|
|
18
|
+
"bin",
|
|
19
|
+
"lib",
|
|
20
|
+
"config.json",
|
|
21
|
+
"SKILL.md",
|
|
22
|
+
"CHANGELOG.md",
|
|
23
|
+
"NOTICE"
|
|
24
|
+
],
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=16"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"test": "node test/run-all.js",
|
|
30
|
+
"prepublishOnly": "node test/run-all.js"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"agent-skills",
|
|
34
|
+
"skill",
|
|
35
|
+
"security",
|
|
36
|
+
"scanner",
|
|
37
|
+
"installer",
|
|
38
|
+
"SKILL.md",
|
|
39
|
+
"prompt-injection",
|
|
40
|
+
"supply-chain"
|
|
41
|
+
],
|
|
42
|
+
"license": "MIT"
|
|
43
|
+
}
|