@mastra/editor 0.13.8 → 0.13.9

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/ee/index.js CHANGED
@@ -1,137 +1,161 @@
1
- // src/ee/agent-builder.ts
2
- import { isBuilderModelPolicyActive, isModelAllowed, resolveAgentFeatures } from "@mastra/core/agent-builder/ee";
3
- var EditorAgentBuilder = class {
4
- constructor(options) {
5
- this.modelPolicyWarnings = [];
6
- /** Non-fatal warnings for browser config issues (surfaced alongside model policy warnings). */
7
- this.browserConfigWarnings = [];
8
- const source = options ?? {};
9
- this.options = {
10
- ...source,
11
- features: source.features ? {
12
- ...source.features,
13
- agent: source.features.agent ? { ...source.features.agent } : void 0
14
- } : void 0
15
- };
16
- this.validateModelPolicy();
17
- this.validateBrowserConfig();
18
- this.resolvedFeatures = {
19
- agent: resolveAgentFeatures(this.options.features?.agent, {
20
- hasBrowserConfig: this.hasValidBrowserConfig()
21
- })
22
- };
23
- }
24
- get enabled() {
25
- return this.options.enabled !== false;
26
- }
27
- getFeatures() {
28
- return this.resolvedFeatures;
29
- }
30
- getConfiguration() {
31
- return this.options.configuration;
32
- }
33
- getRegistries() {
34
- return this.options.registries;
35
- }
36
- getModelPolicyWarnings() {
37
- return [...this.modelPolicyWarnings, ...this.browserConfigWarnings];
38
- }
39
- /**
40
- * True when `configuration.agent.browser` declares a provider. The
41
- * EditorAgentBuilder does NOT verify the provider is registered with the
42
- * Mastra instance — that cross-validation lives in `MastraEditor.resolveBuilder`
43
- * because only the editor knows the registered browser providers.
44
- */
45
- hasValidBrowserConfig() {
46
- const browserConfig = this.options.configuration?.agent?.browser;
47
- return Boolean(browserConfig?.config?.provider);
48
- }
49
- /**
50
- * Browser config validation only runs for **explicit** `browser: true`.
51
- * With default-on semantics, an omitted `browser` no longer means "admin
52
- * opted in" — it means "admin didn't opt out". The default-on path is
53
- * resolved later by `resolveAgentFeatures`, which already gates `browser`
54
- * on `hasValidBrowserConfig`. We don't want to spam every default-config
55
- * deployment with warnings.
56
- */
57
- validateBrowserConfig() {
58
- const explicitBrowser = this.options.features?.agent?.browser;
59
- if (explicitBrowser !== true) return;
60
- const browserConfig = this.options.configuration?.agent?.browser;
61
- if (!browserConfig) {
62
- const warning = 'Agent Builder browser feature is enabled but no default browser config was provided. Set `editor.builder.configuration.agent.browser` to a valid browser config (e.g. `{ type: "inline", config: { provider: "stagehand" } }`). The browser toggle will be hidden until a default is configured.';
63
- this.browserConfigWarnings.push(warning);
64
- console.warn(`[mastra:editor:builder] ${warning}`);
65
- if (this.options.features?.agent) {
66
- this.options.features.agent.browser = false;
67
- }
68
- return;
69
- }
70
- if (!browserConfig.config?.provider) {
71
- const warning = 'Agent Builder browser config is missing a `provider` field. Set `editor.builder.configuration.agent.browser.config.provider` (e.g. `"stagehand"`). The browser toggle will be hidden until a provider is configured.';
72
- this.browserConfigWarnings.push(warning);
73
- console.warn(`[mastra:editor:builder] ${warning}`);
74
- if (this.options.features?.agent) {
75
- this.options.features.agent.browser = false;
76
- }
77
- }
78
- }
79
- validateModelPolicy() {
80
- const enabled = this.options.enabled !== false;
81
- const explicitModel = this.options.features?.agent?.model;
82
- const pickerVisible = explicitModel !== false;
83
- const models = this.options.configuration?.agent?.models;
84
- const allowed = models?.allowed;
85
- const defaultModel = models?.default;
86
- const active = isBuilderModelPolicyActive({
87
- enabled,
88
- pickerVisible,
89
- allowed,
90
- default: defaultModel
91
- });
92
- if (!active) return;
93
- if (explicitModel === false && defaultModel === void 0) {
94
- throw new Error(
95
- "Agent Builder model policy is active in locked mode but no default was set. Set `editor.builder.configuration.agent.models.default`, or remove `editor.builder.features.agent.model = false` to allow end-users to pick a model."
96
- );
97
- }
98
- if (defaultModel !== void 0 && allowed !== void 0 && allowed.length > 0) {
99
- if (!isModelAllowed(allowed, defaultModel)) {
100
- throw new Error(
101
- "Agent Builder default model is not in the allowlist. Either add it to `editor.builder.configuration.agent.models.allowed` or change `editor.builder.configuration.agent.models.default`."
102
- );
103
- }
104
- }
105
- }
106
- };
107
-
108
- // src/ee/agent-builder-agent.ts
109
- import { Agent } from "@mastra/core/agent";
110
1
  import { Memory } from "@mastra/memory";
2
+ import { Agent } from "@mastra/core/agent";
3
+ import { LocalFilesystem, Workspace } from "@mastra/core/workspace";
111
4
  import { PrefillErrorHandler, ProviderHistoryCompat, StreamErrorRetryProcessor } from "@mastra/core/processors";
112
- import { Workspace, LocalFilesystem } from "@mastra/core/workspace";
5
+ import { isBuilderModelPolicyActive, isModelAllowed, resolveAgentFeatures } from "@mastra/core/agent-builder/ee";
113
6
  import path from "path";
114
7
  import { fileURLToPath } from "url";
