Feature request to Antigravity team! Freezing of an SSH session, the assistant appears "stuck," and the user is forced to reload the system

Hi, team. :face_savoring_food:

I am writing the request to you with a plea to implement the features/options into the Antigravity-Settings.

The options must provide the user with the following features for the AI agent’s behavior.

a) NEVER use long multi-command chains with \`sleep\` delays (e.g., \`cmd1 && sleep 20 && cmd2\`).

b) NEVER use semicolon (;), ampersand (&, &&), or pipe (|) chains to run multiple checks or filters at once (e.g., \`ps aux | grep...\` is FORBIDDEN).

c) EXECUTE small, atomic commands. Run a single command (e.g., \`ps aux\`), read the output, and do any searching or filtering yourself in your own memory.

d) REAL-TIME LOGGING: Always check logs (\`tail -n 20\`) immediately after starting a background process to confirm it didn't crash.

EXPLANATION: Chaining multiple system-heavy commands or using pipes (like `ps aux | grep`) creates a burst of CPU/IO load that often freezes the SSH session or crashes the terminal environment. This leads to the ASSISTANT appearing “stuck” and forces the USER to reload the system. By running commands one-by-one and avoiding pipes, we maintain a stable connection.

Thank you, team, for such a great product! :+1::rocket: