snow-flow 10.0.1 → 10.0.2
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 +16 -18
- package/package.json +1 -1
- package/src/cli/cmd/tui/component/dialog-servicenow-llm.tsx +1079 -184
- package/src/cli/cmd/tui/component/prompt/index.tsx +1 -1
- package/src/cli/cmd/tui/component/tips.tsx +30 -30
- package/src/provider/provider.ts +188 -39
- package/src/servicenow/servicenow-mcp-unified/tools/deployment/index.ts +4 -0
- package/src/servicenow/servicenow-mcp-unified/tools/deployment/shared/artifact-constants.ts +131 -0
- package/src/servicenow/servicenow-mcp-unified/tools/deployment/snow_artifact_manage.ts +224 -190
- package/src/servicenow/servicenow-mcp-unified/tools/deployment/snow_github_deploy.ts +630 -0
- package/src/servicenow/servicenow-mcp-unified/tools/deployment/snow_github_tree.ts +120 -0
- package/src/servicenow/servicenow-mcp-unified/tools/platform/snow_create_script_include.ts +81 -7
package/README.md
CHANGED
|
@@ -15,8 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
<p align="center">
|
|
17
17
|
<a href="https://www.npmjs.com/package/snow-flow"><img alt="npm" src="https://img.shields.io/npm/v/snow-flow?style=for-the-badge&logo=npm&logoColor=white&color=CB3837" /></a>
|
|
18
|
-
<a href="https://github.com/groeimetai/snow-flow/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/groeimetai/snow-flow?style=for-the-badge&color=blue" /></a
|
|
19
|
-
<a href="https://snow-flow.dev/discord"><img alt="Discord" src="https://img.shields.io/discord/1391832426048651334?style=for-the-badge&logo=discord&logoColor=white&label=discord&color=5865F2" /></a>
|
|
18
|
+
<a href="https://github.com/groeimetai/snow-flow/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/groeimetai/snow-flow?style=for-the-badge&color=blue" /></a>
|
|
20
19
|
</p>
|
|
21
20
|
|
|
22
21
|
---
|
|
@@ -36,8 +35,8 @@ bun i -g snow-flow@latest # Bun
|
|
|
36
35
|
pnpm i -g snow-flow@latest # pnpm
|
|
37
36
|
yarn global add snow-flow@latest # Yarn
|
|
38
37
|
curl -fsSL https://snow-flow.dev/install | bash # Install script
|
|
39
|
-
brew install groeimetai/tap/snow-
|
|
40
|
-
scoop install snow-
|
|
38
|
+
brew install groeimetai/tap/snow-flow # macOS / Linux
|
|
39
|
+
scoop install snow-flow # Windows
|
|
41
40
|
```
|
|
42
41
|
|
|
43
42
|
</details>
|
|
@@ -45,12 +44,12 @@ scoop install snow-code # Windows
|
|
|
45
44
|
## Quick Start
|
|
46
45
|
|
|
47
46
|
```bash
|
|
48
|
-
snow-
|
|
47
|
+
snow-flow
|
|
49
48
|
```
|
|
50
49
|
|
|
51
50
|
That's it. Snow-Flow will prompt you to configure an AI provider on first launch.
|
|
52
51
|
|
|
53
|
-
Or pre-configure in `snow-
|
|
52
|
+
Or pre-configure in `snow-flow.jsonc`:
|
|
54
53
|
|
|
55
54
|
```jsonc
|
|
56
55
|
{
|
|
@@ -183,15 +182,15 @@ Connect to your ServiceNow instance and access **200+ tools**:
|
|
|
183
182
|
## CLI
|
|
184
183
|
|
|
185
184
|
```bash
|
|
186
|
-
snow-
|
|
187
|
-
snow-
|
|
188
|
-
snow-
|
|
189
|
-
snow-
|
|
190
|
-
snow-
|
|
191
|
-
snow-
|
|
192
|
-
snow-
|
|
193
|
-
snow-
|
|
194
|
-
snow-
|
|
185
|
+
snow-flow # Start TUI
|
|
186
|
+
snow-flow serve # Headless API server (port 4096)
|
|
187
|
+
snow-flow web # Server + web interface
|
|
188
|
+
snow-flow attach <url> # Attach to remote server
|
|
189
|
+
snow-flow auth # Configure authentication
|
|
190
|
+
snow-flow models # List available models
|
|
191
|
+
snow-flow stats # Usage statistics
|
|
192
|
+
snow-flow export # Export session data
|
|
193
|
+
snow-flow pr # Pull request automation
|
|
195
194
|
```
|
|
196
195
|
|
|
197
196
|
## Configuration
|
|
@@ -201,9 +200,9 @@ Config is loaded from (in priority order):
|
|
|
201
200
|
| Priority | Source |
|
|
202
201
|
|:---------|:-------|
|
|
203
202
|
| 1 | Remote/well-known organization configs |
|
|
204
|
-
| 2 | Global config (`~/.snow-
|
|
203
|
+
| 2 | Global config (`~/.snow-flow/`) |
|
|
205
204
|
| 3 | `SNOW_FLOW_CONFIG` env variable |
|
|
206
|
-
| 4 | Project config (`snow-
|
|
205
|
+
| 4 | Project config (`snow-flow.jsonc`) |
|
|
207
206
|
| 5 | `SNOW_FLOW_CONFIG_CONTENT` inline |
|
|
208
207
|
|
|
209
208
|
<details>
|
|
@@ -258,7 +257,6 @@ Glob patterns, per-agent rulesets, and env file protection included.
|
|
|
258
257
|
|
|
259
258
|
- [Documentation](https://snow-flow.dev/docs) — Full configuration reference and guides
|
|
260
259
|
- [GitHub](https://github.com/groeimetai/snow-flow) — Source code and issues
|
|
261
|
-
- [Discord](https://snow-flow.dev/discord) — Community and support
|
|
262
260
|
- [Contributing](https://github.com/groeimetai/snow-flow/blob/main/CONTRIBUTING.md) — How to contribute
|
|
263
261
|
|
|
264
262
|
## License
|
package/package.json
CHANGED