load-skills 0.3.0 → 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 +1 -1
- package/dist/load-skills.js +1 -3
- package/package.json +8 -8
package/README.md
CHANGED
package/dist/load-skills.js
CHANGED
|
@@ -193,9 +193,7 @@ async function inferScriptType(filePath) {
|
|
|
193
193
|
if (firstLine.includes("ruby")) {
|
|
194
194
|
return "ruby";
|
|
195
195
|
}
|
|
196
|
-
if (firstLine.includes("node") ||
|
|
197
|
-
firstLine.includes("deno") ||
|
|
198
|
-
firstLine.includes("bun")) {
|
|
196
|
+
if (firstLine.includes("node") || firstLine.includes("deno")) {
|
|
199
197
|
return "javascript";
|
|
200
198
|
}
|
|
201
199
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "load-skills",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Load and validate agent skills from configurable paths.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"fmt": "prettier -w .",
|
|
20
20
|
"fmt:check": "prettier -c .",
|
|
21
21
|
"prepare": "husky",
|
|
22
|
-
"precommit:check": "
|
|
22
|
+
"precommit:check": "pnpm run typecheck && pnpm run test && pnpm run fmt:check",
|
|
23
23
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
24
24
|
"test": "vitest run"
|
|
25
25
|
},
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
},
|
|
41
41
|
"homepage": "https://github.com/agent-tooling/load-skills#readme",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"yaml": "
|
|
43
|
+
"yaml": "2.8.2"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@types/node": "
|
|
47
|
-
"husky": "
|
|
48
|
-
"prettier": "
|
|
49
|
-
"typescript": "
|
|
50
|
-
"vitest": "
|
|
46
|
+
"@types/node": "25.5.0",
|
|
47
|
+
"husky": "9.1.7",
|
|
48
|
+
"prettier": "3.8.1",
|
|
49
|
+
"typescript": "5.9.3",
|
|
50
|
+
"vitest": "4.1.0"
|
|
51
51
|
}
|
|
52
52
|
}
|