gemini
Audited by Runlayer on Feb 26, 2026
Tool passed security scan
Malicious tool definition detected
**Permission issues**: Asks user before using high-impact flags ## Troubleshooting ### Process Hung in Background **Detection**: ```bash ps aux | grep -E "gemini.*gemini-3" | grep -v grep # Look for: 20+ min runtime, 0% CPU, state 'S' ``` **Resolution**: ```bash pkill -9 -f "gemini.*gemini-3-pro-preview" ``` **Prevention**: Always use `--approval-mode yolo` for background tasks ### No Output After Long Time Check if process is waiting for approval: ```bash ps -o pid,etime,pcpu,stat,command -p <P
Tool passed security scan
Malicious tool definition detected
## Troubleshooting Hung Gemini Processes ### Detection ```bash # Check for hung processes ps aux | grep -E "gemini.*gemini-3" | grep -v grep # Look for these symptoms: # - Process running 20+ minutes # - CPU usage at 0% # - Process state 'S' (sleeping) # - No network connections ``` ### Diagnosis ```bash # Get detailed process info ps -o pid,etime,pcpu,stat,command -p <PID> # Check network activity lsof -p <PID> 2>/dev/null | grep -E "(TCP|ESTABLISHED)" | wc -l # If result is 0, process is hung