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
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 40+ AI models, with 0% extra fees
Cursor discloses the "bootstrap" training method: using the old Composer to set up the environment for the new model, Terminal-Bench increases by 14 points
According to Beating monitoring, Cursor revealed a training trick for the Composer series models: using the previous generation model to automatically build a runnable environment for reinforcement learning (RL) of the next generation. When training Composer 2, Cursor used Composer 1.5 to complete this task, calling it autoinstall. RL training requires a runnable code environment. If the environment is not set up properly, the model wastes tokens on bug fixing and cannot learn effectively; in extreme cases, if the environment fails completely, the entire training compute is wasted. autoinstall solves this problem in two steps: first, an agent reads the codebase documentation and configuration, and proposes 10 verification commands with expected outputs; second, another agent takes 3 of these commands and sets up the environment from scratch until the commands run successfully. The second step retries up to 5 times; if all fail, the environment is discarded. During environment setup, the agent actively fills missing dependencies: fabricating database tables, creating MinIO configurations as a substitute for S3, launching Docker containers as sidecar services, and even generating placeholder images. The blog post uses the blockchain project celo-org/celo-monorepo as an example to demonstrate the entire process, where after the first environment setup failure, the second round creates mock users to bypass authentication, ultimately passing the tests. Composer 2 scored 61.7% on Terminal-Bench (a benchmark for testing the model building and development environment capability), nearly 14 percentage points higher than Composer 1.5’s 47.9%. Cursor states that future plans include involving the older Composer in more training stages, including data preprocessing, runtime management, and architecture tuning.