惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
L
LangChain Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
美团技术团队
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
D
DataBreaches.Net
P
Proofpoint News Feed
小众软件
小众软件
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
WordPress大学
WordPress大学
雷峰网
雷峰网
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
File-Based Agent Orchestration for Antigravity
Woo · 2026-05-17 · via DEV Community

Woo

I’m not a programmer, but I actively use AI in my areas of interest. And since my interests are heavily text-based, Antigravity turned out to be a very convenient environment for using agents somewhat beyond its intended purpose.

But imagine my disappointment when I realized I had no way to natively run a simple chain of agents that sequentially process a single document, each solving its own task. Each iteration required manual execution.

This was so strange and inexplicable to me that I began trying to find a solution for automating agents in Antigravity. No matter how much I searched or how much I called on the agents themselves for help, everything pointed to the same answer: use an API or a heavyweight framework.

I wasn’t satisfied with this situation because I needed something very basic: for the agents to pass the task down the chain without my involvement. All the prompts and skills were already ready, and I needed only one thing—not to do this manually in Antigravity.

In yet another desperate attempt to find a way to automate this, I managed to corner the agent. And we discovered a very simple, yet not at all obvious, solution.

I simply didn’t know that’s not how it’s done.


Without having written a single line of code in my life, I used agents to create an extension for Antigravity that allows agents to launch other agents. I was so impressed with the result that, forgetting everything else, I spent over two months enthusiastically developing it to share with the community.

The irony is that I’m critical of vibe-coded products—and yet I’ve become that very vibe-coder who’s bringing his creation into the world.

During this time, I learned a lot about how agents function in the Antigravity environment and developed my own approach to orchestrating reliable workflows based on this plugin, which can run for hours and involve hundreds of agents without any runtime or external control.

And all this thanks to just ~240 lines of code, with no external dependencies, two commands, and a single trigger file. But these constraints also shape the approach to building such workflows—which perhaps deserves a separate discussion.


A one-minute timelapse of a two-hour workflow demonstrating basic extension capabilities—not about OCR, but about the mechanics of Pipeline Relay using a clear example. Under the hood, there’s a simple prompt of a few dozen lines, and nothing else. An agent performs its part of the task and launches the next one.

And so on, 181 times over the course of 2 hours and 15 minutes. This isn’t a pure chain; parallel agents were launched to extract the illustrations. Each agent processes only one file or performs only one task—this is the key to stability and quality results in this architecture.

This approach is unlikely to work in every situation; it has many limitations, but, in my opinion, it also offers a number of unique capabilities. And perhaps you will find it useful too.

The duration, sequence, and completion of the orchestration are all defined through natural language prompts. But this simplicity gives rise to new complexities that require a special approach to organizing the work environment. I believe this could serve as a kind of testing ground for understanding how to manage agents.


I’ve also tried Claude Code and Codex, which have native orchestration. But for me, it’s far clearer, more convenient, and more interesting to use this particular extension. What I accomplish here with a single prompt is significantly harder to do there.

  • What I like about Antigravity is that everything happens in chats; I see the full picture of what’s going on and can evaluate agent behavior in real time, rather than based on results.
  • This also provides a clear structure for the sequence of events.
  • There are no limits on workflow duration or the number of agents involved, except for objective constraints (tokens, connection stability, server availability).
  • There is no “black box”; every agent can be an orchestrator, and I decide how the orchestration will proceed.
  • No code or complex abstractions are needed; you just need to think through the logic and clearly define the prompts.

This release is a minimalist core, but there is potential for further development around this core, and perhaps the community will explore it. I already have several ideas that I plan to implement in the future, if circumstances allow.

You can install the plugin directly from Antigravity — Pipeline Relay on Open VSX

For technical details — GitHub repository

I’d love to hear your feedback.