@mindstudio-ai/agent 0.1.14 → 0.1.15

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.
@@ -3896,7 +3896,7 @@ async function startMcpServer(options) {
3896
3896
  capabilities: { tools: {} },
3897
3897
  serverInfo: {
3898
3898
  name: "mindstudio-agent",
3899
- version: "0.1.14"
3899
+ version: "0.1.15"
3900
3900
  },
3901
3901
  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 `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."
3902
3902
  });
@@ -4716,7 +4716,7 @@ function isNewerVersion(current, latest) {
4716
4716
  return false;
4717
4717
  }
4718
4718
  async function checkForUpdate() {
4719
- const currentVersion = "0.1.14";
4719
+ const currentVersion = "0.1.15";
4720
4720
  if (!currentVersion) return null;
4721
4721
  try {
4722
4722
  const { loadConfig: loadConfig2, saveConfig: saveConfig2 } = await Promise.resolve().then(() => (init_config(), config_exports));
@@ -4745,7 +4745,7 @@ async function checkForUpdate() {
4745
4745
  }
4746
4746
  }
4747
4747
  function printUpdateNotice(latestVersion) {
4748
- const currentVersion = "0.1.14";
4748
+ const currentVersion = "0.1.15";
4749
4749
  process.stderr.write(
4750
4750
  `
4751
4751
  ${ansi.cyanBright("Update available")} ${ansi.gray(currentVersion + " \u2192")} ${ansi.cyanBold(latestVersion)}
@@ -4800,7 +4800,7 @@ async function cmdLogin(options) {
4800
4800
  process.stderr.write("\n");
4801
4801
  printLogo();
4802
4802
  process.stderr.write("\n");
4803
- const ver = "0.1.14";
4803
+ const ver = "0.1.15";
4804
4804
  process.stderr.write(
4805
4805
  ` ${ansi.bold("MindStudio Agent")} ${ver ? " " + ansi.gray("v" + ver) : ""}
4806
4806
  `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindstudio-ai/agent",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "TypeScript SDK for MindStudio direct step execution",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",