formatting

This commit is contained in:
km-anthropic
2025-08-14 15:30:29 -07:00
parent 632f04bbcf
commit 30530c9829
2 changed files with 8 additions and 12 deletions

View File

@@ -90,20 +90,16 @@ export async function setupClaudeCodeSettings(
await $`test -d ${projectAgentsDir}`.quiet(); await $`test -d ${projectAgentsDir}`.quiet();
console.log(`Found project agents directory at ${projectAgentsDir}`); console.log(`Found project agents directory at ${projectAgentsDir}`);
// Ensure target agents directory exists
await $`mkdir -p ${claudeAgentsDir}`.quiet(); await $`mkdir -p ${claudeAgentsDir}`.quiet();
// Copy all .md files from project agents to Claude's agents directory
await $`cp ${projectAgentsDir}/*.md ${claudeAgentsDir}/ 2>/dev/null || true`.quiet(); await $`cp ${projectAgentsDir}/*.md ${claudeAgentsDir}/ 2>/dev/null || true`.quiet();
// Count copied agents for logging
const agentFiles = await $`ls ${claudeAgentsDir}/*.md 2>/dev/null | wc -l` const agentFiles = await $`ls ${claudeAgentsDir}/*.md 2>/dev/null | wc -l`
.quiet() .quiet()
.text(); .text();
const agentCount = parseInt(agentFiles.trim()) || 0; const agentCount = parseInt(agentFiles.trim()) || 0;
console.log(`Copied ${agentCount} agent(s) to ${claudeAgentsDir}`); console.log(`Copied ${agentCount} agent(s) to ${claudeAgentsDir}`);
} catch (e) { } catch (e) {
// Directory doesn't exist or no agents to copy - this is expected in most cases
console.log(`No project agents directory found at ${projectAgentsDir}`); console.log(`No project agents directory found at ${projectAgentsDir}`);
} }
} }