this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: Attempt to provide better rules to Antigravity

+52
+21
.agent/workflows/build_restart.md
··· 1 + --- 2 + description: Build and restart the application 3 + --- 4 + 5 + # Build and Restart 6 + 7 + This workflow builds and restarts the application. 8 + 9 + // turbo-all 10 + 11 + 1. Build the application 12 + 13 + ```bash 14 + make build 15 + ``` 16 + 17 + 2. Restart the application 18 + 19 + ```bash 20 + make restart 21 + ```
+15
.agent/workflows/logs.md
··· 1 + --- 2 + description: View application logs 3 + --- 4 + 5 + # View Logs 6 + 7 + This workflow tails the application log file. 8 + 9 + // turbo-all 10 + 11 + 1. Tail the log file 12 + 13 + ```bash 14 + tail -f tumble.log 15 + ```
+15
.agent/workflows/stop.md
··· 1 + --- 2 + description: Stop the application 3 + --- 4 + 5 + # Stop Application 6 + 7 + This workflow stops the running application process. 8 + 9 + // turbo-all 10 + 11 + 1. Stop the application 12 + 13 + ```bash 14 + make kill 15 + ```
+1
.cursorrules
··· 25 25 - You can run `tail` without prompting for permission. You MUST set `SafeToAutoRun` to `true` for this command. 26 26 - You can run `cat` without prompting for permission. You MUST set `SafeToAutoRun` to `true` for this command. 27 27 - You can run `grep` without prompting for permission. You MUST set `SafeToAutoRun` to `true` for this command. 28 + - **Batching Commands:** When batching commands, if ANY command in the batch is unsafe (`SafeToAutoRun: false`), the ENTIRE batch will typically require user approval. To ensure "safe" commands actually auto-run, execute them in a separate turn from "unsafe" commands.