claude-code-templates 1.0.0 → 1.0.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 +15 -14
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ The fastest way to get started is with `npx` (no installation required):
|
|
|
11
11
|
cd your-project
|
|
12
12
|
|
|
13
13
|
# Run the installer
|
|
14
|
-
npx
|
|
14
|
+
npx claude-code-templates
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
## 📋 How to Use
|
|
@@ -23,7 +23,7 @@ cd your-project-directory
|
|
|
23
23
|
|
|
24
24
|
### Step 2: Run the Installer
|
|
25
25
|
```bash
|
|
26
|
-
npx
|
|
26
|
+
npx claude-code-templates
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
### Step 3: Follow the Interactive Setup
|
|
@@ -43,7 +43,7 @@ claude
|
|
|
43
43
|
### Interactive Setup (Recommended)
|
|
44
44
|
```bash
|
|
45
45
|
cd my-react-app
|
|
46
|
-
npx
|
|
46
|
+
npx claude-code-templates
|
|
47
47
|
# Follow the prompts - it will detect React automatically!
|
|
48
48
|
```
|
|
49
49
|
|
|
@@ -51,42 +51,43 @@ npx create-claude-config
|
|
|
51
51
|
```bash
|
|
52
52
|
# React project
|
|
53
53
|
cd my-react-app
|
|
54
|
-
npx
|
|
54
|
+
npx claude-code-templates --language javascript-typescript --framework react
|
|
55
55
|
|
|
56
56
|
# Python Django project
|
|
57
57
|
cd my-django-app
|
|
58
|
-
npx
|
|
58
|
+
npx claude-code-templates --language python --framework django
|
|
59
59
|
|
|
60
60
|
# Node.js API
|
|
61
61
|
cd my-api
|
|
62
|
-
npx
|
|
62
|
+
npx claude-code-templates --language javascript-typescript --framework node
|
|
63
63
|
|
|
64
64
|
# Generic Python project
|
|
65
65
|
cd my-python-project
|
|
66
|
-
npx
|
|
66
|
+
npx claude-code-templates --language python
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
### Advanced Options
|
|
70
70
|
```bash
|
|
71
71
|
# Skip all prompts and use defaults
|
|
72
|
-
npx
|
|
72
|
+
npx claude-code-templates --yes
|
|
73
73
|
|
|
74
74
|
# See what would be installed without actually installing
|
|
75
|
-
npx
|
|
75
|
+
npx claude-code-templates --dry-run
|
|
76
76
|
|
|
77
77
|
# Install to a different directory
|
|
78
|
-
npx
|
|
78
|
+
npx claude-code-templates --directory /path/to/project
|
|
79
79
|
|
|
80
80
|
# Get help
|
|
81
|
-
npx
|
|
81
|
+
npx claude-code-templates --help
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
## 🔄 Alternative Commands
|
|
85
85
|
|
|
86
86
|
All these commands work exactly the same way:
|
|
87
87
|
```bash
|
|
88
|
-
npx
|
|
89
|
-
npx claude-code-
|
|
88
|
+
npx claude-code-templates # ✅ Recommended (package name)
|
|
89
|
+
npx claude-code-template # Singular alias
|
|
90
|
+
npx create-claude-config # Create-style command
|
|
90
91
|
npx claude-init # Short alias
|
|
91
92
|
```
|
|
92
93
|
|
|
@@ -153,7 +154,7 @@ Each language template includes optimized commands for:
|
|
|
153
154
|
|
|
154
155
|
### Interactive Experience
|
|
155
156
|
```bash
|
|
156
|
-
$ npx
|
|
157
|
+
$ npx claude-code-templates
|
|
157
158
|
|
|
158
159
|
██████╗██╗ █████╗ ██╗ ██╗██████╗ ███████╗
|
|
159
160
|
██╔════╝██║ ██╔══██╗██║ ██║██╔══██╗██╔════╝
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-templates",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "CLI tool to setup Claude Code configurations for different programming languages",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"create-claude-config": "bin/create-claude-config.js",
|
|
8
8
|
"claude-code-templates": "bin/create-claude-config.js",
|
|
9
|
+
"claude-code-template": "bin/create-claude-config.js",
|
|
9
10
|
"claude-init": "bin/create-claude-config.js"
|
|
10
11
|
},
|
|
11
12
|
"scripts": {
|