claude-init 1.0.3 → 1.0.4

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.
@@ -4,6 +4,7 @@ ARG TZ
4
4
  ENV TZ="$TZ"
5
5
 
6
6
  ARG CLAUDE_CODE_VERSION=latest
7
+ ARG CODEX_VERSION=latest
7
8
 
8
9
  # Install basic development tools and iptables/ipset
9
10
  RUN apt-get update && apt-get install -y --no-install-recommends \
@@ -80,6 +81,8 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
80
81
 
81
82
  # Install Claude
82
83
  RUN npm install -g @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION}
84
+ # Install Codex
85
+ RUN npm install -g @openai/codex@${CODEX_VERSION}
83
86
 
84
87
 
85
88
  # Copy and set up firewall script
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-init",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Initialize Claude development environment with configurations and templates",
5
5
  "type": "module",
6
6
  "bin": {