claude-init 1.0.24 → 1.0.26
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/.devcontainer/Dockerfile
CHANGED
|
@@ -5,6 +5,7 @@ ENV TZ="$TZ"
|
|
|
5
5
|
|
|
6
6
|
ARG CLAUDE_CODE_VERSION=latest
|
|
7
7
|
ARG CODEX_VERSION=latest
|
|
8
|
+
ARG GEMINI_CLI_VERSION=latest
|
|
8
9
|
|
|
9
10
|
# Install basic development tools and iptables/ipset
|
|
10
11
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
@@ -83,10 +84,12 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
|
|
|
83
84
|
-a "export PROMPT_COMMAND='history -a' && export HISTFILE=/commandhistory/.bash_history" \
|
|
84
85
|
-x
|
|
85
86
|
|
|
86
|
-
# Install
|
|
87
|
+
# Install claude-code
|
|
87
88
|
RUN npm install -g @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION}
|
|
88
|
-
# Install
|
|
89
|
+
# Install codex
|
|
89
90
|
RUN npm install -g @openai/codex@${CODEX_VERSION}
|
|
91
|
+
# Install gemini-cli
|
|
92
|
+
RUN npm install -g @google/gemini-cli@${GEMINI_CLI_VERSION}
|
|
90
93
|
# Install spec-kit
|
|
91
94
|
RUN uv tool install specify-cli --from git+https://github.com/github/spec-kit.git
|
|
92
95
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-init",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.26",
|
|
4
4
|
"description": "Initialize Claude development environment with configurations and templates",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -17,7 +17,12 @@
|
|
|
17
17
|
"scripts": {
|
|
18
18
|
"test": "node --test test/*.test.js",
|
|
19
19
|
"dev": "node bin/index.js",
|
|
20
|
-
"prepublishOnly": "npm test"
|
|
20
|
+
"prepublishOnly": "npm test",
|
|
21
|
+
"version": "git add package.json",
|
|
22
|
+
"postversion": "git push && git push --tags && npm publish",
|
|
23
|
+
"release:patch": "npm version patch",
|
|
24
|
+
"release:minor": "npm version minor",
|
|
25
|
+
"release:major": "npm version major"
|
|
21
26
|
},
|
|
22
27
|
"keywords": [
|
|
23
28
|
"claude",
|