claude-init 1.0.12 → 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.
- package/.devcontainer/devcontainer.json +1 -0
- package/README.md +4 -5
- package/package.json +1 -1
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
|