claude-code-starter 0.9.0 → 0.10.0
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/dist/cli.js +10 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -4195,19 +4195,25 @@ function runClaudeAnalysis(projectDir, projectInfo) {
|
|
|
4195
4195
|
"claude",
|
|
4196
4196
|
[
|
|
4197
4197
|
"-p",
|
|
4198
|
-
|
|
4198
|
+
"--dangerously-skip-permissions",
|
|
4199
4199
|
"--allowedTools",
|
|
4200
4200
|
"Read",
|
|
4201
|
+
"--allowedTools",
|
|
4201
4202
|
"Glob",
|
|
4203
|
+
"--allowedTools",
|
|
4202
4204
|
"Grep",
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
+
"--allowedTools",
|
|
4206
|
+
"Write",
|
|
4207
|
+
"--allowedTools",
|
|
4208
|
+
"Edit"
|
|
4205
4209
|
],
|
|
4206
4210
|
{
|
|
4207
4211
|
cwd: projectDir,
|
|
4208
|
-
stdio: ["
|
|
4212
|
+
stdio: ["pipe", "inherit", "inherit"]
|
|
4209
4213
|
}
|
|
4210
4214
|
);
|
|
4215
|
+
child.stdin.write(prompt);
|
|
4216
|
+
child.stdin.end();
|
|
4211
4217
|
child.on("error", (err) => {
|
|
4212
4218
|
console.error(pc.red(`Failed to launch Claude CLI: ${err.message}`));
|
|
4213
4219
|
resolve(false);
|