@iflow-ai/iflow-cli 0.1.6 → 0.1.7-beta.1
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 +30 -2
- package/bundle/iflow-cli-vscode-ide-companion-0.1.7.vsix +0 -0
- package/bundle/iflow.js +1872 -930
- package/bundle/sandbox-macos-permissive-closed.sb +6 -0
- package/bundle/sandbox-macos-permissive-open.sb +7 -1
- package/bundle/sandbox-macos-permissive-proxied.sb +7 -1
- package/bundle/sandbox-macos-restrictive-closed.sb +7 -1
- package/bundle/sandbox-macos-restrictive-open.sb +7 -1
- package/bundle/sandbox-macos-restrictive-proxied.sb +7 -1
- package/package.json +76 -4
- package/scripts/postinstall.js +210 -0
package/README.md
CHANGED
|
@@ -28,7 +28,23 @@ bash -c "$(curl -fsSL https://cloud.iflow.cn/iflow-cli/install.sh)"
|
|
|
28
28
|
|
|
29
29
|
This command automatically installs all necessary dependencies for your terminal.
|
|
30
30
|
|
|
31
|
-
**Windows Users**:
|
|
31
|
+
**Windows Users**:
|
|
32
|
+
1. Go to https://nodejs.org/en/download to download the latest Node.js installer
|
|
33
|
+
2. Run the installer to install Node.js
|
|
34
|
+
3. Restart your terminal: CMD or PowerShell
|
|
35
|
+
4. Run `npm install -g @iflow-ai/iflow-cli` to install iFlow CLI
|
|
36
|
+
5. Run `iflow` to start iFlow CLI
|
|
37
|
+
|
|
38
|
+
If you are in China Mainland, you can use the following command to install iFlow CLI:
|
|
39
|
+
1. Go to https://cloud.iflow.cn/iflow-cli/nvm-setup.exe to download the latest nvm installer
|
|
40
|
+
2. Run the installer to install nvm
|
|
41
|
+
3. **Restart your terminal: CMD or PowerShell**
|
|
42
|
+
4. Run `nvm node_mirror https://npmmirror.com/mirrors/node/` and `nvm npm_mirror https://npmmirror.com/mirrors/npm/`
|
|
43
|
+
5. Run `nvm install 22` to install Node.js 22
|
|
44
|
+
6. Run `nvm use 22` to use Node.js 22
|
|
45
|
+
7. Run `npm install -g @iflow-ai/iflow-cli` to install iFlow CLI
|
|
46
|
+
8. Run `iflow` to start iFlow CLI
|
|
47
|
+
|
|
32
48
|
|
|
33
49
|
## 🔑 Authentication
|
|
34
50
|
|
|
@@ -151,4 +167,16 @@ Here is a settings demo file:
|
|
|
151
167
|
"modelName": "Qwen3-Coder",
|
|
152
168
|
"searchApiKey": "your iflow key"
|
|
153
169
|
}
|
|
154
|
-
```
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
## GitHub Actions
|
|
173
|
+
|
|
174
|
+
You can also use iFlow CLI in your GitHub Actions workflows with the community-maintained action: [iflow-cli-action](https://github.com/vibe-ideas/iflow-cli-action)
|
|
175
|
+
|
|
176
|
+
## Community Communication
|
|
177
|
+
If you encounter problems in use, you can directly raise Issues on the github page.
|
|
178
|
+
|
|
179
|
+
You can also scan the following Wechat group to join the community group for communication and discussion.
|
|
180
|
+
|
|
181
|
+
### Wechat group
|
|
182
|
+

|
|
Binary file
|