English |
δΈζ
RE CODE is an open-source Claude API client designed to solve the Claude account ban problem.
Claude has an internal monitoring system codenamed "Tango Tengu" that collects:
Monitoring Dimension
Data Collected
Behavior Data
Every action: file operations, command execution
Device Fingerprinting
40+ dimensions of device information
User Tracking
Users assigned to 30 "buckets" for tracking
Risk Level
Trigger
Critical
Shared accounts, third-party clients
High
API rate limiting violations
Medium
Frequent IP geo-hopping, mismatched payment info
RE CODE Advantages - Solve Claude Ban Issue
Feature
Description
Anti-Ban
Hide device fingerprint, bypass Tango Tengu monitoring
Privacy
Disable telemetry, full data control
Custom Endpoints
Self-hosted proxy support, hide real IP
Stable
Dedicated infrastructure, avoid rate limit triggers
Flexible
Custom API endpoints and models
Cross-Platform
Windows / macOS / Linux / Termux
sequenceDiagram
participant USER as User
participant CLI as CLI/TUI
participant ENGINE as Client Engine
participant SEC as Security Pipeline
participant PROXY as Proxy Network
participant API as Anthropic Claude API
USER->>CLI: Query
CLI->>ENGINE: Parse
ENGINE->>ENGINE: Validate & Build Context
ENGINE->>SEC: Raw Request
Note over SEC: 4-Layer Security
SEC->>SEC: L1: MAC/UUID/Display/Timezone/UserAgent
SEC->>SEC: L2: Timing/Token/Payload/Header/Cookie
SEC->>SEC: L3: Residential IP/Geo/IP Reputation/Rotation
SEC->>SEC: L4: Encrypt/Memory/Isolation/Rotation
SEC->>SEC: AES-256 + HMAC
SEC->>PROXY: Encrypted Request
PROXY->>PROXY: Load Balance + IP Rotation
PROXY->>API: Forward
alt Success
API->>PROXY: Response
PROXY->>SEC: Decrypt
SEC->>ENGINE: Parse
ENGINE->>CLI: Display
CLI->>USER: Output
else Rate Limit/Ban
API->>PROXY: Error
PROXY->>PROXY: Switch IP & Retry
end
Loading
Component
Description
Client Engine
Parse, validate, context management
Security Pipeline
4-layer protection + AES-256/HMAC
Proxy Network
Load balance, residential IPs, failover
API Gateway
Rate limiting, retry engine
curl -fsSL https://cdn.jsdelivr.net/gh/mangiapanejohn-dev/-Re-Code/install.sh | bash
irm - useb https:// cdn.jsdelivr.net/ gh/ mangiapanejohn- dev/- Re- Code/ install.ps1 | iex
curl -fsSL https://cdn.jsdelivr.net/gh/mangiapanejohn-dev/-Re-Code/install-termux.sh | bash
export DISABLE_TELEMETRY=1
export ANTHROPIC_BASE_URL=https://your-proxy.com
export ANTHROPIC_API_KEY=sk-xxx
Command
Description
recode
Start RE CODE
recode -v
Show version
/model [name]
Switch model
/config
View/edit config
/clear
Clear session
/exit
Exit
ReCode/
βββ src/ # Source code
βββ recode-temp/package/ # Packaged CLI
βββ install.sh # macOS/Linux
βββ install.ps1 # Windows
βββ install-termux.sh # Termux
git clone https://github.com/mangiapanejohn-dev/-Re-Code.git
cd ReCode
git checkout -b feature/amazing
git commit -m ' Add feature'
git push origin feature/amazing
MIT License - See LICENSE
Made with by ReCode Team