Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ loop or repeatedly retrying the same failing step.

```bash
# Agents older than 16h with no live children of substance
ps -eo pid,etimes,args | grep -E 'claude|codex|gemini' | grep -v grep \
# (agy = Antigravity, the agy/antigravity CLI that replaced gemini-cli — match both)
ps -eo pid,etimes,args | grep -E 'claude|codex|gemini|agy|antigravity' | grep -v grep \
| awk '$2 > 57600 { print }' \
| while read pid age rest; do
kids=$(pgrep -P "$pid" | wc -l)
Expand Down Expand Up @@ -127,7 +128,7 @@ Re-run the original three checks and the count of agents:
```bash
uptime
cat /proc/pressure/cpu /proc/pressure/memory 2>/dev/null
pgrep -af 'claude|codex|gemini' | wc -l
pgrep -af 'claude|codex|gemini|agy|antigravity' | wc -l
```

If pressure is down and the agent count dropped to the expected steady
Expand Down
Loading