- 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>
136 lines
5.3 KiB
Markdown
Executable File
136 lines
5.3 KiB
Markdown
Executable File
# Unlimited Coding
|
|
|
|
🌐 [English](README.md) | [Русский](README_ru.md) | [中文](README_zh.md) | [Español](README_es.md)
|
|
|
|
Herramientas de IA para codificación con soporte para puntos finales de API personalizados.
|
|
|
|
## Productos
|
|
|
|
| Carpeta | Herramienta | Estado |
|
|
|-------|-----------|--------|
|
|
| [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 |
|
|
|
|
## Instalación con un solo comando
|
|
|
|
> 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.**
|
|
|
|
### 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 como Administrador):**
|
|
```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 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"
|
|
```
|
|
|
|
**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\""
|
|
```
|
|
|
|
### 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)
|