echo-ai-agent 1.0.71 → 1.0.72
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/cli.js
CHANGED
|
@@ -122,7 +122,7 @@ program
|
|
|
122
122
|
console.log(chalk.yellow('⚠️ Echo will no longer start on boot.'));
|
|
123
123
|
} else {
|
|
124
124
|
// Interactive Mode
|
|
125
|
-
const
|
|
125
|
+
const inquirer = require('inquirer');
|
|
126
126
|
|
|
127
127
|
const mainMenu = async () => {
|
|
128
128
|
console.log(chalk.cyan.bold('\n⚙️ Echo Configuration Management\n'));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "echo-ai-agent",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.72",
|
|
4
4
|
"description": "A premium JARVIS-inspired AI assistant for your desktop - voice-controlled, intelligent, and beautiful",
|
|
5
5
|
"main": "main/main.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"dotenv": "^17.3.1",
|
|
26
26
|
"electron": "^40.4.1",
|
|
27
27
|
"electron-log": "^5.4.3",
|
|
28
|
-
"inquirer": "^
|
|
28
|
+
"inquirer": "^13.2.5",
|
|
29
29
|
"node-notifier": "^10.0.1",
|
|
30
30
|
"node-record-lpcm16": "^1.0.1",
|
|
31
31
|
"ora": "^9.3.0",
|
|
32
32
|
"winston": "^3.19.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"eslint": "^
|
|
35
|
+
"eslint": "^10.0.0",
|
|
36
36
|
"jest": "^29.7.0",
|
|
37
37
|
"prettier": "^3.2.5"
|
|
38
38
|
},
|
package/scripts/scheduler-cli.js
CHANGED
package/scripts/setup-wizard.js
CHANGED
package/scripts/uninstall.js
CHANGED
|
@@ -172,7 +172,7 @@ class UpdateManager {
|
|
|
172
172
|
* Auto-update with user confirmation
|
|
173
173
|
*/
|
|
174
174
|
async autoUpdate() {
|
|
175
|
-
const
|
|
175
|
+
const inquirer = require('inquirer');
|
|
176
176
|
const updateInfo = await this.silentUpdateCheck();
|
|
177
177
|
|
|
178
178
|
if (!updateInfo.available) {
|