@dennisrongo/skills 0.1.1 → 0.1.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/README.md CHANGED
@@ -8,7 +8,7 @@ A curated, fine-tunable library of [Claude Code](https://docs.claude.com/en/docs
8
8
 
9
9
  ### From npm (recommended)
10
10
 
11
- The package is published as [`@dennisrongo/skills`](https://www.npmjs.com/package/@dennisrongo/skills). The installed binary is `claude-skills`.
11
+ The package is published as [`@dennisrongo/skills`](https://www.npmjs.com/package/@dennisrongo/skills). The installed binary is `skills`.
12
12
 
13
13
  ```bash
14
14
  # See what's in the library
@@ -34,7 +34,7 @@ Or install once and call it directly:
34
34
 
35
35
  ```bash
36
36
  npm install -g @dennisrongo/skills
37
- claude-skills list
37
+ skills list
38
38
  ```
39
39
 
40
40
  ### From GitHub (for the latest `main`)
@@ -54,17 +54,17 @@ npx github:dennisrongo/claude-skills install
54
54
 
55
55
  ```bash
56
56
  # bash / zsh — add to ~/.bashrc or ~/.zshrc
57
- alias claude-skills="npx --yes github:dennisrongo/claude-skills"
57
+ alias skills="npx --yes github:dennisrongo/claude-skills"
58
58
 
59
59
  # fish — add to ~/.config/fish/config.fish
60
- alias claude-skills "npx --yes github:dennisrongo/claude-skills"
60
+ alias skills "npx --yes github:dennisrongo/claude-skills"
61
61
  ```
62
62
 
63
63
  Then:
64
64
 
65
65
  ```bash
66
- claude-skills list
67
- claude-skills install --all
66
+ skills list
67
+ skills install --all
68
68
  ```
69
69
 
70
70
  ### Pinning a version
@@ -101,7 +101,7 @@ node bin/claude-skills.js list
101
101
  | [`pr-review`](./skills/pr-review/SKILL.md) | Conduct a structured PR / diff review prioritized correctness → design → tests → security → performance → readability, with categorized feedback (`blocking` / `suggestion` / `question` / `nit` / `praise`). |
102
102
  | [`write-a-skill`](./skills/write-a-skill/SKILL.md) | Author a new Claude Code skill — interview-driven scaffolding that produces a properly-structured `SKILL.md` (trigger-rich YAML description, "When to use", workflow, examples, anti-patterns), drops it in the right location (library `skills/`, project `./.claude/skills/`, or global `~/.claude/skills/`), updates the README skills table when extending this library, and runs a review checklist focused on the failure mode that matters most — under-triggering descriptions. Triggers on "create/write/add a skill", "/write-a-skill", or a pasted SKILL.md URL with "one like this". |
103
103
 
104
- Run `claude-skills list` to see this list with install status, or browse [`skills/`](./skills) directly.
104
+ Run `skills list` to see this list with install status, or browse [`skills/`](./skills) directly.
105
105
 
106
106
  ## How Claude Code finds these skills
107
107
 
@@ -116,13 +116,13 @@ This CLI just copies skill folders to one of those locations. Nothing magic.
116
116
 
117
117
  | Command | What it does |
118
118
  |---|---|
119
- | `claude-skills list` | List skills available in the library, marking which are installed |
120
- | `claude-skills installed` | List skills currently installed |
121
- | `claude-skills install` | Interactive multi-select picker |
122
- | `claude-skills install <name>...` | Install one or more skills by name |
123
- | `claude-skills install --all` | Install every skill in the library |
124
- | `claude-skills remove <name>...` | Remove installed skill(s) |
125
- | `claude-skills remove --all` | Remove every installed skill |
119
+ | `skills list` | List skills available in the library, marking which are installed |
120
+ | `skills installed` | List skills currently installed |
121
+ | `skills install` | Interactive multi-select picker |
122
+ | `skills install <name>...` | Install one or more skills by name |
123
+ | `skills install --all` | Install every skill in the library |
124
+ | `skills remove <name>...` | Remove installed skill(s) |
125
+ | `skills remove --all` | Remove every installed skill |
126
126
 
127
127
  ## Flags
128
128
 
@@ -14,11 +14,12 @@ const VERSION = require('../package.json').version;
14
14
 
15
15
  function printHelp() {
16
16
  console.log(`
17
- ${kleur.bold('claude-skills')} ${kleur.dim('v' + VERSION)}
17
+ ${kleur.bold('@dennisrongo/skills')} ${kleur.dim('v' + VERSION)}
18
18
  A curated library of Claude Code skills.
19
19
 
20
20
  ${kleur.bold('USAGE')}
21
- npx claude-skills <command> [options]
21
+ npx @dennisrongo/skills <command> [options]
22
+ skills <command> [options] ${kleur.dim('# after `npm install -g @dennisrongo/skills`')}
22
23
 
23
24
  ${kleur.bold('COMMANDS')}
24
25
  list List skills available in the library
@@ -38,11 +39,11 @@ ${kleur.bold('OPTIONS')}
38
39
  -v, --version Show version
39
40
 
40
41
  ${kleur.bold('EXAMPLES')}
41
- npx claude-skills list
42
- npx claude-skills install ${kleur.dim('# interactive picker')}
43
- npx claude-skills install pdf docx ${kleur.dim('# specific skills')}
44
- npx claude-skills install --all -p ${kleur.dim('# all skills, in project')}
45
- npx claude-skills remove pdf
42
+ npx @dennisrongo/skills list
43
+ npx @dennisrongo/skills install ${kleur.dim('# interactive picker')}
44
+ npx @dennisrongo/skills install pdf docx ${kleur.dim('# specific skills')}
45
+ npx @dennisrongo/skills install --all -p ${kleur.dim('# all skills, in project')}
46
+ npx @dennisrongo/skills remove pdf
46
47
  `);
47
48
  }
48
49
 
@@ -178,7 +179,7 @@ async function main() {
178
179
 
179
180
  default:
180
181
  console.error(kleur.red(`Unknown command: ${command}`));
181
- console.error(kleur.dim(`Run "npx claude-skills help" to see available commands.`));
182
+ console.error(kleur.dim(`Run "npx @dennisrongo/skills help" to see available commands.`));
182
183
  process.exit(1);
183
184
  }
184
185
  }
package/package.json CHANGED
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "@dennisrongo/skills",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "A curated, fine-tunable library of Claude Code skills. Install globally or per-project via npx.",
5
5
  "bin": {
6
- "claude-skills": "bin/claude-skills.js",
7
6
  "skills": "bin/claude-skills.js"
8
7
  },
9
8
  "files": [