claude-code-starter 0.0.6 → 0.0.9
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/.claude/.version +1 -0
- package/README.md +4 -25
- package/init +4 -4
- package/package.json +3 -2
package/.claude/.version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.8
|
package/README.md
CHANGED
|
@@ -2,30 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
A lightweight starter kit for AI-assisted development with Claude Code.
|
|
4
4
|
|
|
5
|
-
**Version:** 0.0.
|
|
6
|
-
|
|
7
|
-
## Installation
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
# Install globally via npm
|
|
11
|
-
npm install -g claude-code-starter
|
|
12
|
-
|
|
13
|
-
# Or use npx (no install required)
|
|
14
|
-
npx claude-code-starter
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
After global installation, run with `claude-code-starter`. Or just use `npx` without installing.
|
|
5
|
+
**Version:** 0.0.9
|
|
18
6
|
|
|
19
7
|
## Quick Start
|
|
20
8
|
|
|
21
9
|
```bash
|
|
22
|
-
# Navigate to your project
|
|
23
10
|
cd /path/to/your-project
|
|
24
|
-
|
|
25
|
-
# Initialize the framework
|
|
26
11
|
npx claude-code-starter
|
|
27
|
-
|
|
28
|
-
# Then start Claude:
|
|
29
12
|
claude
|
|
30
13
|
```
|
|
31
14
|
|
|
@@ -52,7 +35,7 @@ npx claude-code-starter
|
|
|
52
35
|
Output:
|
|
53
36
|
```
|
|
54
37
|
╔═══════════════════════════════════════╗
|
|
55
|
-
║ Claude Code
|
|
38
|
+
║ Claude Code Starter v0.0.9 ║
|
|
56
39
|
╚═══════════════════════════════════════╝
|
|
57
40
|
|
|
58
41
|
Setting up framework files...
|
|
@@ -90,7 +73,7 @@ npx claude-code-starter
|
|
|
90
73
|
Output:
|
|
91
74
|
```
|
|
92
75
|
╔═══════════════════════════════════════╗
|
|
93
|
-
║ Claude Code
|
|
76
|
+
║ Claude Code Starter v0.0.9 ║
|
|
94
77
|
╚═══════════════════════════════════════╝
|
|
95
78
|
|
|
96
79
|
Setting up framework files...
|
|
@@ -463,14 +446,10 @@ Edit `.claude/settings.json` to customize for your stack.
|
|
|
463
446
|
|
|
464
447
|
### Init script fails on macOS
|
|
465
448
|
|
|
466
|
-
The script is compatible with Bash 3.x (macOS default). If you see errors:
|
|
449
|
+
The script is compatible with Bash 3.x (macOS default). If you see errors, check your bash version:
|
|
467
450
|
|
|
468
451
|
```bash
|
|
469
|
-
# Check your bash version
|
|
470
452
|
bash --version
|
|
471
|
-
|
|
472
|
-
# If installed globally, run with explicit bash
|
|
473
|
-
bash $(which claude-code-starter)
|
|
474
453
|
```
|
|
475
454
|
|
|
476
455
|
### Commands not recognized
|
package/init
CHANGED
|
@@ -147,7 +147,7 @@ echo -e "${BLUE}Setting up framework files...${NC}"
|
|
|
147
147
|
|
|
148
148
|
# Copy CLAUDE.md
|
|
149
149
|
if [ ! -f "$PROJECT_DIR/CLAUDE.md" ] || [ "$FORCE" = true ]; then
|
|
150
|
-
cp -- "$FRAMEWORK_DIR/CLAUDE.md" "$PROJECT_DIR/CLAUDE.md"
|
|
150
|
+
cp -- "$FRAMEWORK_DIR/CLAUDE.md" "$PROJECT_DIR/CLAUDE.md" 2>/dev/null || true
|
|
151
151
|
if [ "$FORCE" = true ] && [ -f "$PROJECT_DIR/CLAUDE.md" ]; then
|
|
152
152
|
echo " Updated CLAUDE.md (forced)"
|
|
153
153
|
else
|
|
@@ -159,7 +159,7 @@ fi
|
|
|
159
159
|
|
|
160
160
|
# Copy settings.json
|
|
161
161
|
if [ ! -f "$PROJECT_DIR/.claude/settings.json" ] || [ "$FORCE" = true ]; then
|
|
162
|
-
cp -- "$FRAMEWORK_DIR/.claude/settings.json" "$PROJECT_DIR/.claude/settings.json"
|
|
162
|
+
cp -- "$FRAMEWORK_DIR/.claude/settings.json" "$PROJECT_DIR/.claude/settings.json" 2>/dev/null || true
|
|
163
163
|
if [ "$FORCE" = true ] && [ -f "$PROJECT_DIR/.claude/settings.json" ]; then
|
|
164
164
|
echo " Updated .claude/settings.json (forced)"
|
|
165
165
|
else
|
|
@@ -170,11 +170,11 @@ else
|
|
|
170
170
|
fi
|
|
171
171
|
|
|
172
172
|
# Copy commands (always update - these are framework-managed)
|
|
173
|
-
cp -r -- "$FRAMEWORK_DIR/.claude/commands/"* "$PROJECT_DIR/.claude/commands/"
|
|
173
|
+
cp -r -- "$FRAMEWORK_DIR/.claude/commands/"* "$PROJECT_DIR/.claude/commands/" 2>/dev/null || true
|
|
174
174
|
echo " Updated .claude/commands/"
|
|
175
175
|
|
|
176
176
|
# Copy skills (always update - these are framework-managed)
|
|
177
|
-
cp -r -- "$FRAMEWORK_DIR/.claude/skills/"* "$PROJECT_DIR/.claude/skills/"
|
|
177
|
+
cp -r -- "$FRAMEWORK_DIR/.claude/skills/"* "$PROJECT_DIR/.claude/skills/" 2>/dev/null || true
|
|
178
178
|
echo " Updated .claude/skills/"
|
|
179
179
|
|
|
180
180
|
# Write version file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-starter",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "A lightweight framework for AI-assisted development with Claude Code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
".claude/commands/",
|
|
28
28
|
".claude/skills/",
|
|
29
29
|
".claude/settings.json",
|
|
30
|
-
".claude/state/task.md"
|
|
30
|
+
".claude/state/task.md",
|
|
31
|
+
".claude/.version"
|
|
31
32
|
],
|
|
32
33
|
"engines": {
|
|
33
34
|
"node": ">=14.0.0"
|