@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.
@@ -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":
@@ -2909,7 +2909,7 @@ function isNewerVersion(current, latest) {
2909
2909
  return false;
2910
2910
  }
2911
2911
  async function checkForUpdate() {
2912
- const currentVersion = "0.1.3";
2912
+ const currentVersion = "0.1.4";
2913
2913
  if (!currentVersion) return null;
2914
2914
  try {
2915
2915
  const { loadConfig: loadConfig2, saveConfig: saveConfig2 } = await Promise.resolve().then(() => (init_config(), config_exports));
@@ -2938,7 +2938,7 @@ async function checkForUpdate() {
2938
2938
  }
2939
2939
  }
2940
2940
  function printUpdateNotice(latestVersion) {
2941
- const currentVersion = "0.1.3";
2941
+ const currentVersion = "0.1.4";
2942
2942
  process.stderr.write(
2943
2943
  `
2944
2944
  ${ansi.cyanBright("Update available")} ${ansi.gray(currentVersion + " \u2192")} ${ansi.cyanBold(latestVersion)}
@@ -2992,7 +2992,7 @@ async function cmdLogin(options) {
2992
2992
  process.stderr.write("\n");
2993
2993
  printLogo();
2994
2994
  process.stderr.write("\n");
2995
- const ver = "0.1.3";
2995
+ const ver = "0.1.4";
2996
2996
  process.stderr.write(
2997
2997
  ` ${ansi.bold("MindStudio Agent")} ${ver ? " " + ansi.gray("v" + ver) : ""}
2998
2998
  `
package/llms.txt CHANGED
@@ -16,9 +16,9 @@ There are 150+ methods available. Do NOT try to read or load them all at once. F
16
16
  For specific use cases:
17
17
 
18
18
  - **Third-party integrations** (Slack, Google, HubSpot, etc.): Call `listConnectors()` to browse services → `getConnectorAction(serviceId, actionId)` for input fields → execute via `runFromConnectorRegistry`. Requires an OAuth connection set up in MindStudio first — call `listConnections()` to check available connections.
19
- - **Pre-built agents**: Call `listAgents()` to see what's available → `runAgent({ appId })` to execute one. Agents are full workflows built in MindStudio they can combine multiple steps, have custom logic, and maintain their own state.
19
+ - **Pre-built agents**: Call `listAgents()` to see what's available → `runAgent({ appId })` to execute one. **Important:** Not all agents are configured for API use. Do not try to run an agent just because it appears in the list — only run agents the user specifically asks you to run.
20
20
  - **Model selection**: Call `listModelsSummary()` or `listModelsSummaryByType("llm_chat")` to browse models, then pass the model ID as `modelOverride.model` to methods like `generateText`. Use the summary endpoints (not `listModels`) to keep token usage low.
21
- - **Cost estimation**: Call `estimateStepCost(stepType, stepInput)` before expensive calls to preview pricing.
21
+ - **Cost estimation**: AI-powered steps (text generation, image generation, video, audio, etc.) cost money. Call `estimateStepCost(stepType, stepInput)` before running these and confirm with the user before proceeding — unless they've explicitly given permission to go ahead. Non-AI steps (data lookups, connectors, etc.) are generally free.
22
22
 
23
23
  ## Install
24
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindstudio-ai/agent",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "TypeScript SDK for MindStudio direct step execution",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",