@mk-co/neox-cli 2.0.7 → 2.0.11
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 +4 -2
- package/dist/cli/main.js +2827 -1107
- package/dist/prompts/gpt-agents-instructions.md +427 -0
- package/dist/sdk/index.js +1812 -0
- package/package.json +15 -16
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="assets/
|
|
2
|
+
<img src="src/ui/renderer/assets/icon.png" alt="Neox Logo" width="120" height="120">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<h1 align="center">Neox</h1>
|
|
@@ -45,13 +45,15 @@
|
|
|
45
45
|
### CLI
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
#
|
|
48
|
+
# 安装(默认:轻量版,无需编译)
|
|
49
49
|
npm install -g @mk-co/neox-cli
|
|
50
50
|
|
|
51
51
|
# 启动
|
|
52
52
|
neox
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
+
**需要 Electron UI?** 参见 [Windows 安装指南](docs/WINDOWS.md)
|
|
56
|
+
|
|
55
57
|
### Desktop
|
|
56
58
|
|
|
57
59
|
从 [Releases](https://github.com/mk-co/Neox/releases) 下载对应平台安装包。
|