claude-code-starter 0.1.1 → 0.1.2
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/README.md +1 -1
- package/dist/cli.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ claude
|
|
|
13
13
|
## What It Does
|
|
14
14
|
|
|
15
15
|
Sets up your project with:
|
|
16
|
-
-
|
|
16
|
+
- `.claude/CLAUDE.md` - Instructions for Claude
|
|
17
17
|
- `.claude/commands/` - Slash commands (`/task`, `/status`, `/done`, `/analyze`)
|
|
18
18
|
- `.claude/skills/` - Methodology guides (debugging, testing, patterns)
|
|
19
19
|
- `.claude/state/task.md` - Task tracking
|
package/dist/cli.js
CHANGED
|
@@ -88,7 +88,7 @@ ${pc.bold("USAGE")}
|
|
|
88
88
|
${pc.bold("OPTIONS")}
|
|
89
89
|
-h, --help Show this help message
|
|
90
90
|
-v, --version Show version number
|
|
91
|
-
-f, --force Force overwrite of CLAUDE.md and settings.json
|
|
91
|
+
-f, --force Force overwrite of .claude/CLAUDE.md and settings.json
|
|
92
92
|
|
|
93
93
|
${pc.bold("MORE INFO")}
|
|
94
94
|
https://github.com/cassmtnr/claude-code-starter
|
|
@@ -123,13 +123,13 @@ async function main() {
|
|
|
123
123
|
console.log(pc.blue("Setting up framework files..."));
|
|
124
124
|
const claudeMdResult = copyFile(
|
|
125
125
|
path.join(TEMPLATES_DIR, "CLAUDE.md"),
|
|
126
|
-
path.join(projectDir, "CLAUDE.md"),
|
|
126
|
+
path.join(projectDir, ".claude", "CLAUDE.md"),
|
|
127
127
|
args.force
|
|
128
128
|
);
|
|
129
129
|
if (claudeMdResult === "skipped") {
|
|
130
|
-
console.log(" CLAUDE.md exists (use --force to overwrite)");
|
|
130
|
+
console.log(" .claude/CLAUDE.md exists (use --force to overwrite)");
|
|
131
131
|
} else {
|
|
132
|
-
console.log(` ${claudeMdResult === "updated" ? "Updated" : "Created"} CLAUDE.md`);
|
|
132
|
+
console.log(` ${claudeMdResult === "updated" ? "Updated" : "Created"} .claude/CLAUDE.md`);
|
|
133
133
|
}
|
|
134
134
|
const settingsResult = copyFile(
|
|
135
135
|
path.join(TEMPLATES_DIR, "settings.json"),
|