@bifrost-proxy/bifrost-linux-arm64 0.0.58-beta → 0.0.60-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
@@ -50,7 +50,7 @@ curl -fsSL https://raw.githubusercontent.com/bifrost-proxy/bifrost/main/install-
50
50
  方法二:使用 npm 安装
51
51
 
52
52
  ```bash
53
- npm i @bifrost-proxy/bifrost
53
+ npm i -g @bifrost-proxy/bifrost
54
54
  ```
55
55
 
56
56
  更多安装方法:[`docs/getting-started.md`](docs/getting-started.md)
@@ -67,6 +67,18 @@ bifrost start -d
67
67
  http://127.0.0.1:9900/_bifrost/
68
68
  ```
69
69
 
70
+ ## 开发初始化
71
+
72
+ 克隆仓库后,先执行一次 Git hook 初始化:
73
+
74
+ ```bash
75
+ bash scripts/setup-git-hooks.sh
76
+ # 或
77
+ make setup
78
+ ```
79
+
80
+ 这会为当前仓库写入本地 `core.hooksPath=.githooks`,即使机器上配置了全局 `hooksPath`,后续 `git commit` 也会优先执行仓库内的 `.githooks/pre-commit`。默认 pre-commit 会检查工作区格式、桌面端 Tauri 格式,以及 `cargo clippy --workspace --all-targets --all-features -- -D warnings`。
81
+
70
82
  ## 用不习惯 CLI?想要使用桌面端 APP?
71
83
 
72
84
  请直接到[releases](https://github.com/bifrost-proxy/bifrost/releases)中下载对应平台的桌面端程序
@@ -129,4 +141,3 @@ chatgpt.com http3://
129
141
  - 请求重放说明:[`docs/replay.md`](docs/replay.md)
130
142
  - 项目结构与模块说明:[`docs/architecture.md`](docs/architecture.md)
131
143
  - Agent Skill 安装说明:[`docs/agent-skill.md`](docs/agent-skill.md)
132
-
package/bin/README.md CHANGED
@@ -50,7 +50,7 @@ curl -fsSL https://raw.githubusercontent.com/bifrost-proxy/bifrost/main/install-
50
50
  方法二:使用 npm 安装
51
51
 
52
52
  ```bash
53
- npm i @bifrost-proxy/bifrost
53
+ npm i -g @bifrost-proxy/bifrost
54
54
  ```
55
55
 
56
56
  更多安装方法:[`docs/getting-started.md`](docs/getting-started.md)
@@ -67,6 +67,18 @@ bifrost start -d
67
67
  http://127.0.0.1:9900/_bifrost/
68
68
  ```
69
69
 
70
+ ## 开发初始化
71
+
72
+ 克隆仓库后,先执行一次 Git hook 初始化:
73
+
74
+ ```bash
75
+ bash scripts/setup-git-hooks.sh
76
+ # 或
77
+ make setup
78
+ ```
79
+
80
+ 这会为当前仓库写入本地 `core.hooksPath=.githooks`,即使机器上配置了全局 `hooksPath`,后续 `git commit` 也会优先执行仓库内的 `.githooks/pre-commit`。默认 pre-commit 会检查工作区格式、桌面端 Tauri 格式,以及 `cargo clippy --workspace --all-targets --all-features -- -D warnings`。
81
+
70
82
  ## 用不习惯 CLI?想要使用桌面端 APP?
71
83
 
72
84
  请直接到[releases](https://github.com/bifrost-proxy/bifrost/releases)中下载对应平台的桌面端程序
@@ -129,4 +141,3 @@ chatgpt.com http3://
129
141
  - 请求重放说明:[`docs/replay.md`](docs/replay.md)
130
142
  - 项目结构与模块说明:[`docs/architecture.md`](docs/architecture.md)
131
143
  - 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-arm64",
3
- "version": "0.0.58-beta",
3
+ "version": "0.0.60-beta",
4
4
  "description": "Bifrost CLI binary for Linux ARM64",
5
5
  "license": "MIT",
6
6
  "repository": {