diff --git a/.claude/commands/workflow/execute.md b/.claude/commands/workflow/execute.md index 6238baa5..e51a47ca 100644 --- a/.claude/commands/workflow/execute.md +++ b/.claude/commands/workflow/execute.md @@ -131,8 +131,8 @@ Task(subagent_type="code-developer", IMPORTANT: 1. Execute flow control steps in sequence with error handling 2. Accumulate context through step chain - 3. Create comprehensive summary with 'Outputs for Dependent Tasks' section - 4. Update TODO_LIST.md upon completion", + 3. Provide detailed completion report for summary generation + 4. Mark task as completed - system will auto-generate summary and update TODO_LIST.md", description="Execute task with flow control step processing") ``` diff --git a/.claude/scripts/update_module_claude.sh b/.claude/scripts/update_module_claude.sh index c0cffddc..773ed6e0 100644 --- a/.claude/scripts/update_module_claude.sh +++ b/.claude/scripts/update_module_claude.sh @@ -40,22 +40,22 @@ update_module_claude() { if [ "$module_path" = "." ]; then # Root directory layer="Layer 1 (Root)" - template_path="~/.claude/workflows/cli-templates/prompts/dms/claude-layer1-root.txt" + template_path="$HOME/.claude/workflows/cli-templates/prompts/dms/claude-layer1-root.txt" analysis_strategy="--all-files" elif [[ "$clean_path" =~ ^[^/]+$ ]]; then # Top-level directories (e.g., .claude, src, tests) layer="Layer 2 (Domain)" - template_path="~/.claude/workflows/cli-templates/prompts/dms/claude-layer2-domain.txt" + template_path="$HOME/.claude/workflows/cli-templates/prompts/dms/claude-layer2-domain.txt" analysis_strategy="@{*/CLAUDE.md}" elif [[ "$clean_path" =~ ^[^/]+/[^/]+$ ]]; then # Second-level directories (e.g., .claude/scripts, src/components) layer="Layer 3 (Module)" - template_path="~/.claude/workflows/cli-templates/prompts/dms/claude-layer3-module.txt" + template_path="$HOME/.claude/workflows/cli-templates/prompts/dms/claude-layer3-module.txt" analysis_strategy="@{*/CLAUDE.md}" else # Deeper directories (e.g., .claude/workflows/cli-templates/prompts) layer="Layer 4 (Sub-Module)" - template_path="~/.claude/workflows/cli-templates/prompts/dms/claude-layer4-submodule.txt" + template_path="$HOME/.claude/workflows/cli-templates/prompts/dms/claude-layer4-submodule.txt" analysis_strategy="--all-files" fi