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.
- package/package.json +1 -1
- package/src/cli.js +3 -3
package/package.json
CHANGED
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
89
|
+
false
|
|
90
90
|
);
|
|
91
91
|
|
|
92
92
|
const tasks = [
|