Shall We Say Goodbye to Make & Zapier? The New Way to Build AI Systems with Google Anti-Gravity
Traditionally, when we want to automate a task (for example, taking an incoming email and adding it to a Spreadsheet), we rely on tools like Make.com or Zapier. In these platforms, we are forced to build logic by connecting "Nodes" or blocks one by one. However, with the arrival of Google Anti-Gravity, this method has changed completely.
Now, you can build highly complex Automation Systems simply by chatting with the AI and describing exactly what you need. To achieve this, we use the "BLAST" Framework.
Here are the 5 steps detailed below:
1. B - Blueprint (Setting the Foundation)
Although "Anti-Gravity" is a very powerful AI, if you don't tell it exactly what to do, it can get lost. Therefore, we must first provide our plan via a System Prompt.
Create a file named gemini.md in your project or provide the following information to the AI within the chat:
- North Star (Main Objective): Simply describe what you want to achieve.
Example: "Fetch the latest Meeting Transcripts from my Fireflies account, isolate the important Action Items, and insert them into my Notion Database." - Integrations: What Apps are used for this? (e.g., Notion, Slack, Fireflies, Gmail).
- Source of Truth: Where is the data coming from? (Primary Data Source).
- Delivery Payload: Where should the final result be sent?
- Rules: Mention constraints such as "No duplicates" or "This should only happen once every 3 hours."
2. L - Links (Connecting Apps via MCP)
The most special technology possessed by Anti-Gravity is the MCP (Model Context Protocol). Through this, it gains the ability to go directly inside your Apps and perform tasks.
How to connect major Apps like Notion:
- Go to "Manage MCP Servers" in Anti-Gravity.
- Select Notion from the list.
- It will provide a Notion Integration Link. Go there, create a new Connection, and get the Secret Token.
- Provide that Token to Anti-Gravity, and it will connect with Notion.
How to connect Apps not on the list (e.g., Fireflies):
- If an App is not in the list, ask the AI: "Give me the MCP Config JSON for Fireflies."
- Copy the code snippet it provides.
- Go to the relevant App's (Fireflies) Settings -> Developer section and get an API Key.
- Paste the API Key into the requested spot in the JSON Code and add it to the Anti-Gravity Config File (or simply tell the AI "Add this config").
Now your AI has the ability to control both of these Apps.
3. A - Architect (Planning the Process)
Now that the apps are connected, you must give the AI specific steps (SOPs) to perform the job. Since AI is essentially probabilistic (guessing), we need to turn it into a Deterministic system.
Give these instructions to the AI:
"First, check the latest 3 Meetings from Fireflies."
"Check if these Meetings have been added to Notion previously (Check for duplicates)."
"Only if they haven't been added, read the Transcript and summarize 5 important points."
"Update that summary to the Notion page."
By giving step-by-step instructions like this, errors can be minimized.
4. S - Stylize (Beautifying the Result)
Just dumping words into Notion might make it hard to read. You need to make the output look good.
Tell the AI:
- "When entering data into Notion, use appropriate Emojis for each topic."
- "Bold the most important points."
- "Use a separate color (Color Coded Header) or a Callout Box for each Meeting."
- "Show the Meeting Summary at the very top."
This ensures the result you get is of a highly professional standard.
5. T - Trigger (Automation and Deployment)
So far, we’ve done this only while our computer is on. But we need this to work even while we sleep.
For this, we use a Cloud Service like Modal.
- Get the Code: Tell Anti-Gravity, "Write me the Python Code to deploy this entire process via Modal."
- Connect Modal: Connect to your account via your Terminal using a command like
modal token new(The AI will give you the necessary commands). - Scheduling: Tell the AI, "Set this to run automatically every 3 hours." (This acts as a Cron Job).
- Deploy: Finally, send this to the Cloud via the
modal deploycommand.
Now, even if you close your laptop, your AI Agent will activate every 3 hours via the Cloud, check for new data, and update your Notion.
Through this method, you can build very complex Automation Systems without writing a single line of code yourself.
#n8n #AI #automation #tools #tips #system #agents #code #marketing #GeminiAI