@bifrost-proxy/bifrost-linux-arm 0.0.48-beta → 0.0.50-beta

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.
package/README.md CHANGED
@@ -17,8 +17,7 @@ Bifrost 是一个用 Rust 编写的高性能代理服务器,灵感来源于 [W
17
17
 
18
18
  ## 特性说明
19
19
 
20
- ![network.png](assets/network.png)
21
- <img width="1500" height="783" alt="image" src="https://github.com/user-attachments/assets/44062a96-47f3-481b-a2b6-e1bda9b3fda9" />
20
+ ![network.png](assets/network.png) <img width="1500" height="783" alt="image" src="https://github.com/user-attachments/assets/44062a96-47f3-481b-a2b6-e1bda9b3fda9" />
22
21
  ![scripts.png](assets/scripts.png)
23
22
  ![rules.png](assets/rules.png)
24
23
  ![replay.png](assets/replay.png)
@@ -37,11 +36,19 @@ Bifrost 是一个用 Rust 编写的高性能代理服务器,灵感来源于 [W
37
36
  安装 CLI:
38
37
 
39
38
  方法一:使用脚本安装
39
+
40
40
  ```bash
41
41
  curl -fsSL https://raw.githubusercontent.com/bifrost-proxy/bifrost/main/install-binary.sh | bash
42
42
  ```
43
43
 
44
+ 安装指定版本
45
+
46
+ ```bash
47
+ curl -fsSL https://raw.githubusercontent.com/bifrost-proxy/bifrost/main/install-binary.sh | bash -s -- --version v0.0.48-beta
48
+ ```
49
+
44
50
  方法二:使用 npm 安装
51
+
45
52
  ```bash
46
53
  npm i @bifrost-proxy/bifrost
47
54
  ```
@@ -61,6 +68,7 @@ http://127.0.0.1:9900/_bifrost/
61
68
  ```
62
69
 
63
70
  ## 用不习惯 CLI?想要使用桌面端 APP?
71
+
64
72
  请直接到[releases](https://github.com/bifrost-proxy/bifrost/releases)中下载对应平台的桌面端程序
65
73
 
66
74
  ## 基本用法摘要
@@ -74,6 +82,12 @@ bifrost status
74
82
  # 停止服务
75
83
  bifrost stop
76
84
 
85
+ # 管理端远程访问与鉴权(Web UI)
86
+ bifrost admin remote status
87
+ bifrost admin remote enable
88
+ bifrost admin passwd
89
+ bifrost admin revoke-all
90
+
77
91
  # 查看流量
78
92
  bifrost traffic list
79
93
  bifrost traffic search "keyword" --method POST --host api.openai.com --path /v1/responses
@@ -115,3 +129,4 @@ chatgpt.com http3://
115
129
  - 请求重放说明:[`docs/replay.md`](docs/replay.md)
116
130
  - 项目结构与模块说明:[`docs/architecture.md`](docs/architecture.md)
117
131
  - Agent Skill 安装说明:[`docs/agent-skill.md`](docs/agent-skill.md)
132
+
package/bin/README.md CHANGED
@@ -17,8 +17,7 @@ Bifrost 是一个用 Rust 编写的高性能代理服务器,灵感来源于 [W
17
17
 
18
18
  ## 特性说明
19
19
 
20
- ![network.png](assets/network.png)
21
- <img width="1500" height="783" alt="image" src="https://github.com/user-attachments/assets/44062a96-47f3-481b-a2b6-e1bda9b3fda9" />
20
+ ![network.png](assets/network.png) <img width="1500" height="783" alt="image" src="https://github.com/user-attachments/assets/44062a96-47f3-481b-a2b6-e1bda9b3fda9" />
22
21
  ![scripts.png](assets/scripts.png)
23
22
  ![rules.png](assets/rules.png)
24
23
  ![replay.png](assets/replay.png)
@@ -37,11 +36,19 @@ Bifrost 是一个用 Rust 编写的高性能代理服务器,灵感来源于 [W
37
36
  安装 CLI:
38
37
 
39
38
  方法一:使用脚本安装
39
+
40
40
  ```bash
41
41
  curl -fsSL https://raw.githubusercontent.com/bifrost-proxy/bifrost/main/install-binary.sh | bash
42
42
  ```
43
43
 
44
+ 安装指定版本
45
+
46
+ ```bash
47
+ curl -fsSL https://raw.githubusercontent.com/bifrost-proxy/bifrost/main/install-binary.sh | bash -s -- --version v0.0.48-beta
48
+ ```
49
+
44
50
  方法二:使用 npm 安装
51
+
45
52
  ```bash
46
53
  npm i @bifrost-proxy/bifrost
47
54
  ```
@@ -61,6 +68,7 @@ http://127.0.0.1:9900/_bifrost/
61
68
  ```
62
69
 
63
70
  ## 用不习惯 CLI?想要使用桌面端 APP?
71
+
64
72
  请直接到[releases](https://github.com/bifrost-proxy/bifrost/releases)中下载对应平台的桌面端程序
65
73
 
66
74
  ## 基本用法摘要
@@ -74,6 +82,12 @@ bifrost status
74
82
  # 停止服务
75
83
  bifrost stop
76
84
 
85
+ # 管理端远程访问与鉴权(Web UI)
86
+ bifrost admin remote status
87
+ bifrost admin remote enable
88
+ bifrost admin passwd
89
+ bifrost admin revoke-all
90
+
77
91
  # 查看流量
78
92
  bifrost traffic list
79
93
  bifrost traffic search "keyword" --method POST --host api.openai.com --path /v1/responses
@@ -115,3 +129,4 @@ chatgpt.com http3://
115
129
  - 请求重放说明:[`docs/replay.md`](docs/replay.md)
116
130
  - 项目结构与模块说明:[`docs/architecture.md`](docs/architecture.md)
117
131
  - Agent Skill 安装说明:[`docs/agent-skill.md`](docs/agent-skill.md)
132
+
package/bin/bifrost CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bifrost-proxy/bifrost-linux-arm",
3
- "version": "0.0.48-beta",
3
+ "version": "0.0.50-beta",
4
4
  "description": "Bifrost CLI binary for Linux ARM",
5
5
  "license": "MIT",
6
6
  "repository": {