Futures
Access hundreds of perpetual contracts
TradFi
Gold
One platform for global traditional assets
Options
Hot
Trade European-style vanilla options
Unified Account
Maximize your capital efficiency
Demo Trading
Introduction to Futures Trading
Learn the basics of futures trading
Futures Events
Join events to earn rewards
Demo Trading
Use virtual funds to practice risk-free trading
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
Pre-IPOs
Unlock full access to global stock IPOs
Alpha Points
Trade on-chain assets and earn airdrops
Futures Points
Earn futures points and claim airdrop rewards
Promotions
AI
Gate AI
Your all-in-one conversational AI partner
Gate AI Bot
Use Gate AI directly in your social App
GateClaw
Gate Blue Lobster, ready to go
Gate for AI Agent
AI infrastructure, Gate MCP, Skills, and CLI
Gate Skills Hub
10K+ Skills
From office tasks to trading, the all-in-one skill hub makes AI even more useful.
GateRouter
Smartly choose from 30+ AI models, with 0% extra fees
Recently, I saw that Vercel launched something quite interesting called Workflows, and honestly, it addresses many pain points for backend developers. In simple terms, it replaces complex backend infrastructure with just two lines of code. The core idea is to mark use workflow at the top of a TypeScript function, then mark use step inside sub-functions. The framework automatically handles the rest—queue scheduling, retry on failure, state persistence, and other tedious tasks.
I think the value of this product lies in changing a pain point in the development process. Previously, to move AI agents or backend tasks from prototype to production, developers had to spend a lot of time on infrastructure—things like message queues, state tables, retry mechanisms—all scattered across different places. Now, Vercel integrates all these into the application code, mixing logic and business code, which should greatly improve the development experience.
From the data, since its public testing began last October, Workflows has handled over 100 million executions and 500 million steps, with more than 1,500 customers using it, and npm weekly downloads exceeding 200k. This growth rate clearly indicates demand. Plus, the pricing model is pretty good—charged based on actual execution time, without fixed costs for continuous orchestration services.
For AI agent scenarios, Vercel emphasizes several capabilities. Durable Streams allow the agent’s output to be persistently saved, so it can keep running even if the browser is closed, and reconnect from where it left off. Default encryption is also a selling point— all input, output, and stream data are automatically encrypted before leaving the deployment environment, with decryption only happening inside the execution environment. It also supports pause and resume, for example, waiting for manual approval or sleeping for days or months, with zero compute cost during the pause. The maximum size per step is 50MB, and the total execution can be up to 2GB, which is enough for multimodal agents transmitting images and videos.
The newly released AI SDK v7 integrates WorkflowAgent, deeply combining persistent execution, tool invocation, and state management. The Python SDK is also entering public testing, indicating Vercel’s intention to push this programming model to more developers. The open-source Workflow SDK supports self-hosted deployment, and the community is already developing adapters for MongoDB, Redis, Cloudflare, and others, showing good extensibility.
The next version, Workflows 5, plans to add native concurrency control and global deployment infrastructure, as well as use snapshot runtimes to reduce the cost of reprocessing events. Overall, Vercel’s move truly addresses developers’ pain points by replacing traditional complex backend architectures with a simplified programming model. For teams looking to rapidly iterate on AI agents or asynchronous tasks, this solution is worth trying.