- Assist/Agent 模式新增朗读开关 + NSSpeechSynthesizer 语音合成 - 朗读完成后弹窗延迟5秒带动画关闭(不再写死15/20秒) - 打字模式下不自动关闭弹窗 - 二次输入时取消旧朗读/旧延迟关闭,避免竞争问题 - Agent 进度计时器第二次输入时正确归零 - DMG 打包自动清空 models.json API Key - Node.js 运行时打包进 Agent/bin/,用户无需安装 - Agent system prompt 更新为 VoiceInput 身份 + 语音容错说明 - AGENTS.md 全面更新,补全 Agent 模式文档
21 lines
401 B
JSON
21 lines
401 B
JSON
{
|
|
"name": "easyagent",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "easyagent terminal AI",
|
|
"bin": {
|
|
"eagent": "bin/eagent"
|
|
},
|
|
"type": "commonjs",
|
|
"scripts": {
|
|
"start": "node src/cli/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@inquirer/search": "^4.1.4",
|
|
"@inquirer/select": "^5.1.0",
|
|
"diff": "^5.2.0",
|
|
"fast-glob": "^3.3.2",
|
|
"mime-types": "^2.1.35"
|
|
}
|
|
}
|