snow-ai 0.4.29 → 0.4.31
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/bundle/cli.mjs +76372 -72163
- package/bundle/pdf.worker.mjs +58730 -0
- package/package.json +7 -2
- package/readme.md +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-ai",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.31",
|
|
4
4
|
"description": "Intelligent Command Line Assistant powered by AI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"@modelcontextprotocol/sdk": "^1.17.3",
|
|
51
51
|
"@sindresorhus/tsconfig": "^3.0.1",
|
|
52
52
|
"@types/diff": "^7.0.2",
|
|
53
|
+
"@types/markdown-it": "^14.1.2",
|
|
53
54
|
"@types/marked-terminal": "^6.1.1",
|
|
54
55
|
"@types/pdf-parse": "^1.1.5",
|
|
55
56
|
"@types/prettier": "^2.7.3",
|
|
@@ -80,6 +81,8 @@
|
|
|
80
81
|
"ink-testing-library": "^3.0.0",
|
|
81
82
|
"ink-text-input": "^6.0.0",
|
|
82
83
|
"mammoth": "^1.11.0",
|
|
84
|
+
"markdown-it": "^14.1.0",
|
|
85
|
+
"markdown-it-terminal": "^0.4.0",
|
|
83
86
|
"marked": "^15.0.6",
|
|
84
87
|
"marked-terminal": "^7.3.0",
|
|
85
88
|
"meow": "^11.0.0",
|
|
@@ -120,8 +123,10 @@
|
|
|
120
123
|
}
|
|
121
124
|
},
|
|
122
125
|
"prettier": "@vdemedes/prettier-config",
|
|
123
|
-
"dependencies": {},
|
|
124
126
|
"optionalDependencies": {
|
|
125
127
|
"sharp": "^0.34.5"
|
|
128
|
+
},
|
|
129
|
+
"dependencies": {
|
|
130
|
+
"cli-table3": "^0.6.5"
|
|
126
131
|
}
|
|
127
132
|
}
|
package/readme.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
<img src="logo.png" alt="Snow AI CLI Logo" width="200"/>
|
|
3
|
+
<img src="docs/images/logo.png" alt="Snow AI CLI Logo" width="200"/>
|
|
4
4
|
|
|
5
5
|
# snow-ai
|
|
6
6
|
|
|
@@ -44,7 +44,7 @@ You can also clone and build from source: https://github.com/MayDay-wpf/snow-cli
|
|
|
44
44
|
|
|
45
45
|
### Install VSCode Extension
|
|
46
46
|
|
|
47
|
-
- Download [
|
|
47
|
+
- Download [snow-cli-x.x.x.vsix](https://github.com/MayDay-wpf/snow-cli/releases/tag/vsix)
|
|
48
48
|
|
|
49
49
|
- Open VSCode, click `Extensions` -> `Install from VSIX...` -> select `snow-cli-0.2.6.vsix`
|
|
50
50
|
|
|
@@ -72,13 +72,13 @@ In version `v0.3.2` and later, all official SDKs have been removed (they were to
|
|
|
72
72
|
- **Max Context Tokens** - The model's maximum context window, used for calculating context percentage. For example, Gemini typically has 1M context, so enter `1000000`. This parameter only affects UI calculations, not actual model context
|
|
73
73
|
- **Max Tokens** - This is critical and will be directly added to API requests as the `max_tokens` parameter
|
|
74
74
|
|
|
75
|
-

|
|
75
|
+

|
|
76
76
|
|
|
77
77
|
## Proxy & Browser Settings
|
|
78
78
|
|
|
79
79
|
Configure system proxy port and search engine for web search. In most cases, this doesn't need modification as the app will automatically use system proxy. The app automatically detects available search engines (Edge/Chrome) unless you've manually changed their installation paths.
|
|
80
80
|
|
|
81
|
-

|
|
81
|
+

|
|
82
82
|
|
|
83
83
|
## System Prompt Settings
|
|
84
84
|
|
|
@@ -98,13 +98,13 @@ Once everything is configured, enter the conversation page by clicking `Start`.
|
|
|
98
98
|
|
|
99
99
|
- If you launch Snow from VSCode or other editors, Snow will automatically connect to the IDE using the `Snow CLI` plugin. You'll see a connection message. The plugins are published online - search for `Snow CLI` in the plugin marketplace to install.
|
|
100
100
|
|
|
101
|
-

|
|
101
|
+

|
|
102
102
|
|
|
103
103
|
### File Selection & Commands
|
|
104
104
|
|
|
105
105
|
- Use `@` to select files. In VSCode, you can also hold `Shift` and drag files for the same effect
|
|
106
106
|
- Use `/` to view available commands:
|
|
107
|
-
|
|
107
|
+
- `/init` - Build project documentation `AGENTS.md`
|
|
108
108
|
- `/clear` - Create a new session
|
|
109
109
|
- `/resume` - Restore conversation history
|
|
110
110
|
- `/mcp` - Check MCP connection status and reconnect
|
|
@@ -125,13 +125,13 @@ Once everything is configured, enter the conversation page by clicking `Start`.
|
|
|
125
125
|
|
|
126
126
|
The input area displays context usage percentage, token count, cache hit tokens, and cache creation tokens.
|
|
127
127
|
|
|
128
|
-

|
|
128
|
+

|
|
129
129
|
|
|
130
130
|
## Snow System Files
|
|
131
131
|
|
|
132
132
|
All Snow files are stored in the `.snow` folder in your user directory. Here's what each file/folder contains:
|
|
133
133
|
|
|
134
|
-

|
|
134
|
+

|
|
135
135
|
|
|
136
136
|
- **log** - Runtime logs (not uploaded anywhere, kept locally for debugging). Safe to delete
|
|
137
137
|
- **profiles** - Multiple configuration files for switching between different API/model setups
|