claude-init 1.0.25 → 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.
@@ -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 Claude
87
+ # Install claude-code
87
88
  RUN npm install -g @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION}
88
- # Install Codex
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
 
@@ -6,6 +6,7 @@
6
6
  "TZ": "${localEnv:TZ:America/Los_Angeles}",
7
7
  "CLAUDE_CODE_VERSION": "latest",
8
8
  "CODEX_VERSION": "latest",
9
+ "GEMINI_CLI_VERSION": "latest",
9
10
  "GIT_DELTA_VERSION": "0.18.2",
10
11
  "ZSH_IN_DOCKER_VERSION": "1.2.0"
11
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-init",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "Initialize Claude development environment with configurations and templates",
5
5
  "type": "module",
6
6
  "bin": {