@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/postinstall.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
|
});
|
|
@@ -5229,7 +5229,7 @@ function isNewerVersion(current, latest) {
|
|
|
5229
5229
|
return false;
|
|
5230
5230
|
}
|
|
5231
5231
|
async function checkForUpdate() {
|
|
5232
|
-
const currentVersion = "0.1.
|
|
5232
|
+
const currentVersion = "0.1.18";
|
|
5233
5233
|
if (!currentVersion) return null;
|
|
5234
5234
|
try {
|
|
5235
5235
|
const { loadConfig: loadConfig2, saveConfig: saveConfig2 } = await Promise.resolve().then(() => (init_config(), config_exports));
|
|
@@ -5258,7 +5258,7 @@ async function checkForUpdate() {
|
|
|
5258
5258
|
}
|
|
5259
5259
|
}
|
|
5260
5260
|
function printUpdateNotice(latestVersion) {
|
|
5261
|
-
const currentVersion = "0.1.
|
|
5261
|
+
const currentVersion = "0.1.18";
|
|
5262
5262
|
process.stderr.write(
|
|
5263
5263
|
`
|
|
5264
5264
|
${ansi2.cyanBright("Update available")} ${ansi2.gray(currentVersion + " \u2192")} ${ansi2.cyanBold(latestVersion)}
|
|
@@ -5313,7 +5313,7 @@ async function cmdLogin(options) {
|
|
|
5313
5313
|
process.stderr.write("\n");
|
|
5314
5314
|
printLogo();
|
|
5315
5315
|
process.stderr.write("\n");
|
|
5316
|
-
const ver = "0.1.
|
|
5316
|
+
const ver = "0.1.18";
|
|
5317
5317
|
process.stderr.write(
|
|
5318
5318
|
` ${ansi2.bold("MindStudio Agent")} ${ver ? " " + ansi2.gray("v" + ver) : ""}
|
|
5319
5319
|
`
|