claude-code-templates 1.24.9 → 1.24.11
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.
|
@@ -199,6 +199,7 @@ async function executeDirectly(config: LauncherConfig): Promise<ExecutionResult>
|
|
|
199
199
|
|
|
200
200
|
try {
|
|
201
201
|
log('Generating code with Claude Agent SDK...');
|
|
202
|
+
log(`Working directory: ${process.cwd()}`);
|
|
202
203
|
|
|
203
204
|
// Detect if this is a web development request
|
|
204
205
|
const isWebRequest = /html|css|javascript|webpage|website|form|ui|interface|frontend/i.test(config.prompt);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-templates",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.11",
|
|
4
4
|
"description": "CLI tool to setup Claude Code configurations with framework-specific commands, automation hooks and MCP Servers for your projects",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
package/src/index.js
CHANGED
|
@@ -2551,7 +2551,7 @@ async function executeSandbox(options, targetDir) {
|
|
|
2551
2551
|
}
|
|
2552
2552
|
|
|
2553
2553
|
async function executeCloudflareSandbox(options, targetDir) {
|
|
2554
|
-
const { agent, prompt, anthropicKey } = options;
|
|
2554
|
+
const { agent, command, mcp, setting, hook, prompt, anthropicKey } = options;
|
|
2555
2555
|
|
|
2556
2556
|
console.log(chalk.blue('\n☁️ Cloudflare Sandbox Execution'));
|
|
2557
2557
|
console.log(chalk.cyan('═══════════════════════════════════════'));
|