@safeskill/cli 0.3.1 → 0.3.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/CHANGELOG.md +4 -0
- package/bin/cli.mjs +2 -0
- package/dist/cli.mjs +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.2
|
|
4
|
+
|
|
5
|
+
- Fixed the published npm binary entrypoint so `npx @safeskill/cli` executes the bundled CLI instead of exiting with no output.
|
|
6
|
+
|
|
3
7
|
## 0.3.1
|
|
4
8
|
|
|
5
9
|
- Added upstream synchronization infrastructure with `vercel-labs/skills` kept as a subtree reference under `upstream/vercel-labs-skills`.
|
package/bin/cli.mjs
CHANGED
package/dist/cli.mjs
CHANGED
|
@@ -2900,7 +2900,7 @@ async function saveSelectedAgents(agents) {
|
|
|
2900
2900
|
lock.lastSelectedAgents = agents;
|
|
2901
2901
|
await writeSkillLock(lock);
|
|
2902
2902
|
}
|
|
2903
|
-
var version$1 = "0.3.
|
|
2903
|
+
var version$1 = "0.3.2";
|
|
2904
2904
|
const isCancelled$1 = (value) => typeof value === "symbol";
|
|
2905
2905
|
async function isSourcePrivate(source) {
|
|
2906
2906
|
const ownerRepo = parseOwnerRepo(source);
|
|
@@ -6734,6 +6734,7 @@ async function main() {
|
|
|
6734
6734
|
}
|
|
6735
6735
|
}
|
|
6736
6736
|
function isCliEntrypoint() {
|
|
6737
|
+
if (process.env.SAFESKILL_CLI_ENTRYPOINT === "1") return true;
|
|
6737
6738
|
const entrypoint = process.argv[1];
|
|
6738
6739
|
return entrypoint ? import.meta.url === pathToFileURL(entrypoint).href : false;
|
|
6739
6740
|
}
|