docs: sync all localized READMEs (RU/ZH/ES) with current install flow
- Update product table versions everywhere (claude v2.1.112, codex v0.116.0, gemini v0.35.3, qwen v0.14.5) - Replace outdated bash heredocs with one-liner installer scripts - Add Windows PowerShell + Windows CMD entry points - Update claude/README*.md: drop git clone snippets, use uclaude_install.ps1 one-liner Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
196
README_zh.md
196
README_zh.md
@@ -2,88 +2,24 @@
|
||||
|
||||
🌐 [English](README.md) | [Русский](README_ru.md) | [中文](README_zh.md) | [Español](README_es.md)
|
||||
|
||||
支持自定义API端点的AI编码工具。
|
||||
支持自定义 API 端点的修补版 AI 编码工具。
|
||||
|
||||
## 产品
|
||||
|
||||
| 文件夹 | 工具 | 状态 |
|
||||
|-------|-----------|--------|
|
||||
| [claude/](claude/) | Claude Code | 活跃 (v2.1.62) |
|
||||
| codex/ | OpenAI Codex CLI | 计划中 |
|
||||
| gemini/ | Gemini CLI | 计划中 |
|
||||
| qwen/ | Qwen Code | 计划中 |
|
||||
| [claude/](claude/) | Claude Code | 活跃 (v2.1.112) |
|
||||
| [codex/](codex/) | OpenAI Codex CLI | **活跃 (v0.116.0)** |
|
||||
| [gemini/](gemini/) | Gemini CLI | **活跃 (v0.35.3)** |
|
||||
| [qwen/](qwen/) | Qwen Code | **活跃 (v0.14.5)** |
|
||||
| antigravity/ | Antigravity | 计划中 |
|
||||
|
||||
## 快速开始
|
||||
## 一键安装
|
||||
|
||||
### 先决条件检查
|
||||
> 安装程序自动安装 Node.js(如果缺少)、npm 包、环境变量和 settings.json。
|
||||
> **不需要手动粘贴 bash/PowerShell 代码** — 只需运行下面的一条命令即可。
|
||||
|
||||
安装前,请确认已安装 Node.js v24.13+:
|
||||
|
||||
```bash
|
||||
# 检查 Node.js 版本
|
||||
node --version
|
||||
|
||||
# 如果缺少 Node.js 或版本过旧,请安装:
|
||||
# Linux (Debian/Ubuntu):
|
||||
sudo apt update && sudo apt install -y nodejs npm
|
||||
|
||||
# Linux (RHEL/Fedora):
|
||||
sudo dnf install -y nodejs npm
|
||||
|
||||
# macOS:
|
||||
brew install node
|
||||
|
||||
# Windows (以管理员身份运行 PowerShell):
|
||||
winget install OpenJS.NodeJS
|
||||
```
|
||||
|
||||
### 替代方案 - 自动安装 Node.js
|
||||
|
||||
如果需要自动安装或更新 Node.js:
|
||||
|
||||
**Linux:**
|
||||
```bash
|
||||
curl -fsSL https://deb.nodesource.com/setup_24.x | sudo -E bash - && sudo apt-get install -y nodejs
|
||||
```
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||
brew install node
|
||||
```
|
||||
|
||||
**Windows:**
|
||||
```powershell
|
||||
# 以管理员身份运行
|
||||
winget install OpenJS.NodeJS
|
||||
```
|
||||
|
||||
### Claude Code — 安装
|
||||
|
||||
在任何平台上只需两行命令:
|
||||
|
||||
**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
|
||||
```
|
||||
|
||||
> 需要Node.js。安装地址:https://nodejs.org/
|
||||
|
||||
### 更新
|
||||
|
||||
同样的两行命令——npm会自动从我们的注册表下载最新补丁版本。
|
||||
|
||||
### 替代方案——自动安装程序(如果没有Node.js)
|
||||
|
||||
自动安装Node.js、Claude Code和补丁。
|
||||
### Claude Code
|
||||
|
||||
**Linux (Debian/Ubuntu/RHEL/Fedora):**
|
||||
```bash
|
||||
@@ -99,37 +35,101 @@ curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \
|
||||
-o /tmp/uclaude.sh && bash /tmp/uclaude.sh
|
||||
```
|
||||
|
||||
**Windows (以管理员身份运行PowerShell):**
|
||||
**Windows (PowerShell 管理员):**
|
||||
```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
|
||||
$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
|
||||
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
cd unlimitedcoding
|
||||
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
|
||||
```
|
||||
|
||||
<!-- MANUAL_VERSION:START -->
|
||||
| 平台 | 命令 |
|
||||
|-----------|---------|
|
||||
| Linux / macOS | `sudo bash claude/releases/v2.1.62/install.sh` |
|
||||
| Windows CMD | `claude\releases\v2.1.62\install.bat` |
|
||||
| Windows PowerShell | `powershell -ExecutionPolicy Bypass -File claude\releases\v2.1.62\install.ps1` |
|
||||
<!-- MANUAL_VERSION:END -->
|
||||
**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\""
|
||||
```
|
||||
|
||||
| 组件 | 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 |
|
||||
| 补丁版 cli.js | 带备份替换 | 带备份替换 | 带备份替换 |
|
||||
| 设置 | 所有用户 | 所有用户 | 所有用户 |
|
||||
### 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)
|
||||
|
||||
Reference in New Issue
Block a user