@Corbin Brown Just curious I am getting caught up on videos but I don't see moving forward on the stock app. i was interested in following along. Or I assume all the 5 min vids are part of it but not really spoken as such?
Step-by-step guide to running a 24/7 OpenClaw gateway on a GCP VM with zero public ports. Covers VM creation, Docker setup, auto-start on reboot, SSH tunnel access, and a one-command connect script. Everything stays behind SSH tunnel 🕺
bro antigravity just tanked me. they literally pulled a diddy on me. I took a 3 day break. came back on today. After 4 hours I reached my limit. Not a 4 hour limit or 12 hour. I hit 1 week jeez. I was using it almost 2 weeks straight before this and didnt hit the 4 hour limit. You have reached the quota limit for this model. You can resume using this model at 1/20/2026, 12:31:57 AM. Upgrade to AI Ultra for Business to receive the highest rate limits. I feel betrayed. Anyone on the Ultra business plan? Want to know, how are the limits etc.
Has anyone been adding customizations to Antigravity with Rules and Workflows? I just realized this today, and I think it's incredibly powerful for us vibe coders. I added some GitHub commands, and now you can type /deploy, which will run the entire workflow you've set up.
This is a good read about it: https://medium.com/write-a-catalyst/the-future-of-coding-i-tested-google-gemini-3-and-its-antigravity-ide-and-heres-what-blew-my-mind-33a70011259c
Here is a example of a deploy agent workflows: # /deploy Workflow This workflow creates a new version release and deploys to the live Firebase site. ## Steps // turbo-all 1. Stage all changes: ```powershell git add . ``` 2. Check git status to see what will be committed: ```powershell git status ``` 3. **ASK USER for commit message** or use the CHANGELOG entry for the version 4. Create release (bumps version, updates CHANGELOG, creates git tag): ```powershell npm run release ``` 5. Push to GitHub with tags: ```powershell git push --follow-tags ``` 6. Build the production bundle: ```powershell npm run build ``` 7. Deploy to Firebase Hosting: ```powershell firebase deploy --only hosting ``` ## Notes - This deploys to the LIVE site - use with caution - For save-only (no deploy), use `/save` instead - Always review the `git status` output before confirming