@devness/useai-cli 0.5.27 → 0.5.28
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/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30,7 +30,7 @@ var SYSTEMD_SERVICE_PATH = join(homedir(), ".config", "systemd", "user", "useai-
|
|
|
30
30
|
var WINDOWS_STARTUP_SCRIPT_PATH = join(process.env["APPDATA"] ?? join(homedir(), "AppData", "Roaming"), "Microsoft", "Windows", "Start Menu", "Programs", "Startup", "useai-daemon.vbs");
|
|
31
31
|
|
|
32
32
|
// ../shared/dist/constants/version.js
|
|
33
|
-
var VERSION = "0.5.
|
|
33
|
+
var VERSION = "0.5.28";
|
|
34
34
|
|
|
35
35
|
// ../shared/dist/constants/defaults.js
|
|
36
36
|
var DEFAULT_CONFIG = {
|
|
@@ -5681,11 +5681,11 @@ function showManualHints(installedTools) {
|
|
|
5681
5681
|
for (const { name, hint } of hints) {
|
|
5682
5682
|
console.log(` ${chalk6.bold(name)}: ${hint}`);
|
|
5683
5683
|
}
|
|
5684
|
-
console.log(
|
|
5684
|
+
console.log();
|
|
5685
5685
|
for (const line of USEAI_INSTRUCTIONS_TEXT.split("\n")) {
|
|
5686
|
-
console.log(
|
|
5686
|
+
console.log(` ${line}`);
|
|
5687
5687
|
}
|
|
5688
|
-
console.log(
|
|
5688
|
+
console.log();
|
|
5689
5689
|
}
|
|
5690
5690
|
function showStatus(tools) {
|
|
5691
5691
|
console.log(header("AI Tool MCP Status"));
|