zcf 3.6.3 → 3.6.4
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
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
</p>
|
|
23
23
|
</div>
|
|
24
24
|
|
|
25
|
-
## ♥️
|
|
25
|
+
## ♥️ Sponsors
|
|
26
26
|
|
|
27
27
|
[](https://z.ai/subscribe?ic=8JVLJQFSKB)
|
|
28
28
|
|
|
@@ -51,12 +51,12 @@ Get 10% OFF GLM CODING PLAN:https://z.ai/subscribe?ic=8JVLJQFSKB
|
|
|
51
51
|
<td width="180"><a href="https://crazyrouter.com/?utm_source=github&utm_medium=sponsor&utm_campaign=zcf&aff=yJFo"><img src="./src/assets/crazyrouter.svg" alt="Crazyrouter" width="150"></a></td>
|
|
52
52
|
<td>Thanks to Crazyrouter for sponsoring this project! Crazyrouter is a high-performance AI API aggregation gateway — one API key for 300+ models (GPT, Claude, Gemini, DeepSeek, and more). All models at 55% of official pricing with auto-failover, smart routing, and unlimited concurrency. Fully OpenAI-compatible, works seamlessly with Claude Code, Codex, and Gemini CLI. Crazyrouter offers an exclusive deal for ZCF users: register via <a href="https://crazyrouter.com/?utm_source=github&utm_medium=sponsor&utm_campaign=zcf&aff=yJFo">this link</a> to get $2 free credit instantly!</td>
|
|
53
53
|
</tr>
|
|
54
|
-
|
|
54
|
+
</tbody>
|
|
55
55
|
</table>
|
|
56
56
|
|
|
57
57
|
## 🚀 Quick Start
|
|
58
58
|
|
|
59
|
-
- Recommended: `npx zcf` opens the interactive menu
|
|
59
|
+
- Recommended: `npx zcf` opens the interactive menu — pick what you need.
|
|
60
60
|
- Common commands:
|
|
61
61
|
|
|
62
62
|
```bash
|
|
@@ -93,7 +93,7 @@ This project is inspired by and incorporates work from:
|
|
|
93
93
|
- [ccusage](https://github.com/ryoppippi/ccusage)
|
|
94
94
|
- [BMad Method](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
95
95
|
|
|
96
|
-
Thanks to these community contributors for sharing
|
|
96
|
+
Thanks to these community contributors for sharing!
|
|
97
97
|
|
|
98
98
|
## ❤️ Support & Sponsors
|
|
99
99
|
|
|
@@ -133,6 +133,7 @@ A huge thank you to all our sponsors for their generous support!
|
|
|
133
133
|
- 初屿贤 (first Codex user sponsor 🙅🏻♂️)
|
|
134
134
|
- Protein (first 1688 sponsor 😏)
|
|
135
135
|
- [musistudio](https://github.com/musistudio) (first open source project author sponsor, the author of [CCR](https://github.com/musistudio/claude-code-router) 🤩)
|
|
136
|
+
- \*年 (first 100 CNY sponsor 💴)
|
|
136
137
|
- [BeatSeat](https://github.com/BeatSeat) (community expert 😎, provided $1000 Claude credits)
|
|
137
138
|
- [wenwen](https://github.com/wenwen12345) (community expert 🤓, provided daily $100 Claude&GPT credits)
|
|
138
139
|
- 16°C coffee (My best friend 🤪, offered ChatGPT Pro $200 package)
|
|
@@ -96,7 +96,7 @@ const API_PROVIDER_PRESETS = [
|
|
|
96
96
|
claudeCode: {
|
|
97
97
|
baseUrl: "https://coding.dashscope.aliyuncs.com/apps/anthropic",
|
|
98
98
|
authType: "auth_token",
|
|
99
|
-
defaultModels: ["
|
|
99
|
+
defaultModels: ["glm-5"]
|
|
100
100
|
},
|
|
101
101
|
description: "Bailian Coding API Service"
|
|
102
102
|
},
|
|
@@ -105,9 +105,9 @@ const API_PROVIDER_PRESETS = [
|
|
|
105
105
|
name: "MiniMax",
|
|
106
106
|
supportedCodeTools: ["claude-code"],
|
|
107
107
|
claudeCode: {
|
|
108
|
-
baseUrl: "https://api.
|
|
108
|
+
baseUrl: "https://api.minimax.io/anthropic",
|
|
109
109
|
authType: "auth_token",
|
|
110
|
-
defaultModels: ["MiniMax-M2", "MiniMax-M2"]
|
|
110
|
+
defaultModels: ["MiniMax-M2.7", "MiniMax-M2.7-highspeed"]
|
|
111
111
|
},
|
|
112
112
|
description: "MiniMax API Service"
|
|
113
113
|
},
|
|
@@ -18,7 +18,7 @@ import { rm, mkdir, copyFile as copyFile$1 } from 'node:fs/promises';
|
|
|
18
18
|
import i18next from 'i18next';
|
|
19
19
|
import Backend from 'i18next-fs-backend';
|
|
20
20
|
|
|
21
|
-
const version = "3.6.
|
|
21
|
+
const version = "3.6.4";
|
|
22
22
|
const homepage = "https://github.com/UfoMiao/zcf";
|
|
23
23
|
|
|
24
24
|
const i18n = i18next.createInstance();
|