claude-code-starter 0.0.4 → 0.0.6
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 +1 -1
- package/init +4 -3
- package/package.json +3 -2
package/README.md
CHANGED
package/init
CHANGED
|
@@ -5,8 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
set -e
|
|
7
7
|
|
|
8
|
-
VERSION="0.0.4"
|
|
9
|
-
|
|
10
8
|
# Colors
|
|
11
9
|
GREEN='\033[0;32m'
|
|
12
10
|
BLUE='\033[0;34m'
|
|
@@ -32,6 +30,9 @@ if [ -L "$SCRIPT_PATH" ]; then
|
|
|
32
30
|
fi
|
|
33
31
|
FRAMEWORK_DIR="$(cd "$(dirname "$SCRIPT_PATH")" && pwd)"
|
|
34
32
|
|
|
33
|
+
# Get version from package.json (single source of truth)
|
|
34
|
+
VERSION=$(node -p "require('$FRAMEWORK_DIR/package.json').version")
|
|
35
|
+
|
|
35
36
|
# Help message
|
|
36
37
|
show_help() {
|
|
37
38
|
cat << EOF
|
|
@@ -67,7 +68,7 @@ WHAT IT DOES:
|
|
|
67
68
|
5. Creates initial task state
|
|
68
69
|
|
|
69
70
|
MORE INFO:
|
|
70
|
-
https://github.com/
|
|
71
|
+
https://github.com/cassmtnr/claude-code-starter
|
|
71
72
|
EOF
|
|
72
73
|
}
|
|
73
74
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-starter",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "A lightweight framework for AI-assisted development with Claude Code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -15,8 +15,9 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/
|
|
18
|
+
"url": "git+https://github.com/cassmtnr/claude-code-starter.git"
|
|
19
19
|
},
|
|
20
|
+
"homepage": "https://github.com/cassmtnr/claude-code-starter#readme",
|
|
20
21
|
"bin": {
|
|
21
22
|
"claude-code-starter": "./init"
|
|
22
23
|
},
|