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
Launchpad
Be early to the next big token project
Alpha Points
Trade on-chain assets and earn airdrops
Futures Points
Earn futures points and claim airdrop rewards
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.