@demig0d2/skills 1.0.0 → 1.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.
Files changed (2) hide show
  1. package/bin/cli.js +3 -3
  2. package/package.json +2 -2
package/bin/cli.js CHANGED
@@ -7,7 +7,7 @@ const os = require("os");
7
7
  // ─── Constants ────────────────────────────────────────────────────────────────
8
8
 
9
9
  const PACKAGE_NAME = "@demig0d2/skills";
10
- const VERSION = "1.0.0";
10
+ const VERSION = "1.0.1";
11
11
 
12
12
  const SKILLS = {
13
13
  "book-writer": {
@@ -104,7 +104,7 @@ function printHelp() {
104
104
  console.log(` install <skill> Install a skill to ~/.claude/skills/`);
105
105
  console.log(` install all Install all skills at once`);
106
106
  console.log(` remove <skill> Remove an installed skill`);
107
- console.log(` remove all Remove all demigod skills`);
107
+ console.log(` remove all Remove all skills`);
108
108
  console.log(` list List all available skills`);
109
109
  console.log(` status Show which skills are installed`);
110
110
  console.log(` info <skill> Show details about a skill`);
@@ -226,7 +226,7 @@ function removeSkill(skillName) {
226
226
  }
227
227
 
228
228
  function removeAll() {
229
- console.log(`\n Removing all @demig0d2/skills...\n`);
229
+ console.log(`\n Removing all skills...\n`);
230
230
  for (const skillName of ALL_SKILLS) {
231
231
  removeSkill(skillName);
232
232
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demig0d2/skills",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Claude skill suite by Vivid (Dheelep N) — book writing pipeline, humanizer, skill upgrader, and more",
5
5
  "keywords": [
6
6
  "claude",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "main": "bin/cli.js",
29
29
  "bin": {
30
- "demigod-skills": "bin/cli.js"
30
+ "skills": "bin/cli.js"
31
31
  },
32
32
  "files": [
33
33
  "bin/",