Futures
Access hundreds of perpetual contracts
CFD
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
CFD
U.S. stock CFD derivatives
US Stocks
Access real US stocks and ETFs
HK Stocks
Trade quality Hong Kong-listed stocks
Korean Stocks
SK Hynix
Real Korean stocks and top assets
Stock Futures
High leverage, 24/7 trading
Tokenized Stocks
Backed by real stock assets
IPO Access
Unlock full access to global stock IPOs
GUSD
Mint GUSD for Treasury RWA yields
Stocks Activities
Trade Popular Stocks and Unlock Generous Airdrops
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
IPO Access
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.
Congratulations, everyone now has a new job: agent auditor.
The most interesting part of the AgentFlow paper is not that it invents another workflow framework, but that it treats agent programs as a new software supply chain for diagramming.
Previously, code auditing mainly involved checking whether function A called function B.
Now the paths to examine are more troublesome:
Which prompt the user input entered;
Which agent the prompt affects;
Who the agent can hand over to;
Whether shared memory will carry dirty context;
Finally, which tool can write files, send emails, and run commands.
This is what it calls the Agent Dependency Graph.
Lately, I have come to understand this more and more. Opening multiple instances of Codex, Claude, and Cursor is meaningless in itself; what really needs to be managed is each worker's permission boundaries and writeback paths:
What it can read;
What it can write;
What it can call;
When it comes to publishing, deploying, wallets, and production environments, where are the gates;
Where the evidence is written back after it’s done.
Otherwise, the so-called multi-agent workflow will quickly become a bunch of dialog windows that look busy, but no one knows who touched what.
Paper: AgentFlow: Building Agent Dependency Graphs for Static Analysis of Agent Programs