@skillport/cli 0.1.7 → 1.0.0

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -3138,7 +3138,7 @@ async function manageCommand(skillId, action) {
3138
3138
 
3139
3139
  // src/index.ts
3140
3140
  var program = new Command();
3141
- program.name("skillport").description("SkillPort \u2014 open-source secure skill distribution for OpenClaw").version("0.1.7");
3141
+ program.name("skillport").description("SkillPort \u2014 open-source secure skill distribution for OpenClaw").version("1.0.0");
3142
3142
  program.command("init").description("Generate Ed25519 key pair for signing").action(initCommand);
3143
3143
  program.command("scan <path>").description("Run security scan on a skill directory or .ssp file").action(scanCommand);
3144
3144
  program.command("export <path>").description("Export a skill directory as a SkillPort package (.ssp)").option("-o, --output <file>", "Output file path").option("-y, --yes", "Non-interactive mode (include all, skip prompts)").option("--id <id>", "Skill ID (author-slug/skill-slug)").option("--name <name>", "Skill name").option("--description <desc>", "Skill description").option("--skill-version <ver>", "Skill version (semver)").option("--author <name>", "Author name").option("--openclaw-compat <range>", "OpenClaw compatibility range").option("--os <os...>", "Compatible OS (macos, linux, windows)").action(exportCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillport/cli",
3
- "version": "0.1.7",
3
+ "version": "1.0.0",
4
4
  "description": "SkillPort CLI — open-source secure skill distribution for OpenClaw. Export, scan, sign, and install AI skill packages.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  ],
28
28
  "publishConfig": {
29
29
  "access": "public",
30
- "tag": "beta"
30
+ "tag": "latest"
31
31
  },
32
32
  "scripts": {
33
33
  "build": "rm -rf dist && node scripts/bundle.js",