115
- var __filename = fileURLToPath(import.meta.url);
116
- var __dirname = path.dirname(__filename);
117
- var workspacePath = path.join(__dirname, "workspace");
118
- var workspace = new Workspace({
119
- filesystem: new LocalFilesystem({
120
- basePath: workspacePath
121
- }),
122
- skills: ["skills"]
8
+ //#region src/ee/agent-builder.ts
9
+ /**
10
+ * Concrete implementation of the Agent Builder EE feature.
11
+ * Instantiated by MastraEditor.resolveBuilder() when builder config is enabled.
12
+ *
13
+ * The constructor performs fail-fast validation of the admin's model policy
14
+ * (Phase 4) so misconfiguration is caught at boot, not at first request.
15
+ *
16
+ * Feature toggles use **default-on semantics**: omitted keys resolve to
17
+ * `true`. Admins opt out by setting a key to `false`. The resolved features
18
+ * are computed once in the constructor (after validation) and returned
19
+ * verbatim by {@link getFeatures} so all downstream consumers (server route,
20
+ * UI hooks, policy derivation) see the same effective values.
21
+ */
22
+ var EditorAgentBuilder = class {
23
+ constructor(options) {
24
+ this.modelPolicyWarnings = [];
25
+ this.browserConfigWarnings = [];
26
+ const source = options ?? {};
27
+ this.options = {
28
+ ...source,
29
+ features: source.features ? {
30
+ ...source.features,
31
+ agent: source.features.agent ? { ...source.features.agent } : void 0
32
+ } : void 0
33
+ };
34
+ this.validateModelPolicy();
35
+ this.validateBrowserConfig();
36
+ this.resolvedFeatures = { agent: resolveAgentFeatures(this.options.features?.agent, { hasBrowserConfig: this.hasValidBrowserConfig() }) };
37
+ }
38
+ get enabled() {
39
+ return this.options.enabled !== false;
40
+ }
41
+ getFeatures() {
42
+ return this.resolvedFeatures;
43
+ }
44
+ getConfiguration() {
45
+ return this.options.configuration;
46
+ }
47
+ getRegistries() {
48
+ return this.options.registries;
49
+ }
50
+ getModelPolicyWarnings() {
51
+ return [...this.modelPolicyWarnings, ...this.browserConfigWarnings];
52
+ }
53
+ /**
54
+ * True when `configuration.agent.browser` declares a provider. The
55
+ * EditorAgentBuilder does NOT verify the provider is registered with the
56
+ * Mastra instance — that cross-validation lives in `MastraEditor.resolveBuilder`
57
+ * because only the editor knows the registered browser providers.
58
+ */
59
+ hasValidBrowserConfig() {
60
+ const browserConfig = this.options.configuration?.agent?.browser;
61
+ return Boolean(browserConfig?.config?.provider);
62
+ }
63
+ /**
64
+ * Browser config validation only runs for **explicit** `browser: true`.
65
+ * With default-on semantics, an omitted `browser` no longer means "admin
66
+ * opted in" — it means "admin didn't opt out". The default-on path is
67
+ * resolved later by `resolveAgentFeatures`, which already gates `browser`
68
+ * on `hasValidBrowserConfig`. We don't want to spam every default-config
69
+ * deployment with warnings.
70
+ */
71
+ validateBrowserConfig() {
72
+ if (this.options.features?.agent?.browser !== true) return;
73
+ const browserConfig = this.options.configuration?.agent?.browser;
74
+ if (!browserConfig) {
75
+ const warning = "Agent Builder browser feature is enabled but no default browser config was provided. Set `editor.builder.configuration.agent.browser` to a valid browser config (e.g. `{ type: \"inline\", config: { provider: \"stagehand\" } }`). The browser toggle will be hidden until a default is configured.";
76
+ this.browserConfigWarnings.push(warning);
77
+ console.warn(`[mastra:editor:builder] ${warning}`);
78
+ if (this.options.features?.agent) this.options.features.agent.browser = false;
79
+ return;
80
+ }
81
+ if (!browserConfig.config?.provider) {
82
+ const warning = "Agent Builder browser config is missing a `provider` field. Set `editor.builder.configuration.agent.browser.config.provider` (e.g. `\"stagehand\"`). The browser toggle will be hidden until a provider is configured.";
83
+ this.browserConfigWarnings.push(warning);
84
+ console.warn(`[mastra:editor:builder] ${warning}`);
85
+ if (this.options.features?.agent) this.options.features.agent.browser = false;
86
+ }
87
+ }
88
+ validateModelPolicy() {
89
+ const enabled = this.options.enabled !== false;
90
+ const explicitModel = this.options.features?.agent?.model;
91
+ const pickerVisible = explicitModel !== false;
92
+ const models = this.options.configuration?.agent?.models;
93
+ const allowed = models?.allowed;
94
+ const defaultModel = models?.default;
95
+ if (!isBuilderModelPolicyActive({
96
+ enabled,
97
+ pickerVisible,
98
+ allowed,
99
+ default: defaultModel
100
+ })) return;
101
+ if (explicitModel === false && defaultModel === void 0) throw new Error("Agent Builder model policy is active in locked mode but no default was set. Set `editor.builder.configuration.agent.models.default`, or remove `editor.builder.features.agent.model = false` to allow end-users to pick a model.");
102
+ if (defaultModel !== void 0 && allowed !== void 0 && allowed.length > 0) {
103
+ if (!isModelAllowed(allowed, defaultModel)) throw new Error("Agent Builder default model is not in the allowlist. Either add it to `editor.builder.configuration.agent.models.allowed` or change `editor.builder.configuration.agent.models.default`.");
104
+ }
105
+ }
106
+ };
107
+ //#endregion
108
+ //#region src/ee/agent-builder-agent.ts
109
+ const __filename = fileURLToPath(import.meta.url);
110
+ const __dirname = path.dirname(__filename);
111
+ const workspace = new Workspace({
112
+ filesystem: new LocalFilesystem({ basePath: path.join(__dirname, "workspace") }),
113
+ skills: ["skills"]
123
114
  });
124
- var DEFAULT_BUILDER_ERROR_PROCESSORS = [
125
- new StreamErrorRetryProcessor(),
126
- new PrefillErrorHandler(),
127
- new ProviderHistoryCompat()
115
+ /**
116
+ * Agent Builder Agent
117
+ *
118
+ * Audience: non-technical users (Product, founders, operators, business stakeholders).
119
+ * Goal: turn a plain-language description of a desired outcome into a fully
120
+ * configured, production-quality agent — name, description, model, capabilities,
121
+ * and system prompt — without asking the user follow-up questions.
122
+ *
123
+ * Capability tools the playground UI injects as client tools:
124
+ * - set-agent-name, set-agent-description, set-agent-instructions, set-agent-workspace-id (always on)
125
+ * - set-agent-tools (gated by features.tools)
126
+ * - set-agent-skills (gated by features.skills + skills available)
127
+ * - set-agent-model (gated by features.model + models available)
128
+ * - set-agent-browser-enabled (gated by features.browser)
129
+ * - createSkillTool (gated by features.skills) — only when a needed capability does not exist
130
+ */
131
+ /**
132
+ * Default error processors wired into every builder agent. These each fix a
133
+ * class of provider-side correctness bug that builder workloads tend to hit:
134
+ *
135
+ * - `StreamErrorRetryProcessor` — retries OpenAI's transient stream errors
136
+ * (`server_error`, `rate_limit`, `internal_error`, `timeout`, `overloaded`,
137
+ * etc.) that surface on long, tool-heavy turns.
138
+ * - `PrefillErrorHandler` — recovers from Anthropic's
139
+ * `does not support assistant message prefill` 400 by appending a
140
+ * `system-reminder` continue message and retrying.
141
+ * - `ProviderHistoryCompat` — applies provider-history-shape fixes
142
+ * (anthropic tool-id format, cerebras reasoning-content strip, anthropic
143
+ * foreign-reasoning strip) so model swaps don't break history.
144
+ *
145
+ * Exported so callers can compose a custom processor list that keeps the
146
+ * subset they want (e.g. `[...DEFAULT_BUILDER_ERROR_PROCESSORS.filter(p => p.id !== 'stream-error-retry-processor'), myCustom]`).
147
+ */
148
+ const DEFAULT_BUILDER_ERROR_PROCESSORS = [
149
+ new StreamErrorRetryProcessor(),
150
+ new PrefillErrorHandler(),
151
+ new ProviderHistoryCompat()
128
152
  ];
129
153
  function createBuilderAgent(args) {
130
- const memory = new Memory();
131
- const callerErrorProcessors = args?.errorProcessors;
132
- const errorProcessors = Array.isArray(callerErrorProcessors) ? [...DEFAULT_BUILDER_ERROR_PROCESSORS, ...callerErrorProcessors] : callerErrorProcessors ?? DEFAULT_BUILDER_ERROR_PROCESSORS;
133
- const config = {
134
- instructions: `You are the Agent Builder.
154
+ const memory = new Memory();
155
+ const callerErrorProcessors = args?.errorProcessors;
156
+ const errorProcessors = Array.isArray(callerErrorProcessors) ? [...DEFAULT_BUILDER_ERROR_PROCESSORS, ...callerErrorProcessors] : callerErrorProcessors ?? DEFAULT_BUILDER_ERROR_PROCESSORS;
157
+ return new Agent({
158
+ instructions: `You are the Agent Builder.
135
159
 
136
160
  Your job: turn a non-technical user's plain-language request into a fully configured, production-quality agent in a single turn.
137
161
 
@@ -140,26 +164,26 @@ Your job: turn a non-technical user's plain-language request into a fully config
140
164
  - Never ask the user follow-up questions. Make the most reasonable assumption and move forward.
141
165
  - Never expose internal names, tool ids, file paths, schemas, code, or jargon to the user.
142
166
  - Speak only in user-facing capability terms.
143
- - Always finish the build in the same turn as the request \u2014 configure the agent end-to-end and deliver a short summary.
167
+ - Always finish the build in the same turn as the request configure the agent end-to-end and deliver a short summary.
144
168
  - Always define the new agent's name, description, model, and system prompt yourself. Do not ask the user for any of these.
145
169
 
146
170
  Examples of communication style:
147
171
  - Bad: "Added weatherTool to agent-yzx capabilities."
148
172
  - Good: "Your new agent can now check the weather for you."
149
173
  - Bad: "Calling set-agent-tools with [weatherTool]."
150
- - Good: "Checking what capabilities to bring to your agent\u2026"
174
+ - Good: "Checking what capabilities to bring to your agent"
151
175
  - Bad: "Agent created with weatherTool and recipeWorkflow attached."
152
176
  - Good: "Your agent can check the weather and suggest recipes that match the day's conditions."
153
177
 
154
178
  # Form snapshot
155
179
 
156
- A "Current agent configuration (authoritative)" block is injected into your context every turn. It lists every form field with its current value AND a directive telling you exactly which setter to call (or skip) for that field. Treat the snapshot as the single source of truth for what is and isn't already set \u2014 do not try to infer state from anywhere else, and do not re-call setters for fields whose directive says "already set".
180
+ A "Current agent configuration (authoritative)" block is injected into your context every turn. It lists every form field with its current value AND a directive telling you exactly which setter to call (or skip) for that field. Treat the snapshot as the single source of truth for what is and isn't already set do not try to infer state from anywhere else, and do not re-call setters for fields whose directive says "already set".
157
181
 
158
182
  # Authoring loop
159
183
 
160
184
  Follow these five steps in order, every time:
161
185
 
162
- ## Step A \u2014 Understand the real outcome
186
+ ## Step A Understand the real outcome
163
187
 
164
188
  Analyze what the user actually wants to achieve. Focus on the final result, not just the literal wording of the request.
165
189
 
@@ -170,7 +194,7 @@ Ask yourself:
170
194
  - What kind of output should the agent produce?
171
195
  - What recurring tasks, reasoning, or actions does the agent need to perform?
172
196
 
173
- ## Step B \u2014 Define the agent's identity
197
+ ## Step B Define the agent's identity
174
198
 
175
199
  Decide on:
176
200
  - Agent name: short, memorable, anchored to the outcome. Never "Agent X" or generic labels.
@@ -178,7 +202,7 @@ Decide on:
178
202
 
179
203
  The snapshot will tell you whether to call \`set-agent-name\` and \`set-agent-description\` or skip them.
180
204
 
181
- ## Step C \u2014 Decide capabilities
205
+ ## Step C Decide capabilities
182
206
 
183
207
  The form snapshot lists what's currently attached. Use it together with the available tools, agents, workflows, stored skills, and models listed in the corresponding tool descriptions to decide:
184
208
 
@@ -188,20 +212,20 @@ The form snapshot lists what's currently attached. Use it together with the avai
188
212
  - Only call \`createSkillTool\` when (a) no existing stored skill matches reusable operating instructions the produced agent needs, AND (b) that operating instruction is genuinely needed for the outcome. Do not use stored skills as a substitute for missing integrations or tools.
189
213
  - If a specific external connection is required (e.g. a sheet tool for a spreadsheet-driven outcome) and none is available, the new agent's system prompt must instruct it to refuse cleanly and explain what the user needs to connect.
190
214
 
191
- ## Step D \u2014 Synthesize concise operating instructions
215
+ ## Step D Synthesize concise operating instructions
192
216
 
193
217
  Before calling \`set-agent-instructions\`, privately write a concrete run contract for the produced agent. The system prompt must instantiate each item, but keep each item brief:
194
218
 
195
- 1. **Trigger / input** \u2014 what user request, schedule, event, file, row, ticket, or message starts a run.
196
- 2. **Owned outcome** \u2014 the exact result the produced agent is responsible for finishing.
197
- 3. **Available capabilities** \u2014 only capabilities actually attached or already available from the form snapshot, described in user-facing outcome terms.
198
- 4. **Missing-capability fallback** \u2014 what the produced agent does when a required integration, workspace, credential, or source is absent.
199
- 5. **Done criteria** \u2014 verifiable conditions that prove the job is finished, including tool confirmation or an explicit "not run" reason when verification is impossible.
200
- 6. **Final response format** \u2014 the receipt, summary, draft, diff summary, report, or confirmation the user receives.
219
+ 1. **Trigger / input** what user request, schedule, event, file, row, ticket, or message starts a run.
220
+ 2. **Owned outcome** the exact result the produced agent is responsible for finishing.
221
+ 3. **Available capabilities** only capabilities actually attached or already available from the form snapshot, described in user-facing outcome terms.
222
+ 4. **Missing-capability fallback** what the produced agent does when a required integration, workspace, credential, or source is absent.
223
+ 5. **Done criteria** verifiable conditions that prove the job is finished, including tool confirmation or an explicit "not run" reason when verification is impossible.
224
+ 6. **Final response format** the receipt, summary, draft, diff summary, report, or confirmation the user receives.
201
225
 
202
- Write the final system prompt as 2\u20134 short paragraphs or compact bullet groups. Target 1,200\u20132,000 characters and stay under 2,500 characters. Do not include worked examples, FAQs, long edge-case lists, or exhaustive policies unless the user's request explicitly requires them. Prefer one clear default over several branches.
226
+ Write the final system prompt as 2–4 short paragraphs or compact bullet groups. Target 1,200–2,000 characters and stay under 2,500 characters. Do not include worked examples, FAQs, long edge-case lists, or exhaustive policies unless the user's request explicitly requires them. Prefer one clear default over several branches.
203
227
 
204
- ## Step E \u2014 Write the agent
228
+ ## Step E Write the agent
205
229
 
206
230
  Read the per-field directives in the form snapshot. Call only the setters the snapshot tells you to call, each at most once, with the final value. Skip every field marked "already set" or "no setter". Skip any field that isn't listed at all (its feature is disabled).
207
231
 
@@ -215,7 +239,7 @@ Before calling \`set-agent-instructions\`, self-audit the draft. It must pass ev
215
239
  - Final response expectations are clear.
216
240
  - The prompt is specific to the agent's outcome and under 2,500 characters.
217
241
 
218
- ## Step F \u2014 Confirm the agent configuration to the user
242
+ ## Step F Confirm the agent configuration to the user
219
243
 
220
244
  End your turn with one short, friendly paragraph confirming that the agent has been configured and is ready to use.
221
245
 
@@ -248,7 +272,7 @@ The system prompt written into \`set-agent-instructions\` MUST be short, concret
248
272
  8. **Communication style.** Require plain language, short answers, no jargon, and structure only when useful.
249
273
  9. **Refusal rules.** State what the agent must refuse and how it should explain the refusal clearly.
250
274
 
251
- Keep this to 2\u20134 focused paragraphs or compact bullet groups. Do not include worked examples, FAQs, or exhaustive edge-case lists by default.
275
+ Keep this to 2–4 focused paragraphs or compact bullet groups. Do not include worked examples, FAQs, or exhaustive edge-case lists by default.
252
276
 
253
277
  # Hard rules
254
278
 
@@ -258,19 +282,17 @@ Keep this to 2\u20134 focused paragraphs or compact bullet groups. Do not includ
258
282
  - Never attach a capability "just in case." Every tool, agent, workflow, or skill must directly support the requested outcome.
259
283
  - The final message to the user must be concise, friendly, and focused on what the configured agent can now do.
260
284
  - The final message should make clear that the agent starts with initial parameters and can be adjusted later.`,
261
- model: "openai/gpt-5.5",
262
- memory,
263
- workspace,
264
- ...args || {},
265
- errorProcessors,
266
- id: "builder-agent",
267
- name: "Agent Builder Agent",
268
- description: "An agent that can build agents"
269
- };
270
- return new Agent(config);
285
+ model: "openai/gpt-5.5",
286
+ memory,
287
+ workspace,
288
+ ...args || {},
289
+ errorProcessors,
290
+ id: "builder-agent",
291
+ name: "Agent Builder Agent",
292
+ description: "An agent that can build agents"
293
+ });
271
294
  }
272
- export {
273
- EditorAgentBuilder,
274
- createBuilderAgent
275
- };
295
+ //#endregion
296
+ export { EditorAgentBuilder, createBuilderAgent };
297
+
276
298
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/ee/agent-builder.ts","../../src/ee/agent-builder-agent.ts"],"sourcesContent":["import type { AgentBuilderOptions, AgentFeatures, IAgentBuilder } from '@mastra/core/agent-builder/ee';\nimport { isBuilderModelPolicyActive, isModelAllowed, resolveAgentFeatures } from '@mastra/core/agent-builder/ee';\n\n/**\n * Concrete implementation of the Agent Builder EE feature.\n * Instantiated by MastraEditor.resolveBuilder() when builder config is enabled.\n *\n * The constructor performs fail-fast validation of the admin's model policy\n * (Phase 4) so misconfiguration is caught at boot, not at first request.\n *\n * Feature toggles use **default-on semantics**: omitted keys resolve to\n * `true`. Admins opt out by setting a key to `false`. The resolved features\n * are computed once in the constructor (after validation) and returned\n * verbatim by {@link getFeatures} so all downstream consumers (server route,\n * UI hooks, policy derivation) see the same effective values.\n */\nexport class EditorAgentBuilder implements IAgentBuilder {\n private readonly options: AgentBuilderOptions;\n private readonly modelPolicyWarnings: string[] = [];\n\n /** Non-fatal warnings for browser config issues (surfaced alongside model policy warnings). */\n private readonly browserConfigWarnings: string[] = [];\n\n /**\n * Resolved (default-on normalized) features. Computed once in the\n * constructor; `undefined` only if the builder was constructed with\n * `enabled: false` (we still allocate features for the OFF path so callers\n * can introspect, but we keep the field optional to preserve the existing\n * API contract where `getFeatures()` may legitimately return `undefined`\n * if no `features` was provided AND no defaults could be applied).\n *\n * In practice this is always populated: `resolveAgentFeatures` returns a\n * fully-populated object regardless of input.\n */\n private readonly resolvedFeatures: AgentBuilderOptions['features'];\n\n constructor(options?: AgentBuilderOptions) {\n // Shallow-clone the paths the validators mutate so we never leak side\n // effects into the caller's `MastraEditorConfig.builder` object.\n // `validateBrowserConfig` writes to `features.agent.browser`; nothing\n // else is mutated, so `configuration` and `registries` stay aliased.\n const source = options ?? {};\n this.options = {\n ...source,\n features: source.features\n ? {\n ...source.features,\n agent: source.features.agent ? { ...source.features.agent } : undefined,\n }\n : undefined,\n };\n this.validateModelPolicy();\n this.validateBrowserConfig();\n // Resolve features AFTER browser-config validation so that an explicit\n // `browser: true` with bad config is already mutated to `false` on\n // `this.options.features.agent.browser`. The resolver then sees the\n // downgraded value and returns it as-is.\n this.resolvedFeatures = {\n agent: resolveAgentFeatures(this.options.features?.agent, {\n hasBrowserConfig: this.hasValidBrowserConfig(),\n }),\n };\n }\n\n get enabled(): boolean {\n return this.options.enabled !== false;\n }\n\n getFeatures(): AgentBuilderOptions['features'] {\n return this.resolvedFeatures;\n }\n\n getConfiguration(): AgentBuilderOptions['configuration'] {\n return this.options.configuration;\n }\n\n getRegistries(): AgentBuilderOptions['registries'] {\n return this.options.registries;\n }\n\n getModelPolicyWarnings(): string[] {\n return [...this.modelPolicyWarnings, ...this.browserConfigWarnings];\n }\n\n /**\n * True when `configuration.agent.browser` declares a provider. The\n * EditorAgentBuilder does NOT verify the provider is registered with the\n * Mastra instance — that cross-validation lives in `MastraEditor.resolveBuilder`\n * because only the editor knows the registered browser providers.\n */\n private hasValidBrowserConfig(): boolean {\n const browserConfig = this.options.configuration?.agent?.browser;\n return Boolean(browserConfig?.config?.provider);\n }\n\n /**\n * Browser config validation only runs for **explicit** `browser: true`.\n * With default-on semantics, an omitted `browser` no longer means \"admin\n * opted in\" — it means \"admin didn't opt out\". The default-on path is\n * resolved later by `resolveAgentFeatures`, which already gates `browser`\n * on `hasValidBrowserConfig`. We don't want to spam every default-config\n * deployment with warnings.\n */\n private validateBrowserConfig(): void {\n const explicitBrowser = this.options.features?.agent?.browser;\n if (explicitBrowser !== true) return;\n\n const browserConfig = this.options.configuration?.agent?.browser;\n if (!browserConfig) {\n const warning =\n 'Agent Builder browser feature is enabled but no default browser config was provided. ' +\n 'Set `editor.builder.configuration.agent.browser` to a valid browser config ' +\n '(e.g. `{ type: \"inline\", config: { provider: \"stagehand\" } }`). ' +\n 'The browser toggle will be hidden until a default is configured.';\n this.browserConfigWarnings.push(warning);\n // eslint-disable-next-line no-console\n console.warn(`[mastra:editor:builder] ${warning}`);\n // Downgrade so the resolved feature ends up `false`.\n if (this.options.features?.agent) {\n this.options.features.agent.browser = false;\n }\n return;\n }\n\n if (!browserConfig.config?.provider) {\n const warning =\n 'Agent Builder browser config is missing a `provider` field. ' +\n 'Set `editor.builder.configuration.agent.browser.config.provider` ' +\n '(e.g. `\"stagehand\"`). The browser toggle will be hidden until a provider is configured.';\n this.browserConfigWarnings.push(warning);\n // eslint-disable-next-line no-console\n console.warn(`[mastra:editor:builder] ${warning}`);\n if (this.options.features?.agent) {\n this.options.features.agent.browser = false;\n }\n }\n }\n\n private validateModelPolicy(): void {\n const enabled = this.options.enabled !== false;\n // Locked-mode is only triggered by an explicit `model: false` from the\n // admin. With default-on semantics, an omitted `model` resolves to\n // `true` (picker visible), which is open mode and has no\n // locked-mode-default invariant.\n const explicitModel = this.options.features?.agent?.model;\n const pickerVisible = explicitModel !== false;\n const models = this.options.configuration?.agent?.models;\n const allowed = models?.allowed;\n const defaultModel = models?.default;\n\n const active = isBuilderModelPolicyActive({\n enabled,\n pickerVisible,\n allowed,\n default: defaultModel,\n });\n\n if (!active) return;\n\n // Locked mode (picker hidden) requires an admin-pinned default. Phase 3's\n // create-path decision matrix relies on this invariant: a locked policy\n // without a default is unreachable. Only fires when the admin has\n // explicitly opted out of the picker.\n if (explicitModel === false && defaultModel === undefined) {\n throw new Error(\n 'Agent Builder model policy is active in locked mode but no default was set. ' +\n 'Set `editor.builder.configuration.agent.models.default`, or remove ' +\n '`editor.builder.features.agent.model = false` to allow end-users to pick a model.',\n );\n }\n\n // When an allowlist is set, the default (if any) must satisfy it. An\n // empty `allowed: []` means \"unrestricted\" so we skip this check.\n if (defaultModel !== undefined && allowed !== undefined && allowed.length > 0) {\n if (!isModelAllowed(allowed, defaultModel)) {\n throw new Error(\n 'Agent Builder default model is not in the allowlist. ' +\n 'Either add it to `editor.builder.configuration.agent.models.allowed` ' +\n 'or change `editor.builder.configuration.agent.models.default`.',\n );\n }\n }\n }\n}\n\n// AgentFeatures imported for documentation reference in this file's jsdoc.\nexport type { AgentFeatures };\n","import { Agent } from '@mastra/core/agent';\nimport type { AgentConfig } from '@mastra/core/agent';\nimport { Memory } from '@mastra/memory';\nimport { PrefillErrorHandler, ProviderHistoryCompat, StreamErrorRetryProcessor } from '@mastra/core/processors';\nimport { Workspace, LocalFilesystem } from '@mastra/core/workspace';\n\nimport path from 'node:path';\nimport { fileURLToPath } from 'node:url';\n\nconst __filename = fileURLToPath(import.meta.url);\nconst __dirname = path.dirname(__filename);\n\nconst workspacePath = path.join(__dirname, 'workspace');\n\nconst workspace = new Workspace({\n filesystem: new LocalFilesystem({\n basePath: workspacePath,\n }),\n skills: ['skills'],\n});\n\n/**\n * Agent Builder Agent\n *\n * Audience: non-technical users (Product, founders, operators, business stakeholders).\n * Goal: turn a plain-language description of a desired outcome into a fully\n * configured, production-quality agent — name, description, model, capabilities,\n * and system prompt — without asking the user follow-up questions.\n *\n * Capability tools the playground UI injects as client tools:\n * - set-agent-name, set-agent-description, set-agent-instructions, set-agent-workspace-id (always on)\n * - set-agent-tools (gated by features.tools)\n * - set-agent-skills (gated by features.skills + skills available)\n * - set-agent-model (gated by features.model + models available)\n * - set-agent-browser-enabled (gated by features.browser)\n * - createSkillTool (gated by features.skills) — only when a needed capability does not exist\n */\n\n/**\n * Default error processors wired into every builder agent. These each fix a\n * class of provider-side correctness bug that builder workloads tend to hit:\n *\n * - `StreamErrorRetryProcessor` — retries OpenAI's transient stream errors\n * (`server_error`, `rate_limit`, `internal_error`, `timeout`, `overloaded`,\n * etc.) that surface on long, tool-heavy turns.\n * - `PrefillErrorHandler` — recovers from Anthropic's\n * `does not support assistant message prefill` 400 by appending a\n * `system-reminder` continue message and retrying.\n * - `ProviderHistoryCompat` — applies provider-history-shape fixes\n * (anthropic tool-id format, cerebras reasoning-content strip, anthropic\n * foreign-reasoning strip) so model swaps don't break history.\n *\n * Exported so callers can compose a custom processor list that keeps the\n * subset they want (e.g. `[...DEFAULT_BUILDER_ERROR_PROCESSORS.filter(p => p.id !== 'stream-error-retry-processor'), myCustom]`).\n */\nexport const DEFAULT_BUILDER_ERROR_PROCESSORS = [\n new StreamErrorRetryProcessor(),\n new PrefillErrorHandler(),\n new ProviderHistoryCompat(),\n];\n\nexport function createBuilderAgent(args?: Partial<AgentConfig<'builder-agent'>>): Agent<'builder-agent'> {\n const memory = new Memory();\n\n // Merge defaults with any caller-supplied processors. Caller processors run\n // after defaults so they can observe/extend retries the defaults trigger.\n // A function-typed override (DynamicArgument) is passed through unchanged —\n // callers using the dynamic form are assumed to manage the full list.\n const callerErrorProcessors = args?.errorProcessors;\n const errorProcessors = Array.isArray(callerErrorProcessors)\n ? [...DEFAULT_BUILDER_ERROR_PROCESSORS, ...callerErrorProcessors]\n : (callerErrorProcessors ?? DEFAULT_BUILDER_ERROR_PROCESSORS);\n\n const config: AgentConfig<'builder-agent'> = {\n instructions: `You are the Agent Builder.\n\nYour job: turn a non-technical user's plain-language request into a fully configured, production-quality agent in a single turn.\n\n# Non-negotiables\n\n- Never ask the user follow-up questions. Make the most reasonable assumption and move forward.\n- Never expose internal names, tool ids, file paths, schemas, code, or jargon to the user.\n- Speak only in user-facing capability terms.\n- Always finish the build in the same turn as the request — configure the agent end-to-end and deliver a short summary.\n- Always define the new agent's name, description, model, and system prompt yourself. Do not ask the user for any of these.\n\nExamples of communication style:\n- Bad: \"Added weatherTool to agent-yzx capabilities.\"\n- Good: \"Your new agent can now check the weather for you.\"\n- Bad: \"Calling set-agent-tools with [weatherTool].\"\n- Good: \"Checking what capabilities to bring to your agent…\"\n- Bad: \"Agent created with weatherTool and recipeWorkflow attached.\"\n- Good: \"Your agent can check the weather and suggest recipes that match the day's conditions.\"\n\n# Form snapshot\n\nA \"Current agent configuration (authoritative)\" block is injected into your context every turn. It lists every form field with its current value AND a directive telling you exactly which setter to call (or skip) for that field. Treat the snapshot as the single source of truth for what is and isn't already set — do not try to infer state from anywhere else, and do not re-call setters for fields whose directive says \"already set\".\n\n# Authoring loop\n\nFollow these five steps in order, every time:\n\n## Step A — Understand the real outcome\n\nAnalyze what the user actually wants to achieve. Focus on the final result, not just the literal wording of the request.\n\nAsk yourself:\n- What should the agent help the user accomplish?\n- Who will use this agent?\n- What decisions should the agent make on its own?\n- What kind of output should the agent produce?\n- What recurring tasks, reasoning, or actions does the agent need to perform?\n\n## Step B — Define the agent's identity\n\nDecide on:\n- Agent name: short, memorable, anchored to the outcome. Never \"Agent X\" or generic labels.\n- Description: exactly one sentence in plain user-facing language explaining what the agent helps with.\n\nThe snapshot will tell you whether to call \\`set-agent-name\\` and \\`set-agent-description\\` or skip them.\n\n## Step C — Decide capabilities\n\nThe form snapshot lists what's currently attached. Use it together with the available tools, agents, workflows, stored skills, and models listed in the corresponding tool descriptions to decide:\n\n- Pick the *minimum* set of existing tools/agents/workflows/stored skills that satisfies the outcome. Adding irrelevant capabilities makes the agent worse, not better.\n- Prefer existing tools, workflows, agents, and stored skills before creating anything new.\n- \\`set-agent-skills\\` attaches user-available stored skills.\n- Only call \\`createSkillTool\\` when (a) no existing stored skill matches reusable operating instructions the produced agent needs, AND (b) that operating instruction is genuinely needed for the outcome. Do not use stored skills as a substitute for missing integrations or tools.\n- If a specific external connection is required (e.g. a sheet tool for a spreadsheet-driven outcome) and none is available, the new agent's system prompt must instruct it to refuse cleanly and explain what the user needs to connect.\n\n## Step D — Synthesize concise operating instructions\n\nBefore calling \\`set-agent-instructions\\`, privately write a concrete run contract for the produced agent. The system prompt must instantiate each item, but keep each item brief:\n\n1. **Trigger / input** — what user request, schedule, event, file, row, ticket, or message starts a run.\n2. **Owned outcome** — the exact result the produced agent is responsible for finishing.\n3. **Available capabilities** — only capabilities actually attached or already available from the form snapshot, described in user-facing outcome terms.\n4. **Missing-capability fallback** — what the produced agent does when a required integration, workspace, credential, or source is absent.\n5. **Done criteria** — verifiable conditions that prove the job is finished, including tool confirmation or an explicit \"not run\" reason when verification is impossible.\n6. **Final response format** — the receipt, summary, draft, diff summary, report, or confirmation the user receives.\n\nWrite the final system prompt as 2–4 short paragraphs or compact bullet groups. Target 1,200–2,000 characters and stay under 2,500 characters. Do not include worked examples, FAQs, long edge-case lists, or exhaustive policies unless the user's request explicitly requires them. Prefer one clear default over several branches.\n\n## Step E — Write the agent\n\nRead the per-field directives in the form snapshot. Call only the setters the snapshot tells you to call, each at most once, with the final value. Skip every field marked \"already set\" or \"no setter\". Skip any field that isn't listed at all (its feature is disabled).\n\nBefore calling \\`set-agent-instructions\\`, self-audit the draft. It must pass every check:\n- No placeholders remain (no \\`<...>\\`, \"TBD\", \"TODO\", \"your tool\", or generic policy gaps).\n- No internal tool ids, file paths, schemas, or builder-only terms appear.\n- No generic \"helpful assistant\" identity remains.\n- No unsupported capabilities are promised.\n- Completion criteria are concrete.\n- Missing-access fallback is included when relevant.\n- Final response expectations are clear.\n- The prompt is specific to the agent's outcome and under 2,500 characters.\n\n## Step F — Confirm the agent configuration to the user\n\nEnd your turn with one short, friendly paragraph confirming that the agent has been configured and is ready to use.\n\nUse this shape:\n\n\"Your agent, [Agent Name], has been configured with its initial parameters. It can now [plain-language outcome]. You can adjust its instructions, inputs, or connected capabilities whenever your needs change.\"\n\nDo not mention internal capability names, tools, workflows, skills, or configuration steps.\n\nGood:\n\"Your agent, Sales Drop Watcher, has been configured with its initial parameters. It can now review your weekly sales sheet, flag accounts that dropped more than 10%, and prepare follow-up drafts for each one. You can adjust its instructions, thresholds, or connected data sources whenever your needs change.\"\n\nBad:\n\"Agent created with sheetsTool, scoringWorkflow, and emailSkill attached.\"\n\nBad:\n\"I configured the sheets integration and called set-agent-instructions.\"\n\n# Quality bar for the produced agent's system prompt\n\nThe system prompt written into \\`set-agent-instructions\\` MUST be short, concrete, and useful. It should cover all of the following, but each item should usually be one sentence or a compact bullet:\n\n1. **Role and outcome.** Define what the agent is and the concrete result it owns.\n2. **Trigger and input.** Define what starts a run and what input the agent expects.\n3. **Decision rules.** Explain how the agent resolves ambiguity, what defaults it should apply, and what it should skip without asking the user.\n4. **Capability awareness.** Describe only the tools, integrations, workspaces, or data sources the agent actually has, phrased in terms of what they let the agent accomplish.\n5. **Missing-capability fallback.** Explain what the agent should do when a required integration, credential, permission, workspace, or source is unavailable.\n6. **Completion criteria.** Define exactly when the task is done in observable, verifiable terms.\n7. **Final response format.** Specify the shape of the agent's final answer, report, draft, receipt, or confirmation.\n8. **Communication style.** Require plain language, short answers, no jargon, and structure only when useful.\n9. **Refusal rules.** State what the agent must refuse and how it should explain the refusal clearly.\n\nKeep this to 2–4 focused paragraphs or compact bullet groups. Do not include worked examples, FAQs, or exhaustive edge-case lists by default.\n\n# Hard rules\n\n- If the user's request requires CLI or local-machine actions and no workspace is connected, refuse in plain language and tell the user they need to connect a workspace first.\n- Never reveal that you are calling configuration tools. Describe progress only in terms of the user's intended outcome.\n- Never produce a system prompt without explicit completion criteria.\n- Never attach a capability \"just in case.\" Every tool, agent, workflow, or skill must directly support the requested outcome.\n- The final message to the user must be concise, friendly, and focused on what the configured agent can now do.\n- The final message should make clear that the agent starts with initial parameters and can be adjusted later.`,\n model: 'openai/gpt-5.5',\n memory,\n workspace,\n ...(args || {}),\n errorProcessors,\n id: 'builder-agent',\n name: 'Agent Builder Agent',\n description: 'An agent that can build agents',\n };\n\n return new Agent<'builder-agent'>(config);\n}\n"],"mappings":"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","names":[]}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../../src/ee/agent-builder.ts","../../src/ee/agent-builder-agent.ts"],"sourcesContent":["import type { AgentBuilderOptions, AgentFeatures, IAgentBuilder } from '@mastra/core/agent-builder/ee';\nimport { isBuilderModelPolicyActive, isModelAllowed, resolveAgentFeatures } from '@mastra/core/agent-builder/ee';\n\n/**\n * Concrete implementation of the Agent Builder EE feature.\n * Instantiated by MastraEditor.resolveBuilder() when builder config is enabled.\n *\n * The constructor performs fail-fast validation of the admin's model policy\n * (Phase 4) so misconfiguration is caught at boot, not at first request.\n *\n * Feature toggles use **default-on semantics**: omitted keys resolve to\n * `true`. Admins opt out by setting a key to `false`. The resolved features\n * are computed once in the constructor (after validation) and returned\n * verbatim by {@link getFeatures} so all downstream consumers (server route,\n * UI hooks, policy derivation) see the same effective values.\n */\nexport class EditorAgentBuilder implements IAgentBuilder {\n private readonly options: AgentBuilderOptions;\n private readonly modelPolicyWarnings: string[] = [];\n\n /** Non-fatal warnings for browser config issues (surfaced alongside model policy warnings). */\n private readonly browserConfigWarnings: string[] = [];\n\n /**\n * Resolved (default-on normalized) features. Computed once in the\n * constructor; `undefined` only if the builder was constructed with\n * `enabled: false` (we still allocate features for the OFF path so callers\n * can introspect, but we keep the field optional to preserve the existing\n * API contract where `getFeatures()` may legitimately return `undefined`\n * if no `features` was provided AND no defaults could be applied).\n *\n * In practice this is always populated: `resolveAgentFeatures` returns a\n * fully-populated object regardless of input.\n */\n private readonly resolvedFeatures: AgentBuilderOptions['features'];\n\n constructor(options?: AgentBuilderOptions) {\n // Shallow-clone the paths the validators mutate so we never leak side\n // effects into the caller's `MastraEditorConfig.builder` object.\n // `validateBrowserConfig` writes to `features.agent.browser`; nothing\n // else is mutated, so `configuration` and `registries` stay aliased.\n const source = options ?? {};\n this.options = {\n ...source,\n features: source.features\n ? {\n ...source.features,\n agent: source.features.agent ? { ...source.features.agent } : undefined,\n }\n : undefined,\n };\n this.validateModelPolicy();\n this.validateBrowserConfig();\n // Resolve features AFTER browser-config validation so that an explicit\n // `browser: true` with bad config is already mutated to `false` on\n // `this.options.features.agent.browser`. The resolver then sees the\n // downgraded value and returns it as-is.\n this.resolvedFeatures = {\n agent: resolveAgentFeatures(this.options.features?.agent, {\n hasBrowserConfig: this.hasValidBrowserConfig(),\n }),\n };\n }\n\n get enabled(): boolean {\n return this.options.enabled !== false;\n }\n\n getFeatures(): AgentBuilderOptions['features'] {\n return this.resolvedFeatures;\n }\n\n getConfiguration(): AgentBuilderOptions['configuration'] {\n return this.options.configuration;\n }\n\n getRegistries(): AgentBuilderOptions['registries'] {\n return this.options.registries;\n }\n\n getModelPolicyWarnings(): string[] {\n return [...this.modelPolicyWarnings, ...this.browserConfigWarnings];\n }\n\n /**\n * True when `configuration.agent.browser` declares a provider. The\n * EditorAgentBuilder does NOT verify the provider is registered with the\n * Mastra instance — that cross-validation lives in `MastraEditor.resolveBuilder`\n * because only the editor knows the registered browser providers.\n */\n private hasValidBrowserConfig(): boolean {\n const browserConfig = this.options.configuration?.agent?.browser;\n return Boolean(browserConfig?.config?.provider);\n }\n\n /**\n * Browser config validation only runs for **explicit** `browser: true`.\n * With default-on semantics, an omitted `browser` no longer means \"admin\n * opted in\" — it means \"admin didn't opt out\". The default-on path is\n * resolved later by `resolveAgentFeatures`, which already gates `browser`\n * on `hasValidBrowserConfig`. We don't want to spam every default-config\n * deployment with warnings.\n */\n private validateBrowserConfig(): void {\n const explicitBrowser = this.options.features?.agent?.browser;\n if (explicitBrowser !== true) return;\n\n const browserConfig = this.options.configuration?.agent?.browser;\n if (!browserConfig) {\n const warning =\n 'Agent Builder browser feature is enabled but no default browser config was provided. ' +\n 'Set `editor.builder.configuration.agent.browser` to a valid browser config ' +\n '(e.g. `{ type: \"inline\", config: { provider: \"stagehand\" } }`). ' +\n 'The browser toggle will be hidden until a default is configured.';\n this.browserConfigWarnings.push(warning);\n // eslint-disable-next-line no-console\n console.warn(`[mastra:editor:builder] ${warning}`);\n // Downgrade so the resolved feature ends up `false`.\n if (this.options.features?.agent) {\n this.options.features.agent.browser = false;\n }\n return;\n }\n\n if (!browserConfig.config?.provider) {\n const warning =\n 'Agent Builder browser config is missing a `provider` field. ' +\n 'Set `editor.builder.configuration.agent.browser.config.provider` ' +\n '(e.g. `\"stagehand\"`). The browser toggle will be hidden until a provider is configured.';\n this.browserConfigWarnings.push(warning);\n // eslint-disable-next-line no-console\n console.warn(`[mastra:editor:builder] ${warning}`);\n if (this.options.features?.agent) {\n this.options.features.agent.browser = false;\n }\n }\n }\n\n private validateModelPolicy(): void {\n const enabled = this.options.enabled !== false;\n // Locked-mode is only triggered by an explicit `model: false` from the\n // admin. With default-on semantics, an omitted `model` resolves to\n // `true` (picker visible), which is open mode and has no\n // locked-mode-default invariant.\n const explicitModel = this.options.features?.agent?.model;\n const pickerVisible = explicitModel !== false;\n const models = this.options.configuration?.agent?.models;\n const allowed = models?.allowed;\n const defaultModel = models?.default;\n\n const active = isBuilderModelPolicyActive({\n enabled,\n pickerVisible,\n allowed,\n default: defaultModel,\n });\n\n if (!active) return;\n\n // Locked mode (picker hidden) requires an admin-pinned default. Phase 3's\n // create-path decision matrix relies on this invariant: a locked policy\n // without a default is unreachable. Only fires when the admin has\n // explicitly opted out of the picker.\n if (explicitModel === false && defaultModel === undefined) {\n throw new Error(\n 'Agent Builder model policy is active in locked mode but no default was set. ' +\n 'Set `editor.builder.configuration.agent.models.default`, or remove ' +\n '`editor.builder.features.agent.model = false` to allow end-users to pick a model.',\n );\n }\n\n // When an allowlist is set, the default (if any) must satisfy it. An\n // empty `allowed: []` means \"unrestricted\" so we skip this check.\n if (defaultModel !== undefined && allowed !== undefined && allowed.length > 0) {\n if (!isModelAllowed(allowed, defaultModel)) {\n throw new Error(\n 'Agent Builder default model is not in the allowlist. ' +\n 'Either add it to `editor.builder.configuration.agent.models.allowed` ' +\n 'or change `editor.builder.configuration.agent.models.default`.',\n );\n }\n }\n }\n}\n\n// AgentFeatures imported for documentation reference in this file's jsdoc.\nexport type { AgentFeatures };\n","import { Agent } from '@mastra/core/agent';\nimport type { AgentConfig } from '@mastra/core/agent';\nimport { Memory } from '@mastra/memory';\nimport { PrefillErrorHandler, ProviderHistoryCompat, StreamErrorRetryProcessor } from '@mastra/core/processors';\nimport { Workspace, LocalFilesystem } from '@mastra/core/workspace';\n\nimport path from 'node:path';\nimport { fileURLToPath } from 'node:url';\n\nconst __filename = fileURLToPath(import.meta.url);\nconst __dirname = path.dirname(__filename);\n\nconst workspacePath = path.join(__dirname, 'workspace');\n\nconst workspace = new Workspace({\n filesystem: new LocalFilesystem({\n basePath: workspacePath,\n }),\n skills: ['skills'],\n});\n\n/**\n * Agent Builder Agent\n *\n * Audience: non-technical users (Product, founders, operators, business stakeholders).\n * Goal: turn a plain-language description of a desired outcome into a fully\n * configured, production-quality agent — name, description, model, capabilities,\n * and system prompt — without asking the user follow-up questions.\n *\n * Capability tools the playground UI injects as client tools:\n * - set-agent-name, set-agent-description, set-agent-instructions, set-agent-workspace-id (always on)\n * - set-agent-tools (gated by features.tools)\n * - set-agent-skills (gated by features.skills + skills available)\n * - set-agent-model (gated by features.model + models available)\n * - set-agent-browser-enabled (gated by features.browser)\n * - createSkillTool (gated by features.skills) — only when a needed capability does not exist\n */\n\n/**\n * Default error processors wired into every builder agent. These each fix a\n * class of provider-side correctness bug that builder workloads tend to hit:\n *\n * - `StreamErrorRetryProcessor` — retries OpenAI's transient stream errors\n * (`server_error`, `rate_limit`, `internal_error`, `timeout`, `overloaded`,\n * etc.) that surface on long, tool-heavy turns.\n * - `PrefillErrorHandler` — recovers from Anthropic's\n * `does not support assistant message prefill` 400 by appending a\n * `system-reminder` continue message and retrying.\n * - `ProviderHistoryCompat` — applies provider-history-shape fixes\n * (anthropic tool-id format, cerebras reasoning-content strip, anthropic\n * foreign-reasoning strip) so model swaps don't break history.\n *\n * Exported so callers can compose a custom processor list that keeps the\n * subset they want (e.g. `[...DEFAULT_BUILDER_ERROR_PROCESSORS.filter(p => p.id !== 'stream-error-retry-processor'), myCustom]`).\n */\nexport const DEFAULT_BUILDER_ERROR_PROCESSORS = [\n new StreamErrorRetryProcessor(),\n new PrefillErrorHandler(),\n new ProviderHistoryCompat(),\n];\n\nexport function createBuilderAgent(args?: Partial<AgentConfig<'builder-agent'>>): Agent<'builder-agent'> {\n const memory = new Memory();\n\n // Merge defaults with any caller-supplied processors. Caller processors run\n // after defaults so they can observe/extend retries the defaults trigger.\n // A function-typed override (DynamicArgument) is passed through unchanged —\n // callers using the dynamic form are assumed to manage the full list.\n const callerErrorProcessors = args?.errorProcessors;\n const errorProcessors = Array.isArray(callerErrorProcessors)\n ? [...DEFAULT_BUILDER_ERROR_PROCESSORS, ...callerErrorProcessors]\n : (callerErrorProcessors ?? DEFAULT_BUILDER_ERROR_PROCESSORS);\n\n const config: AgentConfig<'builder-agent'> = {\n instructions: `You are the Agent Builder.\n\nYour job: turn a non-technical user's plain-language request into a fully configured, production-quality agent in a single turn.\n\n# Non-negotiables\n\n- Never ask the user follow-up questions. Make the most reasonable assumption and move forward.\n- Never expose internal names, tool ids, file paths, schemas, code, or jargon to the user.\n- Speak only in user-facing capability terms.\n- Always finish the build in the same turn as the request — configure the agent end-to-end and deliver a short summary.\n- Always define the new agent's name, description, model, and system prompt yourself. Do not ask the user for any of these.\n\nExamples of communication style:\n- Bad: \"Added weatherTool to agent-yzx capabilities.\"\n- Good: \"Your new agent can now check the weather for you.\"\n- Bad: \"Calling set-agent-tools with [weatherTool].\"\n- Good: \"Checking what capabilities to bring to your agent…\"\n- Bad: \"Agent created with weatherTool and recipeWorkflow attached.\"\n- Good: \"Your agent can check the weather and suggest recipes that match the day's conditions.\"\n\n# Form snapshot\n\nA \"Current agent configuration (authoritative)\" block is injected into your context every turn. It lists every form field with its current value AND a directive telling you exactly which setter to call (or skip) for that field. Treat the snapshot as the single source of truth for what is and isn't already set — do not try to infer state from anywhere else, and do not re-call setters for fields whose directive says \"already set\".\n\n# Authoring loop\n\nFollow these five steps in order, every time:\n\n## Step A — Understand the real outcome\n\nAnalyze what the user actually wants to achieve. Focus on the final result, not just the literal wording of the request.\n\nAsk yourself:\n- What should the agent help the user accomplish?\n- Who will use this agent?\n- What decisions should the agent make on its own?\n- What kind of output should the agent produce?\n- What recurring tasks, reasoning, or actions does the agent need to perform?\n\n## Step B — Define the agent's identity\n\nDecide on:\n- Agent name: short, memorable, anchored to the outcome. Never \"Agent X\" or generic labels.\n- Description: exactly one sentence in plain user-facing language explaining what the agent helps with.\n\nThe snapshot will tell you whether to call \\`set-agent-name\\` and \\`set-agent-description\\` or skip them.\n\n## Step C — Decide capabilities\n\nThe form snapshot lists what's currently attached. Use it together with the available tools, agents, workflows, stored skills, and models listed in the corresponding tool descriptions to decide:\n\n- Pick the *minimum* set of existing tools/agents/workflows/stored skills that satisfies the outcome. Adding irrelevant capabilities makes the agent worse, not better.\n- Prefer existing tools, workflows, agents, and stored skills before creating anything new.\n- \\`set-agent-skills\\` attaches user-available stored skills.\n- Only call \\`createSkillTool\\` when (a) no existing stored skill matches reusable operating instructions the produced agent needs, AND (b) that operating instruction is genuinely needed for the outcome. Do not use stored skills as a substitute for missing integrations or tools.\n- If a specific external connection is required (e.g. a sheet tool for a spreadsheet-driven outcome) and none is available, the new agent's system prompt must instruct it to refuse cleanly and explain what the user needs to connect.\n\n## Step D — Synthesize concise operating instructions\n\nBefore calling \\`set-agent-instructions\\`, privately write a concrete run contract for the produced agent. The system prompt must instantiate each item, but keep each item brief:\n\n1. **Trigger / input** — what user request, schedule, event, file, row, ticket, or message starts a run.\n2. **Owned outcome** — the exact result the produced agent is responsible for finishing.\n3. **Available capabilities** — only capabilities actually attached or already available from the form snapshot, described in user-facing outcome terms.\n4. **Missing-capability fallback** — what the produced agent does when a required integration, workspace, credential, or source is absent.\n5. **Done criteria** — verifiable conditions that prove the job is finished, including tool confirmation or an explicit \"not run\" reason when verification is impossible.\n6. **Final response format** — the receipt, summary, draft, diff summary, report, or confirmation the user receives.\n\nWrite the final system prompt as 2–4 short paragraphs or compact bullet groups. Target 1,200–2,000 characters and stay under 2,500 characters. Do not include worked examples, FAQs, long edge-case lists, or exhaustive policies unless the user's request explicitly requires them. Prefer one clear default over several branches.\n\n## Step E — Write the agent\n\nRead the per-field directives in the form snapshot. Call only the setters the snapshot tells you to call, each at most once, with the final value. Skip every field marked \"already set\" or \"no setter\". Skip any field that isn't listed at all (its feature is disabled).\n\nBefore calling \\`set-agent-instructions\\`, self-audit the draft. It must pass every check:\n- No placeholders remain (no \\`<...>\\`, \"TBD\", \"TODO\", \"your tool\", or generic policy gaps).\n- No internal tool ids, file paths, schemas, or builder-only terms appear.\n- No generic \"helpful assistant\" identity remains.\n- No unsupported capabilities are promised.\n- Completion criteria are concrete.\n- Missing-access fallback is included when relevant.\n- Final response expectations are clear.\n- The prompt is specific to the agent's outcome and under 2,500 characters.\n\n## Step F — Confirm the agent configuration to the user\n\nEnd your turn with one short, friendly paragraph confirming that the agent has been configured and is ready to use.\n\nUse this shape:\n\n\"Your agent, [Agent Name], has been configured with its initial parameters. It can now [plain-language outcome]. You can adjust its instructions, inputs, or connected capabilities whenever your needs change.\"\n\nDo not mention internal capability names, tools, workflows, skills, or configuration steps.\n\nGood:\n\"Your agent, Sales Drop Watcher, has been configured with its initial parameters. It can now review your weekly sales sheet, flag accounts that dropped more than 10%, and prepare follow-up drafts for each one. You can adjust its instructions, thresholds, or connected data sources whenever your needs change.\"\n\nBad:\n\"Agent created with sheetsTool, scoringWorkflow, and emailSkill attached.\"\n\nBad:\n\"I configured the sheets integration and called set-agent-instructions.\"\n\n# Quality bar for the produced agent's system prompt\n\nThe system prompt written into \\`set-agent-instructions\\` MUST be short, concrete, and useful. It should cover all of the following, but each item should usually be one sentence or a compact bullet:\n\n1. **Role and outcome.** Define what the agent is and the concrete result it owns.\n2. **Trigger and input.** Define what starts a run and what input the agent expects.\n3. **Decision rules.** Explain how the agent resolves ambiguity, what defaults it should apply, and what it should skip without asking the user.\n4. **Capability awareness.** Describe only the tools, integrations, workspaces, or data sources the agent actually has, phrased in terms of what they let the agent accomplish.\n5. **Missing-capability fallback.** Explain what the agent should do when a required integration, credential, permission, workspace, or source is unavailable.\n6. **Completion criteria.** Define exactly when the task is done in observable, verifiable terms.\n7. **Final response format.** Specify the shape of the agent's final answer, report, draft, receipt, or confirmation.\n8. **Communication style.** Require plain language, short answers, no jargon, and structure only when useful.\n9. **Refusal rules.** State what the agent must refuse and how it should explain the refusal clearly.\n\nKeep this to 2–4 focused paragraphs or compact bullet groups. Do not include worked examples, FAQs, or exhaustive edge-case lists by default.\n\n# Hard rules\n\n- If the user's request requires CLI or local-machine actions and no workspace is connected, refuse in plain language and tell the user they need to connect a workspace first.\n- Never reveal that you are calling configuration tools. Describe progress only in terms of the user's intended outcome.\n- Never produce a system prompt without explicit completion criteria.\n- Never attach a capability \"just in case.\" Every tool, agent, workflow, or skill must directly support the requested outcome.\n- The final message to the user must be concise, friendly, and focused on what the configured agent can now do.\n- The final message should make clear that the agent starts with initial parameters and can be adjusted later.`,\n model: 'openai/gpt-5.5',\n memory,\n workspace,\n ...(args || {}),\n errorProcessors,\n id: 'builder-agent',\n name: 'Agent Builder Agent',\n description: 'An agent that can build agents',\n };\n\n return new Agent<'builder-agent'>(config);\n}\n"],"mappings":"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"}