@ghenya/clinn 0.7.6 → 0.7.8
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/Logos/StartLogo.txt +1 -1
- package/README.md +10 -3
- package/config.json +1 -1
- package/package.json +2 -2
- /package/bin/{clinn.sh → clinn.js} +0 -0
package/Logos/StartLogo.txt
CHANGED
package/README.md
CHANGED
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
Clinn 是一个运行在终端里的 AI Agent,直接和你的文件系统、Shell、网络交互。不需要 IDE、不需要插件——打开终端,说人话,它帮你干活。
|
|
6
6
|
|
|
7
|
+
🌐 官方网站:[yxpil.com](https://yxpil.com)
|
|
8
|
+
|
|
7
9
|
```
|
|
8
|
-
██████
|
|
10
|
+
██████ ██ ██ ███ ██ ███ ██
|
|
9
11
|
██ ██ ██ ████ ██ ████ ██
|
|
10
12
|
██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
11
13
|
██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
12
|
-
██████
|
|
14
|
+
██████ ███████ ██ ██ ████ ██ █ 0.7
|
|
13
15
|
```
|
|
14
16
|
|
|
15
17
|
---
|
|
@@ -183,7 +185,12 @@ Clinn/
|
|
|
183
185
|
|
|
184
186
|
## 更新日志 (Changelog)
|
|
185
187
|
|
|
186
|
-
### v0.7.
|
|
188
|
+
### v0.7.8 — Windows 兼容 & 权限修复
|
|
189
|
+
|
|
190
|
+
- **bin 入口改为 `.js`**:`#!/usr/bin/env node` + `.js` 后缀,npm 自动生成跨平台 shim,解决 Windows 上 `不是内部或外部命令` 问题
|
|
191
|
+
- **修复双重权限弹窗**:危险工具只弹一次 Y/N 确认
|
|
192
|
+
|
|
193
|
+
### v0.7.1 — CLI 增强 & npm 发布
|
|
187
194
|
|
|
188
195
|
- **`/api` 命令**:直接在终端配置 API Key、API 地址、模型名称,无需编辑文件
|
|
189
196
|
- `/api` — 查看当前 API 设置(Key 脱敏显示)
|
package/config.json
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ghenya/clinn",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.8",
|
|
4
4
|
"description": "终端原生 AI 编程助手 — DeepSeek 驱动,50+ 工具,对话记忆,虚拟浏览器",
|
|
5
5
|
"main": "Src/index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"clinn": "bin/clinn.
|
|
7
|
+
"clinn": "bin/clinn.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"Src/",
|
|
File without changes
|