@dennisrongo/skills 0.1.0 → 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 +17 -15
- package/bin/claude-skills.js +9 -8
- package/package.json +2 -2
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 `
|
|
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,10 +34,12 @@ Or install once and call it directly:
|
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
npm install -g @dennisrongo/skills
|
|
37
|
-
|
|
37
|
+
skills list
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
### From GitHub (
|
|
40
|
+
### From GitHub (for the latest `main`)
|
|
41
|
+
|
|
42
|
+
Useful if you want changes that haven't been released to npm yet.
|
|
41
43
|
|
|
42
44
|
```bash
|
|
43
45
|
npx github:dennisrongo/claude-skills list
|
|
@@ -52,17 +54,17 @@ npx github:dennisrongo/claude-skills install
|
|
|
52
54
|
|
|
53
55
|
```bash
|
|
54
56
|
# bash / zsh — add to ~/.bashrc or ~/.zshrc
|
|
55
|
-
alias
|
|
57
|
+
alias skills="npx --yes github:dennisrongo/claude-skills"
|
|
56
58
|
|
|
57
59
|
# fish — add to ~/.config/fish/config.fish
|
|
58
|
-
alias
|
|
60
|
+
alias skills "npx --yes github:dennisrongo/claude-skills"
|
|
59
61
|
```
|
|
60
62
|
|
|
61
63
|
Then:
|
|
62
64
|
|
|
63
65
|
```bash
|
|
64
|
-
|
|
65
|
-
|
|
66
|
+
skills list
|
|
67
|
+
skills install --all
|
|
66
68
|
```
|
|
67
69
|
|
|
68
70
|
### Pinning a version
|
|
@@ -99,7 +101,7 @@ node bin/claude-skills.js list
|
|
|
99
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`). |
|
|
100
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". |
|
|
101
103
|
|
|
102
|
-
Run `
|
|
104
|
+
Run `skills list` to see this list with install status, or browse [`skills/`](./skills) directly.
|
|
103
105
|
|
|
104
106
|
## How Claude Code finds these skills
|
|
105
107
|
|
|
@@ -114,13 +116,13 @@ This CLI just copies skill folders to one of those locations. Nothing magic.
|
|
|
114
116
|
|
|
115
117
|
| Command | What it does |
|
|
116
118
|
|---|---|
|
|
117
|
-
| `
|
|
118
|
-
| `
|
|
119
|
-
| `
|
|
120
|
-
| `
|
|
121
|
-
| `
|
|
122
|
-
| `
|
|
123
|
-
| `
|
|
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 |
|
|
124
126
|
|
|
125
127
|
## Flags
|
|
126
128
|
|
package/bin/claude-skills.js
CHANGED
|
@@ -14,11 +14,12 @@ const VERSION = require('../package.json').version;
|
|
|
14
14
|
|
|
15
15
|
function printHelp() {
|
|
16
16
|
console.log(`
|
|
17
|
-
${kleur.bold('
|
|
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
|
|
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
|
|
42
|
-
npx
|
|
43
|
-
npx
|
|
44
|
-
npx
|
|
45
|
-
npx
|
|
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
|
|
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,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dennisrongo/skills",
|
|
3
|
-
"version": "0.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
|
-
"
|
|
6
|
+
"skills": "bin/claude-skills.js"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
9
|
"bin/",
|