yuangs 1.3.32 → 1.3.33
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 +12 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,7 +51,14 @@ yuangs ai
|
|
|
51
51
|
- 直接输入问题进行对话
|
|
52
52
|
- 输入 `/clear` 清空对话历史
|
|
53
53
|
- 输入 `/history` 查看对话历史
|
|
54
|
-
|
|
54
|
+
### 命令生成模式(v1.3.32)
|
|
55
|
+
|
|
56
|
+
使用 `-e` 参数让 AI 为你生成 Linux 命令:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
yuangs ai -e "查看当前目录下大于100M的文件"
|
|
60
|
+
# 输出: > find . -type f -size +100M
|
|
61
|
+
```
|
|
55
62
|
|
|
56
63
|
## 应用列表
|
|
57
64
|
|
|
@@ -119,6 +126,10 @@ yuangs mail # 打开邮箱
|
|
|
119
126
|
|
|
120
127
|
## 近期主要更新日志
|
|
121
128
|
|
|
129
|
+
### v1.3.32 (2026-01-16)
|
|
130
|
+
- **新增** AI 命令生成模式:使用 `yuangs ai -e <描述>` 快速生成 Linux 命令。
|
|
131
|
+
- **优化** AI 接口升级:全面迁移至 OpenAI 兼容接口,提升稳定性。
|
|
132
|
+
|
|
122
133
|
### v1.3.22 (2025-11-30)
|
|
123
134
|
- **新增** AI 命令支持 `-p` `-f` `-l` 简写,快速选择gemini默认模型
|
|
124
135
|
|