snow-ai 0.5.20 → 0.5.22
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 +23 -9
- package/bundle/cli.mjs +53229 -35906
- package/bundle/package.json +5 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -16,11 +16,13 @@ _An intelligent AI-powered CLI tool for developers_
|
|
|
16
16
|
|
|
17
17
|
## Thanks 💖
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
<img alt="contributors" src="https://contrib.rocks/image?repo=MayDay-wpf/snow-cli"/>
|
|
20
20
|
|
|
21
|
-
##
|
|
21
|
+
## << [Click to view the detailed complete document](docs/usage/en/0.Catalogue.md) >>
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## Overview Catalog
|
|
22
25
|
|
|
23
|
-
- [Detailed and complete documentation](docs/usage/en/0.Catalogue.md)
|
|
24
26
|
- [System Requirements](#system-requirements)
|
|
25
27
|
- [Installation](#installation)
|
|
26
28
|
- [Access Domestic Claude Code & Codex Relay](#access-domestic-claude-code--codex-relay-snow-configuration)
|
|
@@ -102,7 +104,7 @@ npm run link # builds and globally links snow
|
|
|
102
104
|
|
|
103
105
|
# API & Model Settings
|
|
104
106
|
|
|
105
|
-
For detailed configuration instructions, please refer to: [First Configuration Documentation](docs/usage/zh/
|
|
107
|
+
For detailed configuration instructions, please refer to: [First Configuration Documentation](docs/usage/zh/02.首次配置.md)
|
|
106
108
|
|
|
107
109
|

|
|
108
110
|
|
|
@@ -185,11 +187,23 @@ In addition, you need to add the following custom request headers:
|
|
|
185
187
|
|
|
186
188
|
```json
|
|
187
189
|
{
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
190
|
+
"anthropic-beta": "claude-code-20250219,interleaved-thinking-2025-05-14",
|
|
191
|
+
"anthropic-dangerous-direct-browser-access":"true",
|
|
192
|
+
"anthropic-version": "2023-06-01",
|
|
193
|
+
"user-agent": "claude-cli/2.0.22 (external, cli",
|
|
194
|
+
"x-app": "cli"
|
|
195
|
+
}
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
**Enable 1M context request header:**
|
|
199
|
+
|
|
200
|
+
```json
|
|
201
|
+
{
|
|
202
|
+
"anthropic-beta": "claude-code-20250219,context-1m-2025-08-07,interleaved-thinking-2025-05-14",
|
|
203
|
+
"anthropic-dangerous-direct-browser-access":"true",
|
|
204
|
+
"anthropic-version": "2023-06-01",
|
|
205
|
+
"user-agent": "claude-cli/2.0.22 (external, cli",
|
|
206
|
+
"x-app": "cli"
|
|
193
207
|
}
|
|
194
208
|
```
|
|
195
209
|
|