claude-init 1.0.30 → 1.0.31

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-init",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "description": "Initialize Claude development environment with configurations and templates",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -58,7 +58,7 @@ export async function cli() {
58
58
  if (await fs.pathExists(settingsPath)) {
59
59
  overwriteSettings = await promptYesNo(
60
60
  'Overwrite existing .claude/settings.json with template version?',
61
- false
61
+ true
62
62
  );
63
63
  }
64
64
 
@@ -78,7 +78,7 @@ export async function cli() {
78
78
  if (hasOverlappingMd) {
79
79
  overwriteCommandsMd = await promptYesNo(
80
80
  'Overwrite existing .claude/commands/*.md with template versions?',
81
- false
81
+ true
82
82
  );
83
83
  }
84
84
  }
@@ -86,7 +86,7 @@ export async function cli() {
86
86
  // Determine if we should install .claude/agents
87
87
  const includeAgents = await promptYesNo(
88
88
  'Install .claude/agents files?',
89
- true
89
+ false
90
90
  );
91
91
 
92
92
  const tasks = [