open-claude-code-proxy 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -20
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -39,25 +39,19 @@ Anthropic API
39
39
 
40
40
  ### Quick Start
41
41
 
42
- #### Option 1: Use npx (Recommended)
43
-
44
- ```bash
45
- npx open-claude-code-proxy
46
- ```
47
-
48
- #### Option 2: Install globally
42
+ #### Option 1: Install globally (Recommended)
49
43
 
50
44
  ```bash
51
45
  npm install -g open-claude-code-proxy
52
- claude-proxy start
46
+ claude-local-proxy
53
47
  ```
54
48
 
55
- #### Option 3: Clone and run
49
+ #### Option 2: Clone and run
56
50
 
57
51
  ```bash
58
52
  git clone https://github.com/lkyxuan/open-claude-code-proxy.git
59
53
  cd open-claude-code-proxy
60
- ./claude-proxy start
54
+ node cli.js
61
55
  ```
62
56
 
63
57
  ### Prerequisites
@@ -182,25 +176,19 @@ Anthropic API
182
176
 
183
177
  ### 快速开始
184
178
 
185
- #### 方式 1: 使用 npx(推荐)
186
-
187
- ```bash
188
- npx open-claude-code-proxy
189
- ```
190
-
191
- #### 方式 2: 全局安装
179
+ #### 方式 1: 全局安装(推荐)
192
180
 
193
181
  ```bash
194
182
  npm install -g open-claude-code-proxy
195
- claude-proxy start
183
+ claude-local-proxy
196
184
  ```
197
185
 
198
- #### 方式 3: 克隆运行
186
+ #### 方式 2: 克隆运行
199
187
 
200
188
  ```bash
201
189
  git clone https://github.com/lkyxuan/open-claude-code-proxy.git
202
190
  cd open-claude-code-proxy
203
- ./claude-proxy start
191
+ node cli.js
204
192
  ```
205
193
 
206
194
  ### 前置条件
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-claude-code-proxy",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Local proxy that forwards API requests through the official Claude Code CLI",
5
5
  "main": "server.js",
6
6
  "bin": {