claude-init 1.0.13 → 1.0.14

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 @@
5
5
  "args": {
6
6
  "TZ": "${localEnv:TZ:America/Los_Angeles}",
7
7
  "CLAUDE_CODE_VERSION": "latest",
8
+ "CODEX_VERSION": "latest",
8
9
  "GIT_DELTA_VERSION": "0.18.2",
9
10
  "ZSH_IN_DOCKER_VERSION": "1.2.0"
10
11
  }
package/README.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  A CLI tool to initialize Claude development environment with standardized configurations and templates.
4
4
 
5
+ ## 2025.10.06 update
6
+ [Most of the previous "planning-and-act" commands have been replaced by `spec-kit`](https://github.com/ChrisLinn/claude-init/commit/2c3f7db69516c9a3255d8274c941693953b82ef3).
7
+
5
8
  ## Features
6
9
 
7
10
  - **Smart Setup**: Automatically detects existing files and only creates/updates what's needed
@@ -36,7 +39,7 @@ A CLI tool to initialize Claude development environment with standardized config
36
39
  Running `npx claude-init` sets up your current directory with:
37
40
 
38
41
  - `CLAUDE.md` - Project instructions and scratchpad for Claude
39
- - `.devcontainer/` - Development container configuration
42
+ - `.devcontainer/` - Development container configuration (also added `codex-cli` and `spec-kit`.)
40
43
  - `.claude/settings.json` - Claude-specific settings
41
44
  - `.claude/commands/` - Custom Claude commands
42
45
  - `.claude/agents/` - Specialized agent configurations
@@ -95,11 +98,7 @@ your-project/
95
98
  ├── settings.json # Claude settings
96
99
  ├── commands/ # Custom commands
97
100
  │ ├── commit.md
98
- │ ├── continue-tasks.md
99
101
  │ ├── debug.md
100
- │ ├── gogogo.md
101
- │ ├── impl-planning.md
102
- │ ├── plan.md
103
102
  │ ├── prompt-enhancement.md
104
103
  │ ├── review-plan.md
105
104
  │ └── security-review.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-init",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Initialize Claude development environment with configurations and templates",
5
5
  "type": "module",
6
6
  "bin": {