@devness/useai-cli 0.5.30 → 0.5.32
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 +9 -1
- 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.32";
|
|
34
34
|
|
|
35
35
|
// ../shared/dist/constants/defaults.js
|
|
36
36
|
var DEFAULT_CONFIG = {
|
|
@@ -5525,6 +5525,14 @@ var AI_TOOLS = [
|
|
|
5525
5525
|
instructions: { method: "append", path: join4(home, ".claude", "CLAUDE.md") },
|
|
5526
5526
|
supportsUrl: true
|
|
5527
5527
|
}),
|
|
5528
|
+
createTool({
|
|
5529
|
+
id: "claude-desktop",
|
|
5530
|
+
name: "Claude Desktop",
|
|
5531
|
+
configFormat: "standard",
|
|
5532
|
+
configPath: join4(appSupport, "Claude", "claude_desktop_config.json"),
|
|
5533
|
+
detect: () => existsSync8(join4(appSupport, "Claude")) || existsSync8("/Applications/Claude.app"),
|
|
5534
|
+
supportsUrl: true
|
|
5535
|
+
}),
|
|
5528
5536
|
createTool({
|
|
5529
5537
|
id: "cursor",
|
|
5530
5538
|
name: "Cursor",
|