@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.
@@ -2,6 +2,6 @@
2
2
  ██ ██ ██ ████ ██ ████ ██
3
3
  ██ ██ ██ ██ ██ ██ ██ ██ ██
4
4
  ██ ██ ██ ██ ██ ██ ██ ██ ██
5
- ██████ ███████ ██ ██ ████ ██ █0.7.1
5
+ ██████ ███████ ██ ██ ████ ██ █0.7.8
6
6
 
7
7
 
package/README.md CHANGED
@@ -185,7 +185,12 @@ Clinn/
185
185
 
186
186
  ## 更新日志 (Changelog)
187
187
 
188
- ### v0.7.1CLI 增强
188
+ ### v0.7.8Windows 兼容 & 权限修复
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "agent": {
3
3
  "name": "Clinn",
4
- "version": "0.7.1",
4
+ "version": "0.7.8",
5
5
  "description": "控制台智能体助手"
6
6
  },
7
7
  "llm": {
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@ghenya/clinn",
3
- "version": "0.7.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.sh"
7
+ "clinn": "bin/clinn.js"
8
8
  },
9
9
  "files": [
10
10
  "Src/",
File without changes