@spardutti/claude-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.
- package/README.md +31 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# @spardutti/claude-skills
|
|
2
|
+
|
|
3
|
+
Interactive CLI to install reusable [Claude Code](https://docs.anthropic.com/en/docs/claude-code) skills into any project.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @spardutti/claude-skills
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This will:
|
|
12
|
+
|
|
13
|
+
1. Fetch the latest skills from [GitHub](https://github.com/Spardutti/claude-skills)
|
|
14
|
+
2. Let you interactively select which skills to install
|
|
15
|
+
3. Copy them into your project's `.claude/skills/` directory
|
|
16
|
+
|
|
17
|
+
## Available Skills
|
|
18
|
+
|
|
19
|
+
| Skill | Description |
|
|
20
|
+
|-------|-------------|
|
|
21
|
+
| `react-use-effect` | React 19 useEffect best practices and anti-patterns |
|
|
22
|
+
| `single-responsibility` | Single responsibility, file size limits, complexity rules |
|
|
23
|
+
| `react-query` | TanStack React Query with query-key-factory patterns |
|
|
24
|
+
|
|
25
|
+
## What are Claude Code Skills?
|
|
26
|
+
|
|
27
|
+
Skills are markdown files placed in `.claude/skills/` that give Claude Code domain-specific knowledge and guidelines. They help Claude follow your team's patterns and best practices automatically.
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
MIT
|