fix: use isolated read-only token for install commands
- Replace old aibot777 token with new scoped token (read:repository) - Simplify curl commands: use ?token= query param instead of -H header - Token embedded in uclaude_install.sh for git clone auth - All repos remain private; token only allows reading Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
10
README.md
10
README.md
@@ -24,19 +24,17 @@ All dependencies are installed automatically (git, python3, Node.js, Claude Code
|
||||
|
||||
**Linux (Debian/Ubuntu/RHEL/Fedora):**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | sudo bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | sudo bash
|
||||
```
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | bash
|
||||
```
|
||||
|
||||
**Windows (PowerShell as Administrator):**
|
||||
```powershell
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
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
|
||||
```
|
||||
@@ -44,7 +42,7 @@ powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
|
||||
### Manual Install (all platforms)
|
||||
|
||||
```bash
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
cd unlimitedcoding
|
||||
```
|
||||
|
||||
|
||||
10
README_es.md
10
README_es.md
@@ -24,19 +24,17 @@ Todas las dependencias se instalan automáticamente (git, python3, Node.js, Clau
|
||||
|
||||
**Linux (Debian/Ubuntu/RHEL/Fedora):**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | sudo bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | sudo bash
|
||||
```
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | bash
|
||||
```
|
||||
|
||||
**Windows (PowerShell como administrador):**
|
||||
```powershell
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
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
|
||||
```
|
||||
@@ -44,7 +42,7 @@ powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
|
||||
### Instalación manual (todas las plataformas)
|
||||
|
||||
```bash
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
cd unlimitedcoding
|
||||
```
|
||||
|
||||
|
||||
10
README_ru.md
10
README_ru.md
@@ -24,19 +24,17 @@
|
||||
|
||||
**Linux (Debian/Ubuntu/RHEL/Fedora):**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | sudo bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | sudo bash
|
||||
```
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | bash
|
||||
```
|
||||
|
||||
**Windows (PowerShell от имени администратора):**
|
||||
```powershell
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
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
|
||||
```
|
||||
@@ -44,7 +42,7 @@ powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
|
||||
### Ручная установка (все платформы)
|
||||
|
||||
```bash
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
cd unlimitedcoding
|
||||
```
|
||||
|
||||
|
||||
10
README_zh.md
10
README_zh.md
@@ -24,19 +24,17 @@
|
||||
|
||||
**Linux (Debian/Ubuntu/RHEL/Fedora):**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | sudo bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | sudo bash
|
||||
```
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | bash
|
||||
```
|
||||
|
||||
**Windows(以管理员身份运行 PowerShell):**
|
||||
```powershell
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
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
|
||||
```
|
||||
@@ -44,7 +42,7 @@ powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
|
||||
### 手动安装(所有平台)
|
||||
|
||||
```bash
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
cd unlimitedcoding
|
||||
```
|
||||
|
||||
|
||||
@@ -10,19 +10,17 @@ All dependencies are installed automatically: Git, Python 3, Node.js v24.13+, Cl
|
||||
|
||||
**Linux (Debian/Ubuntu/RHEL/Fedora):**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | sudo bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | sudo bash
|
||||
```
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | bash
|
||||
```
|
||||
|
||||
**Windows (PowerShell as Administrator):**
|
||||
```powershell
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
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
|
||||
```
|
||||
@@ -30,7 +28,7 @@ powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
|
||||
## Manual Install
|
||||
|
||||
```bash
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
cd unlimitedcoding
|
||||
```
|
||||
|
||||
|
||||
@@ -10,19 +10,17 @@ Todas las dependencias se instalan automáticamente: Git, Python 3, Node.js v24.
|
||||
|
||||
**Linux (Debian/Ubuntu/RHEL/Fedora):**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | sudo bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | sudo bash
|
||||
```
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | bash
|
||||
```
|
||||
|
||||
**Windows (PowerShell como administrador):**
|
||||
```powershell
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
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
|
||||
```
|
||||
@@ -30,7 +28,7 @@ powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
|
||||
## Instalación manual
|
||||
|
||||
```bash
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
cd unlimitedcoding
|
||||
```
|
||||
|
||||
|
||||
@@ -10,19 +10,17 @@
|
||||
|
||||
**Linux (Debian/Ubuntu/RHEL/Fedora):**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | sudo bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | sudo bash
|
||||
```
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | bash
|
||||
```
|
||||
|
||||
**Windows (PowerShell от имени администратора):**
|
||||
```powershell
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
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
|
||||
```
|
||||
@@ -30,7 +28,7 @@ powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
|
||||
## Ручная установка
|
||||
|
||||
```bash
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
cd unlimitedcoding
|
||||
```
|
||||
|
||||
|
||||
@@ -10,19 +10,17 @@
|
||||
|
||||
**Linux (Debian/Ubuntu/RHEL/Fedora):**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | sudo bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | sudo bash
|
||||
```
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
curl -fsSL -H 'Authorization: token 4443e546f9b93e59f7ed256753286038625ef7cf' \
|
||||
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | bash
|
||||
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | bash
|
||||
```
|
||||
|
||||
**Windows(以管理员身份运行 PowerShell):**
|
||||
```powershell
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
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
|
||||
```
|
||||
@@ -30,7 +28,7 @@ powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
|
||||
## 手动安装
|
||||
|
||||
```bash
|
||||
git clone --depth 1 https://x-token:4443e546f9b93e59f7ed256753286038625ef7cf@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
|
||||
cd unlimitedcoding
|
||||
```
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
#!/bin/bash
|
||||
# UClaude — one-line installer with full auto-install chain
|
||||
# Usage: curl -fsSL -H "Authorization: token GITEA_TOKEN" https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | bash
|
||||
# Usage: curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=GITEA_TOKEN' | sudo bash
|
||||
set -e
|
||||
|
||||
# Read-only access token for private repo (scoped: read:repository only)
|
||||
GITEA_TOKEN="${GITEA_TOKEN:-4443e546f9b93e59f7ed256753286038625ef7cf}"
|
||||
GITEA_TOKEN="${GITEA_TOKEN:-cadffcb0a6a3be728ac1ff619bb40c86588f6837}"
|
||||
REPO_URL="https://x-token:${GITEA_TOKEN}@git.sensey24.ru/aibot777/unlimitedcoding.git"
|
||||
INSTALL_DIR="${UCLAUDE_DIR:-$HOME/unlimitedcoding}"
|
||||
|
||||
@@ -32,7 +32,7 @@ install_pkg() {
|
||||
need_sudo() {
|
||||
if [ "$(id -u)" -ne 0 ]; then
|
||||
echo " Root privileges required to install packages."
|
||||
echo " Re-run with sudo: curl -fsSL -H 'Authorization: token ${GITEA_TOKEN}' https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh | sudo bash"
|
||||
echo " Re-run with sudo: curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=${GITEA_TOKEN}' | sudo bash"
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user