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:
delta-cloud-208e
2026-04-21 10:06:22 +00:00
parent 1bbeedf8e2
commit 95d53ba750
8 changed files with 652 additions and 363 deletions

View File

@@ -8,82 +8,18 @@ Herramientas de IA para codificación con soporte para puntos finales de API per
| Carpeta | Herramienta | Estado |
|-------|-----------|--------|
| [claude/](claude/) | Claude Code | Activo (v2.1.62) |
| codex/ | OpenAI Codex CLI | Planeado |
| gemini/ | Gemini CLI | Planeado |
| qwen/ | Qwen Code | Planeado |
| [claude/](claude/) | Claude Code | Activo (v2.1.112) |
| [codex/](codex/) | OpenAI Codex CLI | **Activo (v0.116.0)** |
| [gemini/](gemini/) | Gemini CLI | **Activo (v0.35.3)** |
| [qwen/](qwen/) | Qwen Code | **Activo (v0.14.5)** |
| antigravity/ | Antigravity | Planeado |
## Inicio rápido
## Instalación con un solo comando
### Verificación de requisitos previos
> El instalador descarga Node.js (si falta), el paquete npm, las variables de entorno
> y `~/.gemini/settings.json` automáticamente. **No necesita pegar manualmente código bash/PowerShell.**
Antes de instalar, verifique que Node.js v24.13+ esté instalado:
```bash
# Comprobar versión de Node.js
node --version
# Si falta Node.js o la versión es demasiado antigua, instale:
# 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 como Administrador):
winget install OpenJS.NodeJS
```
### Alternativa - Autoinstalación de Node.js
Si necesita instalar o actualizar Node.js automáticamente:
**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
# Como Administrador
winget install OpenJS.NodeJS
```
### Claude Code — Instalación
Dos comandos en cualquier plataforma:
**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
```
> Se requiere Node.js. Descargar: https://nodejs.org/
### Actualización
Los mismos dos comandos — npm descargará automáticamente la última versión parcheada desde nuestro registro.
### Alternativa — instalador automático (si no tienes Node.js)
Instala Node.js, Claude Code y los parches automáticamente.
### 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 como administrador):**
**Windows (PowerShell como Administrador):**
```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"
```
### Instalación manual desde el lanzamiento
Clona el repositorio y ejecuta el instalador:
### 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 -->
| Plataforma | Comando |
|-----------|---------|
| 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 como Administrador):**
```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"
```
## Qué se instala automáticamente
**Windows (CMD como Administrador):**
```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\""
```
| Componente | 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 parcheado | reemplazo con copia de seguridad | reemplazo con copia de seguridad | reemplazo con copia de seguridad |
| Configuraciones | todos los usuarios | todos los usuarios | todos los usuarios |
### Codex CLI
> Codex CLI es un binario Rust compilado (no npm). El instalador lo descarga desde 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 como Administrador):**
```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 como Administrador):**
```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 como Administrador):**
```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 como Administrador):**
```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\""
```
## Después de instalar
Reinicie el terminal y verifique:
```
claude --version
gemini -p "Hello"
codex exec "Hello"
qwen -p "Hello"
```
## Actualización y desinstalación
Los scripts de actualización y desinstalación (`uclaude_update.sh/.ps1`, `uclaude_uninstall.sh/.ps1`, etc.)
están en cada directorio de herramienta. Comandos completos: [English README](README.md#update).
## Documentación detallada
- [claude/README.md](claude/README.md)
- [codex/README.md](codex/README.md)
- [gemini/README.md](gemini/README.md)
- [qwen/README.md](qwen/README.md)