skillsy 0.0.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 ADDED
@@ -0,0 +1,10 @@
1
+ # skillsy
2
+
3
+ Bootstrap package for Skillsy CLI.
4
+
5
+ ## Usage
6
+
7
+ - `npx skillsy@latest`
8
+ - `npx skillsy@latest --help`
9
+
10
+ This package will soon download and run the native Skillsy CLI binary.
package/bin/skillsy.js ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("skillsy is reserved successfully.");
4
+ console.log("skillsy will be enabled soon.");
5
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "skillsy",
3
+ "version": "0.0.1",
4
+ "description": "Skillsy CLI bootstrap package (placeholder)",
5
+ "bin": {
6
+ "skillsy": "bin/skillsy.js"
7
+ },
8
+ "files": [
9
+ "bin/skillsy.js",
10
+ "README.md"
11
+ ],
12
+ "license": "UNLICENSED",
13
+ "engines": {
14
+ "node": ">=18"
15
+ }
16
+ }