@mindstudio-ai/agent 0.1.3 → 0.1.4

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 CHANGED
@@ -2115,9 +2115,9 @@ async function startMcpServer(options) {
2115
2115
  capabilities: { tools: {} },
2116
2116
  serverInfo: {
2117
2117
  name: "mindstudio-agent",
2118
- version: "0.1.3"
2118
+ version: "0.1.4"
2119
2119
  },
2120
- instructions: "Welcome to MindStudio \u2014 a platform with 200+ AI models, 850+ third-party integrations, and pre-built agents.\n\nGetting started:\n1. Call `listAgents` to verify your connection and see available agents.\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. This helps users identify your requests in their logs.\n4. Call `listSteps` to discover all available step methods and helpers.\n\nThen use the tools to generate text, images, video, audio, search the web, work with data sources, run agents, and more."
2120
+ instructions: "Welcome to MindStudio \u2014 a platform with 200+ AI models, 850+ third-party integrations, and pre-built agents.\n\nGetting started:\n1. Call `listAgents` to verify your connection and see available agents.\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. This helps users identify your requests in their logs.\n4. Call `listSteps` to discover all available step methods and helpers.\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 steps (text generation, image generation, video, audio, etc.) cost money. Before running these, call `estimateStepCost` 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."
2121
2121
  });
2122
2122
  break;
2123
2123
  case "notifications/initialized":
@@ -3003,7 +3003,7 @@ function isNewerVersion(current, latest) {
3003
3003
  return false;
3004
3004
  }
3005
3005
  async function checkForUpdate() {
3006
- const currentVersion = "0.1.3";
3006
+ const currentVersion = "0.1.4";
3007
3007
  if (!currentVersion) return null;
3008
3008
  try {
3009
3009
  const { loadConfig: loadConfig2, saveConfig: saveConfig2 } = await Promise.resolve().then(() => (init_config(), config_exports));
@@ -3032,7 +3032,7 @@ async function checkForUpdate() {
3032
3032
  }
3033
3033
  }
3034
3034
  function printUpdateNotice(latestVersion) {
3035
- const currentVersion = "0.1.3";
3035
+ const currentVersion = "0.1.4";
3036
3036
  process.stderr.write(
3037
3037
  `
3038
3038
  ${ansi.cyanBright("Update available")} ${ansi.gray(currentVersion + " \u2192")} ${ansi.cyanBold(latestVersion)}
@@ -3106,7 +3106,7 @@ async function cmdLogin(options) {
3106
3106
  process.stderr.write("\n");
3107
3107
  printLogo();
3108
3108
  process.stderr.write("\n");
3109
- const ver = "0.1.3";
3109
+ const ver = "0.1.4";
3110
3110
  process.stderr.write(
3111
3111
  ` ${ansi.bold("MindStudio Agent")} ${ver ? " " + ansi.gray("v" + ver) : ""}
3112
3112
  `