@ghenya/clinn 0.7.7 → 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 +6 -1
- 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
|
@@ -185,7 +185,12 @@ Clinn/
|
|
|
185
185
|
|
|
186
186
|
## 更新日志 (Changelog)
|
|
187
187
|
|
|
188
|
-
### 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 发布
|
|
189
194
|
|
|
190
195
|
- **`/api` 命令**:直接在终端配置 API Key、API 地址、模型名称,无需编辑文件
|
|
191
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
|