@mindstudio-ai/agent 0.1.17 → 0.1.18
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/cli.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/postinstall.js +4 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -4389,7 +4389,7 @@ async function startMcpServer(options) {
|
|
|
4389
4389
|
capabilities: { tools: {} },
|
|
4390
4390
|
serverInfo: {
|
|
4391
4391
|
name: "mindstudio-agent",
|
|
4392
|
-
version: "0.1.
|
|
4392
|
+
version: "0.1.18"
|
|
4393
4393
|
},
|
|
4394
4394
|
instructions: 'Welcome to MindStudio \u2014 a platform with 200+ AI models, 850+ third-party integrations, and pre-built agents.\n\nGetting started:\n1. Call `ask` with any question about the SDK \u2014 it knows every action, model, and connector and returns working code with real model IDs and config options. Examples: ask("generate an image with FLUX"), ask("what models support vision?"), ask("how do I send a Slack message?").\n2. Call `changeName` to set your display name \u2014 use your name or whatever your user calls you. This is how you\'ll appear in MindStudio request logs.\n3. If you have a profile picture or icon, call `uploadFile` to upload it, then `changeProfilePicture` with the returned URL.\n4. For manual browsing, call `listActions` to discover all available actions.\n\nThen use the tools to generate text, images, video, audio, search the web, work with data sources, run agents, and more.\n\nImportant:\n- AI-powered actions (text generation, image generation, video, audio, etc.) cost money. Before running these, call `estimateActionCost` and confirm with the user before proceeding \u2014 unless they\'ve explicitly told you to go ahead.\n- Not all agents from `listAgents` are configured for API use. Do not try to run an agent just because it appears in the list \u2014 it will likely fail. Only run agents the user specifically asks you to run.'
|
|
4395
4395
|
});
|
|
@@ -5323,7 +5323,7 @@ function isNewerVersion(current, latest) {
|
|
|
5323
5323
|
return false;
|
|
5324
5324
|
}
|
|
5325
5325
|
async function checkForUpdate() {
|
|
5326
|
-
const currentVersion = "0.1.
|
|
5326
|
+
const currentVersion = "0.1.18";
|
|
5327
5327
|
if (!currentVersion) return null;
|
|
5328
5328
|
try {
|
|
5329
5329
|
const { loadConfig: loadConfig2, saveConfig: saveConfig2 } = await Promise.resolve().then(() => (init_config(), config_exports));
|
|
@@ -5352,7 +5352,7 @@ async function checkForUpdate() {
|
|
|
5352
5352
|
}
|
|
5353
5353
|
}
|
|
5354
5354
|
function printUpdateNotice(latestVersion) {
|
|
5355
|
-
const currentVersion = "0.1.
|
|
5355
|
+
const currentVersion = "0.1.18";
|
|
5356
5356
|
process.stderr.write(
|
|
5357
5357
|
`
|
|
5358
5358
|
${ansi2.cyanBright("Update available")} ${ansi2.gray(currentVersion + " \u2192")} ${ansi2.cyanBold(latestVersion)}
|
|
@@ -5427,7 +5427,7 @@ async function cmdLogin(options) {
|
|
|
5427
5427
|
process.stderr.write("\n");
|
|
5428
5428
|
printLogo();
|
|
5429
5429
|
process.stderr.write("\n");
|
|
5430
|
-
const ver = "0.1.
|
|
5430
|
+
const ver = "0.1.18";
|
|
5431
5431
|
process.stderr.write(
|
|
5432
5432
|
` ${ansi2.bold("MindStudio Agent")} ${ver ? " " + ansi2.gray("v" + ver) : ""}
|
|
5433
5433
|
`
|