User reported on Mac/Win:
1. gpt-5.5 not appearing in client model picker after install
2. codex CLI not installed by uclaude_install.{sh,ps1}
Root causes (TDD verified):
1. ps1 hardcoded fallback (when private config fetch fails) had only 5
models without gpt-5.5; users behind firewall/with stale cache fall
back to it. Updated fallback to include latest list including gpt-5.5,
gemini-3.1-pro, gemini-3-flash, glm-5.1.
2. Codex has SEPARATE installer (codex/ucodex_install.{sh,ps1}). Users
following claude install instructions miss it. README documents both
but as separate steps. Now uclaude_install.{sh,ps1} optionally chain
to codex installer at the end (skip via UCLAUDE_SKIP_CODEX=1).
Sh installer: also expanded sparse-checkout to include codex/ directory.
README versions: bumped Codex CLI 0.122.0 → 0.125.0 in all 4 locale files
(README.md, README_ru.md, README_es.md, README_zh.md).
3 new tests in claude_code_patcher/tests/test_installers_completeness.py
verify the fix sticks (ps1 fallback has gpt-5.5, both installers mention
codex chain, README codex version current via GitHub API check).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
136 lines
5.1 KiB
Markdown
Executable File
136 lines
5.1 KiB
Markdown
Executable File
# Unlimited Coding
|
||
|
||
🌐 [English](README.md) | [Русский](README_ru.md) | [中文](README_zh.md) | [Español](README_es.md)
|
||
|
||
支持自定义 API 端点的修补版 AI 编码工具。
|
||
|
||
## 产品
|
||
|
||
| 文件夹 | 工具 | 状态 |
|
||
|-------|-----------|--------|
|
||
| [claude/](claude/) | Claude Code | 活跃 (v2.1.112) |
|
||
| [codex/](codex/) | OpenAI Codex CLI | **活跃 (v0.125.0)** |
|
||
| [gemini/](gemini/) | Gemini CLI | **活跃 (v0.35.3)** |
|
||
| [qwen/](qwen/) | Qwen Code | **活跃 (v0.14.5)** |
|
||
| antigravity/ | Antigravity | 计划中 |
|
||
|
||
## 一键安装
|
||
|
||
> 安装程序自动安装 Node.js(如果缺少)、npm 包、环境变量和 settings.json。
|
||
> **不需要手动粘贴 bash/PowerShell 代码** — 只需运行下面的一条命令即可。
|
||
|
||
### 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 管理员):**
|
||
```powershell
|
||
$h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"}
|
||
Set-ExecutionPolicy Bypass -Scope Process -Force
|
||
iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.ps1" -OutFile "$env:TEMP\uclaude_install.ps1" -Headers $h
|
||
. "$env:TEMP\uclaude_install.ps1"
|
||
```
|
||
|
||
### Gemini CLI
|
||
|
||
**Linux / macOS:**
|
||
```bash
|
||
curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \
|
||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_install.sh \
|
||
-o /tmp/ugemini.sh && sudo bash /tmp/ugemini.sh
|
||
```
|
||
|
||
**Windows (PowerShell 管理员):**
|
||
```powershell
|
||
$h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"}
|
||
Set-ExecutionPolicy Bypass -Scope Process -Force
|
||
iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_install.ps1" -OutFile "$env:TEMP\ugemini_install.ps1" -Headers $h
|
||
. "$env:TEMP\ugemini_install.ps1"
|
||
```
|
||
|
||
**Windows (CMD 管理员):**
|
||
```cmd
|
||
powershell -NoProfile -ExecutionPolicy Bypass -Command "$h=@{Authorization='token cadffcb0a6a3be728ac1ff619bb40c86588f6837'}; iwr 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_install.ps1' -OutFile \"$env:TEMP\ugemini_install.ps1\" -Headers $h; & \"$env:TEMP\ugemini_install.ps1\""
|
||
```
|
||
|
||
### Codex CLI
|
||
|
||
> Codex CLI 是编译的 Rust 二进制(不是 npm)。安装程序从 GitHub releases 下载。
|
||
|
||
**Linux / macOS:**
|
||
```bash
|
||
curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \
|
||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_install.sh \
|
||
-o /tmp/ucodex_install.sh && sudo bash /tmp/ucodex_install.sh
|
||
```
|
||
|
||
**Windows (PowerShell 管理员):**
|
||
```powershell
|
||
$h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"}
|
||
Set-ExecutionPolicy Bypass -Scope Process -Force
|
||
iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_install.ps1" -OutFile "$env:TEMP\ucodex_install.ps1" -Headers $h
|
||
. "$env:TEMP\ucodex_install.ps1"
|
||
```
|
||
|
||
**Windows (CMD 管理员):**
|
||
```cmd
|
||
powershell -NoProfile -ExecutionPolicy Bypass -Command "$h=@{Authorization='token cadffcb0a6a3be728ac1ff619bb40c86588f6837'}; iwr 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_install.ps1' -OutFile \"$env:TEMP\ucodex_install.ps1\" -Headers $h; & \"$env:TEMP\ucodex_install.ps1\""
|
||
```
|
||
|
||
### Qwen Code
|
||
|
||
**Linux / macOS:**
|
||
```bash
|
||
curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \
|
||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_install.sh \
|
||
-o /tmp/uqwen.sh && sudo bash /tmp/uqwen.sh
|
||
```
|
||
|
||
**Windows (PowerShell 管理员):**
|
||
```powershell
|
||
$h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"}
|
||
Set-ExecutionPolicy Bypass -Scope Process -Force
|
||
iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_install.ps1" -OutFile "$env:TEMP\uqwen_install.ps1" -Headers $h
|
||
. "$env:TEMP\uqwen_install.ps1"
|
||
```
|
||
|
||
**Windows (CMD 管理员):**
|
||
```cmd
|
||
powershell -NoProfile -ExecutionPolicy Bypass -Command "$h=@{Authorization='token cadffcb0a6a3be728ac1ff619bb40c86588f6837'}; iwr 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_install.ps1' -OutFile \"$env:TEMP\uqwen_install.ps1\" -Headers $h; & \"$env:TEMP\uqwen_install.ps1\""
|
||
```
|
||
|
||
## 安装后
|
||
|
||
重启终端,然后验证:
|
||
|
||
```
|
||
claude --version
|
||
gemini -p "Hello"
|
||
codex exec "Hello"
|
||
qwen -p "Hello"
|
||
```
|
||
|
||
## 更新和卸载
|
||
|
||
更新和卸载脚本(`uclaude_update.sh/.ps1`、`uclaude_uninstall.sh/.ps1` 等)位于每个工具目录中。
|
||
完整命令请参见 [English README](README.md#update)。
|
||
|
||
## 详细文档
|
||
|
||
- [claude/README.md](claude/README.md)
|
||
- [codex/README.md](codex/README.md)
|
||
- [gemini/README.md](gemini/README.md)
|
||
- [qwen/README.md](qwen/README.md)
|