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
How to bypass new user login onboarding when initially launching Claude Code using other LLM models?
The latest version of Claude Code (April 2026 version, such as 2.1.9x series) has strengthened the onboarding check during first launch, making it difficult to bypass solely through environment variables or CC-Switch writing to settings.json. This is because Claude Code prioritizes checking the hasCompletedOnboarding flag in the ~/.claude.json file during startup. If this file does not exist or the field is false, it will force the onboarding process (requiring login to the official account or completing initial setup), even if you have configured other ANTHROPIC_BASE_URL and Key in ~/.claude/settings.json, which will be ignored or processed later (the latest CC-Switch bypass configuration no longer works).
The most effective method is to use Node.js in the CLI with the following one-click setup command:
node --eval "
const fs = require('fs');
const path = require('path');
const homeDir = require('os').homedir();
const filePath = path.join(homeDir, '.claude.json');
let config = {};
if (fs.existsSync(filePath)) {
config = JSON.parse(fs.readFileSync(filePath, 'utf-8'));
}
config.hasCompletedOnboarding = true;
fs.writeFileSync(filePath, JSON.stringify(config, null, 2), 'utf-8');
console.log('hasCompletedOnboarding set to true');
"
After executing, restart your terminal and then try running Claude again to enter directly.