@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 +8 -8
- package/dist/index.js.map +1 -1
- package/dist/postinstall.js +8 -8
- package/package.json +1 -1
package/dist/postinstall.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.
|
|
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
|
});
|
|
@@ -5740,7 +5740,7 @@ function isNewerVersion(current, latest) {
|
|
|
5740
5740
|
return false;
|
|
5741
5741
|
}
|
|
5742
5742
|
async function checkForUpdate() {
|
|
5743
|
-
const currentVersion = "0.1.
|
|
5743
|
+
const currentVersion = "0.1.33";
|
|
5744
5744
|
if (!currentVersion) return null;
|
|
5745
5745
|
try {
|
|
5746
5746
|
const { loadConfig: loadConfig2, saveConfig: saveConfig2 } = await Promise.resolve().then(() => (init_config(), config_exports));
|
|
@@ -5769,7 +5769,7 @@ async function checkForUpdate() {
|
|
|
5769
5769
|
}
|
|
5770
5770
|
}
|
|
5771
5771
|
function printUpdateNotice(latestVersion) {
|
|
5772
|
-
const currentVersion = "0.1.
|
|
5772
|
+
const currentVersion = "0.1.33";
|
|
5773
5773
|
process.stderr.write(
|
|
5774
5774
|
`
|
|
5775
5775
|
${ansi2.cyanBright("Update available")} ${ansi2.gray(currentVersion + " \u2192")} ${ansi2.cyanBold(latestVersion)}
|
|
@@ -5782,7 +5782,7 @@ function isStandaloneBinary() {
|
|
|
5782
5782
|
return !argv1.includes("node_modules");
|
|
5783
5783
|
}
|
|
5784
5784
|
async function cmdUpdate() {
|
|
5785
|
-
const currentVersion = "0.1.
|
|
5785
|
+
const currentVersion = "0.1.33";
|
|
5786
5786
|
process.stderr.write(
|
|
5787
5787
|
` ${ansi2.gray("Current version:")} ${currentVersion}
|
|
5788
5788
|
`
|
|
@@ -5897,7 +5897,7 @@ async function cmdLogin(options) {
|
|
|
5897
5897
|
process.stderr.write("\n");
|
|
5898
5898
|
printLogo();
|
|
5899
5899
|
process.stderr.write("\n");
|
|
5900
|
-
const ver = "0.1.
|
|
5900
|
+
const ver = "0.1.33";
|
|
5901
5901
|
process.stderr.write(
|
|
5902
5902
|
` ${ansi2.bold("MindStudio Agent")} ${ver ? " " + ansi2.gray("v" + ver) : ""}
|
|
5903
5903
|
`
|
|
@@ -6208,7 +6208,7 @@ async function main() {
|
|
|
6208
6208
|
try {
|
|
6209
6209
|
if (command === "version" || command === "-v") {
|
|
6210
6210
|
process.stdout.write(
|
|
6211
|
-
"0.1.
|
|
6211
|
+
"0.1.33\n"
|
|
6212
6212
|
);
|
|
6213
6213
|
return;
|
|
6214
6214
|
}
|