diff --git a/.claude/agents/memory-gemini-bridge.md b/.claude/agents/memory-bridge.md similarity index 97% rename from .claude/agents/memory-gemini-bridge.md rename to .claude/agents/memory-bridge.md index 1b14999e..b0a47de3 100644 --- a/.claude/agents/memory-gemini-bridge.md +++ b/.claude/agents/memory-bridge.md @@ -1,5 +1,5 @@ --- -name: memory-gemini-bridge +name: memory-bridge description: Execute complex project documentation updates using script coordination color: purple --- diff --git a/.claude/commands/update-memory-full.md b/.claude/commands/update-memory-full.md index 23ad54ae..63db263e 100644 --- a/.claude/commands/update-memory-full.md +++ b/.claude/commands/update-memory-full.md @@ -45,7 +45,7 @@ count=$(echo "$modules" | wc -l) # Pseudocode flow: # IF (module_count > 20 OR complex_project_detected): -# → Task "Complex project full update" subagent_type: "memory-gemini-bridge" +# → Task "Complex project full update" subagent_type: "memory-bridge" # ELSE: # → Present plan and WAIT FOR USER APPROVAL before execution # @@ -60,7 +60,7 @@ After the bash script completes the initial analysis, the model takes control to 2. **Parse CLAUDE.md Status**: Extract which modules have/need CLAUDE.md files 3. **Choose Strategy**: - Simple projects: Present execution plan with CLAUDE.md paths to user - - Complex projects: Delegate to memory-gemini-bridge agent + - Complex projects: Delegate to memory-bridge agent 4. **Present Detailed Plan**: Show user exactly which CLAUDE.md files will be created/updated 5. **⚠️ CRITICAL: WAIT FOR USER APPROVAL**: No execution without explicit user consent @@ -120,11 +120,11 @@ Bash(git status --short) **For Complex Projects (>20 modules):** -The model will delegate to the memory-gemini-bridge agent with structured context: +The model will delegate to the memory-bridge agent with structured context: ```javascript Task "Complex project full update" -subagent_type: "memory-gemini-bridge" +subagent_type: "memory-bridge" prompt: ` CONTEXT: - Total modules: ${module_count} diff --git a/.claude/commands/update-memory-related.md b/.claude/commands/update-memory-related.md index 7f15f4e9..2b069ea6 100644 --- a/.claude/commands/update-memory-related.md +++ b/.claude/commands/update-memory-related.md @@ -51,7 +51,7 @@ count=$(echo "$changed" | wc -l) # Pseudocode flow: # IF (change_count > 15 OR complex_changes_detected): -# → Task "Complex project related update" subagent_type: "memory-gemini-bridge" +# → Task "Complex project related update" subagent_type: "memory-bridge" # ELSE: # → Present plan and WAIT FOR USER APPROVAL before execution # @@ -66,7 +66,7 @@ After the bash script completes change detection, the model takes control to: 2. **Parse CLAUDE.md Status**: Extract which changed modules have/need CLAUDE.md files 3. **Choose Strategy**: - Simple changes: Present execution plan with CLAUDE.md paths to user - - Complex changes: Delegate to memory-gemini-bridge agent + - Complex changes: Delegate to memory-bridge agent 4. **Present Detailed Plan**: Show user exactly which CLAUDE.md files will be created/updated for changed modules 5. **⚠️ CRITICAL: WAIT FOR USER APPROVAL**: No execution without explicit user consent @@ -127,11 +127,11 @@ Bash(git diff --stat) **For Complex Changes (>15 modules):** -The model will delegate to the memory-gemini-bridge agent with structured context: +The model will delegate to the memory-bridge agent with structured context: ```javascript Task "Complex project related update" -subagent_type: "memory-gemini-bridge" +subagent_type: "memory-bridge" prompt: ` CONTEXT: - Total modules: ${change_count}