wispy-cli 0.4.0 → 0.5.0
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/lib/wispy-repl.mjs +2 -1
- package/package.json +3 -3
package/lib/wispy-repl.mjs
CHANGED
|
@@ -15,7 +15,6 @@ import os from "node:os";
|
|
|
15
15
|
import path from "node:path";
|
|
16
16
|
import { createInterface } from "node:readline";
|
|
17
17
|
import { appendFile, mkdir, readFile, writeFile } from "node:fs/promises";
|
|
18
|
-
import { fileURLToPath as _fileURLToPath } from "node:url";
|
|
19
18
|
import { MCPManager, ensureDefaultMcpConfig } from "./mcp-client.mjs";
|
|
20
19
|
|
|
21
20
|
// ---------------------------------------------------------------------------
|
|
@@ -2068,6 +2067,7 @@ ${bold("Wispy Commands:")}
|
|
|
2068
2067
|
${cyan("/clear")} Reset conversation
|
|
2069
2068
|
${cyan("/history")} Show conversation length
|
|
2070
2069
|
${cyan("/model")} [name] Show or change model
|
|
2070
|
+
${cyan("/mcp")} [list|connect|disconnect|config|reload] MCP server management
|
|
2071
2071
|
${cyan("/quit")} or ${cyan("/exit")} Exit
|
|
2072
2072
|
`);
|
|
2073
2073
|
return true;
|
|
@@ -2870,6 +2870,7 @@ ${bold("In-session commands:")}
|
|
|
2870
2870
|
/delete <name> Delete a session
|
|
2871
2871
|
/export [md|clipboard] Export conversation
|
|
2872
2872
|
/provider Show current provider info
|
|
2873
|
+
/mcp [list|connect|disconnect|config|reload] MCP server management
|
|
2873
2874
|
/quit Exit
|
|
2874
2875
|
|
|
2875
2876
|
${bold("Providers (auto-detected):")}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wispy-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "🌿 Wispy — AI workspace assistant with multi-agent orchestration",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Minseo & Poropo",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
],
|
|
25
25
|
"type": "module",
|
|
26
26
|
"bin": {
|
|
27
|
-
"wispy": "
|
|
28
|
-
"wispy-tui": "
|
|
27
|
+
"wispy": "bin/wispy.mjs",
|
|
28
|
+
"wispy-tui": "bin/wispy-tui.mjs"
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
31
|
"bin/",
|