@moly-mcp/lido 1.0.5 → 1.0.6
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/bin.js +5 -5
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -141,10 +141,10 @@ async function runWizard() {
|
|
|
141
141
|
await select({
|
|
142
142
|
message: "AI Provider? (optional \u2014 used for built-in chat + config snippet)",
|
|
143
143
|
options: [
|
|
144
|
-
{ value: "
|
|
144
|
+
{ value: "openrouter", label: "OpenRouter (access any model with one key)" },
|
|
145
145
|
{ value: "anthropic", label: "Anthropic (Claude)" },
|
|
146
146
|
{ value: "google", label: "Google (Gemini)" },
|
|
147
|
-
{ value: "
|
|
147
|
+
{ value: "none", label: "None / Skip" }
|
|
148
148
|
]
|
|
149
149
|
})
|
|
150
150
|
);
|
|
@@ -164,10 +164,10 @@ async function runWizard() {
|
|
|
164
164
|
await select({
|
|
165
165
|
message: "Which AI client are you using? (for config snippet)",
|
|
166
166
|
options: [
|
|
167
|
+
{ value: "Integrated Terminal", label: "Moly Environment" },
|
|
167
168
|
{ value: "claude-desktop", label: "Claude Desktop" },
|
|
168
169
|
{ value: "cursor", label: "Cursor" },
|
|
169
|
-
{ value: "windsurf", label: "Windsurf / Codeium" }
|
|
170
|
-
{ value: "none", label: "Skip" }
|
|
170
|
+
{ value: "windsurf", label: "Windsurf / Codeium" }
|
|
171
171
|
]
|
|
172
172
|
})
|
|
173
173
|
);
|
|
@@ -185,7 +185,7 @@ async function runWizard() {
|
|
|
185
185
|
if (snippet) {
|
|
186
186
|
note(snippet, "Add to your AI client config");
|
|
187
187
|
}
|
|
188
|
-
const terminalMode = ai !== null && clientChoice === "
|
|
188
|
+
const terminalMode = ai !== null && clientChoice === "Integrated Terminal";
|
|
189
189
|
if (terminalMode) {
|
|
190
190
|
outro(`Launching Moly Terminal... ${mode} \xB7 ${network} \xB7 ready`);
|
|
191
191
|
} else {
|
package/package.json
CHANGED