Skip to main content

Quick Start

This guide will help you get started with Coding Plan in minutes—from subscribing to using top AI models like Claude Opus 4.5 and Gemini 3 Pro in coding tools.

Getting Started

1

Register or Login

Access VibeCodeCheap Open Platform, Register or Login.
2

Subscribe to Coding Plan

After logging in, navigate to the Coding Plan to select your preferred subscription plan.
3

Obtain API Key

After subscribing, navigate to your account dashboard and click API Keys to generate a new API Key.
Safeguard your API Key by keeping it confidential and avoiding hard-coding it in your code. We recommend storing it in environment variables or configuration files.
4

Select Coding Tool

Coding Plan supports multiple mainstream coding tools. Choose based on your preference:

Claude Code

Roo Code

Kilo Code

Cline

OpenCode

Crush

Goose

Cursor

Other Tools

5

Configuring Coding Tools

Using Claude Code as an example, configure to use AI models:
1. Install Claude CodePrerequisite: You need to install Node.js 18 or latest version
# Open your terminal and install Claude Code
npm install -g @anthropic-ai/claude-code

# Create your working directory (e.g., `your-project`) and navigate to it using `cd`
cd your-project

# After installation, run `claude` to enter the Claude Code interactive interface
claude
2. Configure Environment VariablesAfter installing Claude Code, set up environment variables using one of the following methods:
When setting environment variables, the terminal will not return any output. This is normal, as long as no error message appears, the configuration has been applied successfully.
Edit the Claude Code configuration file ~/.claude/settings.jsonAdd or modify the env fields:
{
  "env": {
    "ANTHROPIC_AUTH_TOKEN": "your_api_key",
    "ANTHROPIC_BASE_URL": "https://api.vibecodecheap.com/v1/ai",
    "API_TIMEOUT_MS": "3000000"
  }
}
Note to replace your_api_key with the API Key you obtained in the previous step.
6

Start Coding

Once configured, you can begin coding with powerful AI models!
# Using Natural Language Commands in Claude Code
Please create a React component containing a user login form
Claude Opus 4.5 / Gemini 3 Pro will automatically:
  • Analyze requirements and formulate an implementation plan
  • Generate complete React component code
  • Include form validation and styling
  • Ensure code runs directly

Feature Examples

Smart Code Completion

Generates real-time completion suggestions based on context, reducing manual input and significantly boosting development efficiency.
// Type function name, AI auto-completes implementation
function calculateTotal(items) {
  // Claude Opus 4.5 / Gemini 3 Pro automatically generates complete function implementation
}

Code Repository Q&A

Ask questions about your team’s codebase anytime to maintain a holistic understanding.
Q: How is user authentication implemented in this project?
A: AI analyzes your codebase and provides detailed explanations of the authentication process and related files.

Automated Task Management

One-click fixes for lint issues, merge conflicts, and release note generation.
# Auto-fix code style issues
Fix all ESLint errors

# Auto-generate documentation
Generate detailed documentation for this API