@mindstudio-ai/agent 0.1.32 → 0.1.33

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
@@ -4570,7 +4570,7 @@ var init_instructions = __esm({
4570
4570
  - **Never rank vendors** or claim one provider is better than another. Popularity reflects usage patterns, not quality judgments. Present options with their model IDs and let the caller choose. Never make assumptions about the capabilities of models, or suggest that a certain model is "good" at a specific task or better/worse than another at a task.
4571
4571
  - **Prefer popular models as defaults** in code examples unless the caller has a reason to use something specific.
4572
4572
  - **Always recommend latest-generation models**: For Anthropic, this is Claude 4 family, GPT-5 for OpenAI, Gemini 3 for Google, etc. MindStudio supports a ton of different models, including legacy models - but they are there for niche uses or backward compatibility/existing user requirements - they should NOT be used for new projects.
4573
- - Use the names of model input objects to infer capabilities. For example, any image generation model that supports source images in its config supports "remixing" or "image editing". Any video model with a start and end frame option supports creating "looping" videos.
4573
+ - Use the names of model input objects to infer capabilities. For example, any image generation model that supports source images in its config supports "remixing" or "image editing". Any video model with a start and end frame option supports creating "looping" videos. Do not look at model tags or descriptions to determine capabilities.
4574
4574
 
4575
4575
  ## Explicit preferences
4576
4576
  MindStudio has hundreds of models. Many of them are for niche use cases. In general, prefer to recommend the following models unless the user specifies otherwise.
@@ -4578,7 +4578,7 @@ var init_instructions = __esm({
4578
4578
  Text generation:
4579
4579
  - Google Gemini, Anthropic Claude, OpenAI GPT
4580
4580
  Image generation:
4581
- - Seedream 4.5, Google Gemini 3.1 Flash Image (Nano Banana Pro)
4581
+ - Seedream 4.5, Google Gemini 3.1 Flash Image (Nano Banana Pro). Never recommend things like Flux 1 or other models that have been superseded by later generations from the same provider.
4582
4582
  Video generation:
4583
4583
  - Grok Imagine, Kling O3, Google Veo 3.1
4584
4584
  Text to speech:
@@ -4880,7 +4880,7 @@ async function startMcpServer(options) {
4880
4880
  capabilities: { tools: {} },
4881
4881
  serverInfo: {
4882
4882
  name: "mindstudio-agent",
4883
- version: "0.1.32"
4883
+ version: "0.1.33"
4884
4884
  },
4885
4885
  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.'
4886
4886
  });
@@ -5836,7 +5836,7 @@ function isNewerVersion(current, latest) {
5836
5836
  return false;
5837
5837
  }
5838
5838
  async function checkForUpdate() {
5839
- const currentVersion = "0.1.32";
5839
+ const currentVersion = "0.1.33";
5840
5840
  if (!currentVersion) return null;
5841
5841
  try {
5842
5842
  const { loadConfig: loadConfig2, saveConfig: saveConfig2 } = await Promise.resolve().then(() => (init_config(), config_exports));
@@ -5865,7 +5865,7 @@ async function checkForUpdate() {
5865
5865
  }
5866
5866
  }
5867
5867
  function printUpdateNotice(latestVersion) {
5868
- const currentVersion = "0.1.32";
5868
+ const currentVersion = "0.1.33";
5869
5869
  process.stderr.write(
5870
5870
  `
5871
5871
  ${ansi2.cyanBright("Update available")} ${ansi2.gray(currentVersion + " \u2192")} ${ansi2.cyanBold(latestVersion)}
@@ -5878,7 +5878,7 @@ function isStandaloneBinary() {
5878
5878
  return !argv1.includes("node_modules");
5879
5879
  }
5880
5880
  async function cmdUpdate() {
5881
- const currentVersion = "0.1.32";
5881
+ const currentVersion = "0.1.33";
5882
5882
  process.stderr.write(
5883
5883
  ` ${ansi2.gray("Current version:")} ${currentVersion}
5884
5884
  `
@@ -6013,7 +6013,7 @@ async function cmdLogin(options) {
6013
6013
  process.stderr.write("\n");
6014
6014
  printLogo();
6015
6015
  process.stderr.write("\n");
6016
- const ver = "0.1.32";
6016
+ const ver = "0.1.33";
6017
6017
  process.stderr.write(
6018
6018
  ` ${ansi2.bold("MindStudio Agent")} ${ver ? " " + ansi2.gray("v" + ver) : ""}
6019
6019
  `
@@ -6340,7 +6340,7 @@ async function main() {
6340
6340
  try {
6341
6341
  if (command === "version" || command === "-v") {
6342
6342
  process.stdout.write(
6343
- "0.1.32\n"
6343
+ "0.1.33\n"
6344
6344
  );
6345
6345
  return;
6346
6346
  }