yeka-skills 0.2.4 → 0.2.5
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/dist/cli.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1967,7 +1967,7 @@ var enumerateSkillFiles = async (folderPath) => {
|
|
|
1967
1967
|
if (!entries.some((entry) => entry.relativePath === SKILL_MANIFEST_PATH)) {
|
|
1968
1968
|
throw new CliError(
|
|
1969
1969
|
"skill_md_missing",
|
|
1970
|
-
`The folder has no SKILL.md file. Add one at ${path7.join(folderPath, SKILL_MANIFEST_PATH)} so
|
|
1970
|
+
`The folder has no SKILL.md file. Add one at ${path7.join(folderPath, SKILL_MANIFEST_PATH)} so the checks and your colleagues can tell what the skill does.`
|
|
1971
1971
|
);
|
|
1972
1972
|
}
|
|
1973
1973
|
return {
|
|
@@ -1994,7 +1994,7 @@ var lintWarningsFor = async (folderPath, entries) => {
|
|
|
1994
1994
|
}
|
|
1995
1995
|
if (CURL_PIPE_SHELL_PATTERN.test(text)) {
|
|
1996
1996
|
warnings.push(
|
|
1997
|
-
`${relativePath} pipes curl or wget straight into a shell.
|
|
1997
|
+
`${relativePath} pipes curl or wget straight into a shell. The safety checks look for exactly this, so make sure the command is safe.`
|
|
1998
1998
|
);
|
|
1999
1999
|
}
|
|
2000
2000
|
if (LONG_BASE64_PATTERN.test(text)) {
|
|
@@ -2573,7 +2573,7 @@ var logoutCommand = async (context = {}) => {
|
|
|
2573
2573
|
// package.json
|
|
2574
2574
|
var package_default = {
|
|
2575
2575
|
name: "yeka-skills",
|
|
2576
|
-
version: "0.2.
|
|
2576
|
+
version: "0.2.5",
|
|
2577
2577
|
description: "Install, update, and remove private Gemography agent skills",
|
|
2578
2578
|
type: "module",
|
|
2579
2579
|
license: "UNLICENSED",
|