@mastra/mcp-docs-server 1.1.28 → 1.1.29-alpha.11

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.
Files changed (60) hide show
  1. package/.docs/docs/agents/background-tasks.md +242 -0
  2. package/.docs/docs/agents/channels.md +2 -1
  3. package/.docs/docs/agents/supervisor-agents.md +35 -4
  4. package/.docs/docs/agents/using-tools.md +1 -0
  5. package/.docs/docs/browser/overview.md +1 -0
  6. package/.docs/docs/evals/custom-scorers.md +60 -0
  7. package/.docs/docs/streaming/background-task-streaming.md +80 -0
  8. package/.docs/docs/streaming/overview.md +3 -0
  9. package/.docs/docs/workspace/filesystem.md +3 -1
  10. package/.docs/docs/workspace/overview.md +1 -1
  11. package/.docs/docs/workspace/search.md +2 -2
  12. package/.docs/docs/workspace/skills.md +16 -16
  13. package/.docs/guides/build-your-ui/ai-sdk-ui.md +5 -3
  14. package/.docs/guides/guide/code-review-bot.md +2 -2
  15. package/.docs/guides/guide/dev-assistant.md +4 -4
  16. package/.docs/guides/guide/slack-assistant.md +191 -0
  17. package/.docs/models/gateways/azure-openai.md +25 -25
  18. package/.docs/models/gateways/mastra.md +64 -0
  19. package/.docs/models/gateways/netlify.md +5 -1
  20. package/.docs/models/gateways/openrouter.md +8 -1
  21. package/.docs/models/gateways/vercel.md +7 -1
  22. package/.docs/models/gateways.md +1 -0
  23. package/.docs/models/index.md +4 -4
  24. package/.docs/models/providers/abliteration-ai.md +71 -0
  25. package/.docs/models/providers/alibaba-cn.md +4 -1
  26. package/.docs/models/providers/alibaba.md +6 -1
  27. package/.docs/models/providers/deepseek.md +6 -4
  28. package/.docs/models/providers/huggingface.md +2 -1
  29. package/.docs/models/providers/llmgateway.md +4 -1
  30. package/.docs/models/providers/novita-ai.md +4 -1
  31. package/.docs/models/providers/nvidia.md +3 -1
  32. package/.docs/models/providers/ollama-cloud.md +3 -1
  33. package/.docs/models/providers/opencode-go.md +20 -18
  34. package/.docs/models/providers/opencode.md +3 -2
  35. package/.docs/models/providers/poe.md +3 -1
  36. package/.docs/models/providers/togetherai.md +2 -1
  37. package/.docs/models/providers/xiaomi-token-plan-ams.md +9 -7
  38. package/.docs/models/providers/xiaomi-token-plan-cn.md +9 -7
  39. package/.docs/models/providers/xiaomi-token-plan-sgp.md +9 -7
  40. package/.docs/models/providers/xiaomi.md +4 -2
  41. package/.docs/models/providers/zai-coding-plan.md +11 -20
  42. package/.docs/models/providers/zhipuai-coding-plan.md +11 -21
  43. package/.docs/models/providers.md +1 -0
  44. package/.docs/reference/client-js/agents.md +44 -0
  45. package/.docs/reference/configuration.md +63 -0
  46. package/.docs/reference/evals/create-scorer.md +2 -0
  47. package/.docs/reference/evals/filter-run.md +117 -0
  48. package/.docs/reference/index.md +3 -0
  49. package/.docs/reference/memory/clone-utilities.md +4 -2
  50. package/.docs/reference/memory/cloneThread.md +4 -2
  51. package/.docs/reference/processors/skill-search-processor.md +1 -1
  52. package/.docs/reference/server/routes.md +9 -8
  53. package/.docs/reference/streaming/ChunkType.md +140 -0
  54. package/.docs/reference/streaming/agents/streamUntilIdle.md +94 -0
  55. package/.docs/reference/workspace/azure-blob-filesystem.md +219 -0
  56. package/.docs/reference/workspace/gcs-filesystem.md +1 -0
  57. package/.docs/reference/workspace/s3-filesystem.md +1 -0
  58. package/.docs/reference/workspace/workspace-class.md +1 -1
  59. package/CHANGELOG.md +42 -0
  60. package/package.json +4 -4
@@ -0,0 +1,242 @@
1
+ # Background tasks
2
+
3
+ **Added in:** `@mastra/core@1.28.0`
4
+
5
+ Background tasks let an agent dispatch a long-running tool call without blocking the agentic loop. The tool returns an immediate acknowledgement, the LLM continues responding, and the task runs to completion in the background. When it finishes, its result is written to memory and if you use [`streamUntilIdle()`](https://mastra.ai/reference/streaming/agents/streamUntilIdle) the agent is re-invoked automatically so the result is processed in the same call.
6
+
7
+ ## When to use background tasks
8
+
9
+ Use background tasks when a tool call may take long enough that the user shouldn't wait for it before seeing a response. Common cases:
10
+
11
+ - Subagent delegations that themselves run multi-step research or writing.
12
+ - Tool calls that hit slow external services, queues, or large data jobs.
13
+ - Workflows triggered from a tool call that may take minutes to complete.
14
+
15
+ For tool calls that return quickly, foreground execution using `agent.stream()` and `agent.generate()` is simpler.
16
+
17
+ > **Note:** Background tasks require a configured [storage](https://mastra.ai/docs/memory/storage) backend on the Mastra instance. Tasks are persisted so they survive process restarts.
18
+
19
+ ## Quickstart
20
+
21
+ Background tasks are off by default. Enable them by setting `backgroundTasks.enabled` on the Mastra instance:
22
+
23
+ ```typescript
24
+ import { Mastra } from '@mastra/core'
25
+ import { LibSQLStore } from '@mastra/libsql'
26
+
27
+ export const mastra = new Mastra({
28
+ storage: new LibSQLStore({ id: 'storage', url: 'file:mastra.db' }),
29
+ backgroundTasks: {
30
+ enabled: true,
31
+ globalConcurrency: 10,
32
+ perAgentConcurrency: 5,
33
+ backpressure: 'queue',
34
+ defaultTimeoutMs: 300_000,
35
+ },
36
+ })
37
+ ```
38
+
39
+ The full set of options is listed in the [backgroundTasks configuration reference](https://mastra.ai/reference/configuration).
40
+
41
+ ## Run a tool in the background
42
+
43
+ Enabling the manager doesn't run anything in the background by itself as every tool defaults to foreground execution. You can run a tool in the background at one of three layers, in priority order:
44
+
45
+ 1. **LLM per-call override**: the model decides it should run in the background and includes a `_background` field in the tool arguments.
46
+ 2. **Agent-level config**: the agent declares which of its tools are background-eligible.
47
+ 3. **Tool-level config**: the tool itself declares it as background-eligible.
48
+
49
+ ### Tool-level
50
+
51
+ Set `backgroundTasks.enabled: true` on the tool definition. Tools opted in at this layer run in the background whenever called by an agent that has the manager enabled.
52
+
53
+ ```typescript
54
+ import { createTool } from '@mastra/core/tools'
55
+ import { z } from 'zod'
56
+
57
+ export const researchTool = createTool({
58
+ id: 'research',
59
+ description: 'Run a long research job',
60
+ inputSchema: z.object({ topic: z.string() }),
61
+ backgroundTasks: {
62
+ enabled: true,
63
+ timeoutMs: 600_000,
64
+ maxRetries: 1,
65
+ },
66
+ execute: async ({ context }) => {
67
+ // ...
68
+ },
69
+ })
70
+ ```
71
+
72
+ ### Agent-level
73
+
74
+ Use `backgroundTasks.tools` on the agent to opt in specific tools, override timeouts for individual tools, or run all background-eligible tools in the background. Use `disabled: true` to short-circuit background dispatch for the agent entirely.
75
+
76
+ ```typescript
77
+ import { Agent } from '@mastra/core/agent'
78
+
79
+ export const researcher = new Agent({
80
+ id: 'researcher',
81
+ instructions: 'You research topics and answer questions.',
82
+ model: 'openai/gpt-5.4',
83
+ tools: { researchTool, summarizeTool },
84
+ backgroundTasks: {
85
+ tools: {
86
+ researchTool: { enabled: true, timeoutMs: 600_000 },
87
+ summarizeTool: false,
88
+ },
89
+ },
90
+ })
91
+ ```
92
+
93
+ Set `tools: 'all'` to opt in every tool the agent has.
94
+
95
+ ### LLM per-call override
96
+
97
+ When a tool is registered on an agent that has background tasks enabled, the model can include a `_background` field in the tool arguments to override the resolved configuration for that specific call. The model only includes what it wants to override, all fields in `_background` are optional. The override is stripped from the arguments before the tool runs.
98
+
99
+ ```json
100
+ {
101
+ "topic": "solana",
102
+ "_background": { "enabled": true, "timeoutMs": 900_000 }
103
+ }
104
+ ```
105
+
106
+ ### Resolution order
107
+
108
+ When a tool call is dispatched, the resolved background config is computed in this priority order:
109
+
110
+ 1. LLM `_background` override (if present in the call's arguments).
111
+ 2. Agent-level `backgroundTasks.tools` entry for the tool.
112
+ 3. Tool-level `backgroundTasks` config.
113
+ 4. Manager defaults (`defaultTimeoutMs`, `defaultRetries`).
114
+
115
+ If the agent has `backgroundTasks.disabled: true`, every tool call runs synchronously regardless of the layers above.
116
+
117
+ ## Background tasks related stream chunks
118
+
119
+ When a tool call dispatches as a background task, two streams may surface lifecycle events for it: the agent's own stream and the [`backgroundTaskManager.stream()`](https://mastra.ai/docs/streaming/background-task-streaming) SSE stream. Each stream covers a different set of chunk types:
120
+
121
+ | Chunk type | When it fires | Emitted by |
122
+ | --------------------------- | -------------------------------------------------------------------------------------- | -------------- |
123
+ | `background-task-started` | The task has been enqueued and assigned a `taskId`. | Agent stream |
124
+ | `background-task-running` | The task picked up a worker and started executing. | Manager stream |
125
+ | `background-task-progress` | Shows number of running background tasks. | Agent stream |
126
+ | `background-task-output` | A streamed output chunk from the task's `execute`. | Manager stream |
127
+ | `background-task-completed` | The task finished successfully. The `payload.result` matches the eventual tool result. | Manager stream |
128
+ | `background-task-failed` | The task threw or timed out. | Manager stream |
129
+ | `background-task-cancelled` | The task was cancelled before completing. | Manager stream |
130
+
131
+ `agent.stream().fullStream` only emits the agent-loop chunks (`background-task-started`, `background-task-progress`) on its own. `agent.streamUntilIdle()` emits the same two chunks and additionally subscribes to the manager pubsub for the run's memory scope and pipes the five manager chunks (`background-task-running`, `background-task-output`, `background-task-completed`, `background-task-failed`, `background-task-cancelled`) into the same `fullStream`, so consumers of `streamUntilIdle().fullStream` see all seven types.
132
+
133
+ `backgroundTaskManager.stream()` only emits the five manager chunks.
134
+
135
+ The full payload shapes are documented in the [background task chunks reference](https://mastra.ai/reference/streaming/ChunkType).
136
+
137
+ ## Keep the agent stream open with `streamUntilIdle()`
138
+
139
+ `agent.stream()` returns once the LLM emits a final response even if a background task is still running. Use `agent.streamUntilIdle()` when you want the stream to stay open until every dispatched background task has completed and the LLM has had a chance to respond to the result:
140
+
141
+ ```typescript
142
+ const stream = await agent.streamUntilIdle('Research solana for me', {
143
+ memory: { thread: 't1', resource: 'u1' },
144
+ maxIdleMs: 5 * 60_000,
145
+ })
146
+
147
+ for await (const chunk of stream.fullStream) {
148
+ // chunks from the initial turn AND any continuation turns triggered by
149
+ // background task completions flow through here
150
+ }
151
+ ```
152
+
153
+ When a background task completes, the result is injected into the agent memory, `streamUntilIdle()` re-enters the agentic loop so the LLM can react to it. The stream closes when no tasks are running and no completions are queued.
154
+
155
+ `maxIdleMs` caps how long the stream waits between turns. The timer only runs while the wrapper is between turns, so a slow first token won't close the stream. The default is 5 minutes.
156
+
157
+ > **Note:** Visit [`Agent.streamUntilIdle()`](https://mastra.ai/reference/streaming/agents/streamUntilIdle) for the full API.
158
+
159
+ ### Aggregate properties
160
+
161
+ `streamUntilIdle()` returns a `MastraModelOutput` that looks like the one from `stream()`, but only `fullStream` spans the initial turn **and** any auto-continuations. Aggregate properties (`text`, `toolCalls`, `toolResults`, `finishReason`, `messageList`, `getFullOutput()`) still resolve against the **first turn's** internal buffer. If you need an aggregate view across continuations, consume `fullStream` yourself and accumulate.
162
+
163
+ ## Subagents in the background
164
+
165
+ Subagent invocations are dispatched as tool calls under the hood, so the same background configuration applies. The recommended pattern is to opt each subagent in on the supervisor, it's clearer and lets you tune `timeoutMs` per subagent in one place:
166
+
167
+ ```typescript
168
+ import { Agent } from '@mastra/core/agent'
169
+
170
+ const supervisor = new Agent({
171
+ id: 'supervisor',
172
+ instructions: 'Coordinate research and writing using the available agents.',
173
+ model: 'openai/gpt-5.4',
174
+ agents: { researchAgent, writingAgent },
175
+ backgroundTasks: {
176
+ tools: {
177
+ researchAgent: { enabled: true, timeoutMs: 900_000 },
178
+ writingAgent: { enabled: true, timeoutMs: 900_000 },
179
+ },
180
+ },
181
+ })
182
+
183
+ const stream = await supervisor.streamUntilIdle('Research AI in education and write an article', {
184
+ memory: { thread: 't1', resource: 'u1' },
185
+ })
186
+ ```
187
+
188
+ ### Inheriting from the subagent
189
+
190
+ If a subagent isn't listed under the supervisor's `backgroundTasks.tools` but has background-eligible tools of its own (either via tool-level `backgroundTasks.enabled: true` or its own `backgroundTasks.tools` entry) the framework still dispatches the entire subagent invocation as a background task. The supervisor inherits the subagent's intent: the subagent itself becomes the background task, and its inner tools run in the foreground inside the subagent's loop.
191
+
192
+ The background config used for the inherited dispatch (for example `waitTimeoutMs`) is derived from the subagent's own `backgroundTasks` config.
193
+
194
+ ```typescript
195
+ const researchAgent = new Agent({
196
+ id: 'research-agent',
197
+ description: 'Gathers factual information.',
198
+ model: 'openai/gpt-5-mini',
199
+ tools: { deepResearchTool },
200
+ backgroundTasks: {
201
+ tools: {
202
+ deepResearchTool: { enabled: true, timeoutMs: 600_000 },
203
+ },
204
+ waitTimeoutMs: 900_000,
205
+ },
206
+ })
207
+ ```
208
+
209
+ When this `researchAgent` is delegated to from a supervisor that has no backgroundTask configuration for the `researchAgent`, the supervisor still dispatches the whole `researchAgent` invocation as a background task, and `deepResearchTool` runs in the foreground inside that invocation, instead of dispatching its own nested background task.
210
+
211
+ Use this pattern when you want a subagent to behave consistently in the background regardless of which supervisor invokes it. Use the supervisor-side opt-in (above) when you want to tune background behavior centrally per supervisor.
212
+
213
+ ## Lifecycle callbacks
214
+
215
+ Each layer can register terminal-state callbacks. They don't replace one another, and success/failure hooks fire for their respective outcomes:
216
+
217
+ - Tool-level `backgroundTasks.onComplete` / `onFailed`: scoped to one tool.
218
+ - Agent-level `backgroundTasks.onTaskComplete` / `onTaskFailed`: scoped to all tasks dispatched by this agent.
219
+ - Manager-level `onTaskComplete` / `onTaskFailed`: scoped globally.
220
+
221
+ ```typescript
222
+ export const mastra = new Mastra({
223
+ storage,
224
+ backgroundTasks: {
225
+ enabled: true,
226
+ onTaskComplete: task => {
227
+ logger.info('Background task complete', { taskId: task.id, toolName: task.toolName })
228
+ },
229
+ onTaskFailed: task => {
230
+ logger.error('Background task failed', { taskId: task.id, error: task.error })
231
+ },
232
+ },
233
+ })
234
+ ```
235
+
236
+ ## Related
237
+
238
+ - [`Agent.streamUntilIdle()` reference](https://mastra.ai/reference/streaming/agents/streamUntilIdle)
239
+ - [backgroundTasks configuration reference](https://mastra.ai/reference/configuration)
240
+ - [Supervisor agents](https://mastra.ai/docs/agents/supervisor-agents)
241
+ - [Stream chunk types](https://mastra.ai/reference/streaming/ChunkType)
242
+ - [Storage](https://mastra.ai/docs/memory/storage)
@@ -72,7 +72,7 @@ Platform webhooks need a public URL to reach your local server. Use a tunnel to
72
72
  ngrok http 4111
73
73
 
74
74
  # cloudflared
75
- cloudflared tunnel --url http://localhost:4111
75
+ npx cloudflared tunnel --url http://localhost:4111
76
76
  ```
77
77
 
78
78
  Copy the generated URL and use it as the base for your webhook paths (e.g. `https://abc123.ngrok.io/api/agents/support-agent/channels/slack/webhook`).
@@ -164,6 +164,7 @@ By default, only images are sent inline (`inlineMedia: ['image/*']`). Unsupporte
164
164
 
165
165
  ## Related
166
166
 
167
+ - [Guide: Building a Slack assistant](https://mastra.ai/guides/guide/slack-assistant)
167
168
  - [Agent overview](https://mastra.ai/docs/agents/overview)
168
169
  - [Tool approval](https://mastra.ai/docs/agents/agent-approval)
169
170
  - [Channels reference](https://mastra.ai/reference/agents/channels)
@@ -300,9 +300,38 @@ Success criteria:
300
300
  })
301
301
  ```
302
302
 
303
- ## Sub-agent versioning
303
+ ## Running subagents in the background
304
304
 
305
- When using the [editor](https://mastra.ai/docs/editor/overview), you can control which stored version of each sub-agent the supervisor uses at runtime. Set version overrides on the Mastra instance or per invocation:
305
+ Subagent invocations are dispatched as tool calls, so they can run as [background tasks](https://mastra.ai/docs/agents/background-tasks). This is useful when one or more delegations are long-running and you don't want them to block the supervisor's response.
306
+
307
+ Enable the [backgroundTasks manager](https://mastra.ai/reference/configuration) on the Mastra instance, then opt subagents in on the supervisor:
308
+
309
+ ```typescript
310
+ const supervisor = new Agent({
311
+ id: 'supervisor',
312
+ instructions: 'Coordinate research and writing using the available agents.',
313
+ model: 'openai/gpt-5.4',
314
+ agents: { researchAgent, writingAgent },
315
+ backgroundTasks: {
316
+ tools: {
317
+ researchAgent: { enabled: true, timeoutMs: 900_000 },
318
+ writingAgent: { enabled: true, timeoutMs: 900_000 },
319
+ },
320
+ },
321
+ })
322
+
323
+ const stream = await supervisor.streamUntilIdle('Research AI in education and write an article', {
324
+ memory: { thread: 't1', resource: 'u1' },
325
+ })
326
+ ```
327
+
328
+ Use [`streamUntilIdle()`](https://mastra.ai/reference/streaming/agents/streamUntilIdle) instead of `stream()` so the stream stays open until the subagents complete and the supervisor has had a chance to respond to their results.
329
+
330
+ If a subagent isn't listed on the supervisor but has its own background-eligible tools, the supervisor still dispatches the subagent as a background task and inherits its config. See [Inheriting from the subagent](https://mastra.ai/docs/agents/background-tasks) for details.
331
+
332
+ ## Subagent versioning
333
+
334
+ When using the [editor](https://mastra.ai/docs/editor/overview), you can control which stored version of each subagent the supervisor uses at runtime. Set version overrides on the Mastra instance or per invocation:
306
335
 
307
336
  ```typescript
308
337
  const result = await supervisor.generate('Research and write about AI safety', {
@@ -315,13 +344,15 @@ const result = await supervisor.generate('Research and write about AI safety', {
315
344
  })
316
345
  ```
317
346
 
318
- Version overrides propagate automatically through delegation. See [Sub-agent versioning](https://mastra.ai/docs/editor/overview) for details on resolution order and server API usage.
347
+ Version overrides propagate automatically through delegation. See [Subagent versioning](https://mastra.ai/docs/editor/overview) for details on resolution order and server API usage.
319
348
 
320
349
  ## Related
321
350
 
322
- - [Sub-agent versioning](https://mastra.ai/docs/editor/overview)
351
+ - [Background tasks](https://mastra.ai/docs/agents/background-tasks)
352
+ - [Subagent versioning](https://mastra.ai/docs/editor/overview)
323
353
  - [Guide: Research coordinator](https://mastra.ai/guides/guide/research-coordinator)
324
354
  - [Agent.stream() reference](https://mastra.ai/reference/streaming/agents/stream)
355
+ - [Agent.streamUntilIdle() reference](https://mastra.ai/reference/streaming/agents/streamUntilIdle)
325
356
  - [Agent.generate() reference](https://mastra.ai/reference/agents/generate)
326
357
  - [Agent approval](https://mastra.ai/docs/agents/agent-approval)
327
358
  - [Memory in multi-agent systems](https://mastra.ai/docs/memory/overview)
@@ -290,6 +290,7 @@ Note that for subagents, you'll see two different identifiers in stream response
290
290
 
291
291
  - [`createTool` reference](https://mastra.ai/reference/tools/create-tool)
292
292
  - [`Agent.generate()` reference](https://mastra.ai/reference/agents/generate): Runtime options for tool selection, steps, and callbacks
293
+ - [Background tasks](https://mastra.ai/docs/agents/background-tasks): Run long-running tools without blocking the agent loop
293
294
  - [MCP overview](https://mastra.ai/docs/mcp/overview)
294
295
  - [Dynamic tool search](https://mastra.ai/reference/processors/tool-search-processor): Load tools on demand for agents with large tool libraries
295
296
  - [Tools with structured output](https://mastra.ai/docs/agents/structured-output): Model compatibility when combining tools and structured output
@@ -71,6 +71,7 @@ import { browser } from '../browsers'
71
71
  export const webAgent = new Agent({
72
72
  id: 'web-agent',
73
73
  name: 'Web Agent',
74
+ description: 'A web automation assistant that can navigate websites and complete tasks.',
74
75
  model: 'openai/gpt-5.4',
75
76
  browser,
76
77
  instructions:
@@ -270,6 +270,66 @@ const glutenCheckerScorer = createScorer({...})
270
270
  })
271
271
  ```
272
272
 
273
+ ## Input filtering
274
+
275
+ Agent conversations can contain hundreds of messages with tool calls, data parts, and system metadata. Most scorers only need a subset of this data. The `prepareRun` option transforms the run data before the scorer pipeline executes, reducing noise and keeping scorers focused.
276
+
277
+ ### Declarative filtering with `filterRun()`
278
+
279
+ The [`filterRun()`](https://mastra.ai/reference/evals/filter-run) utility creates a `prepareRun` function from declarative options:
280
+
281
+ ```typescript
282
+ import { createScorer, filterRun } from '@mastra/core/evals'
283
+
284
+ const toolScorer = createScorer({
285
+ id: 'tool-quality',
286
+ description: 'Evaluates tool usage quality',
287
+ type: 'agent',
288
+ prepareRun: filterRun({
289
+ partTypes: ['tool-invocation', 'text'],
290
+ maxRememberedMessages: 20,
291
+ }),
292
+ }).generateScore(({ run }) => {
293
+ // run.input.rememberedMessages has only tool and text messages, max 20
294
+ return 1
295
+ })
296
+ ```
297
+
298
+ Common options include:
299
+
300
+ - `partTypes`: Keep only messages with matching part types (e.g., `'tool-invocation'`, `'text'`, `'reasoning'`)
301
+ - `toolNames`: Keep only messages involving specific tools (e.g., `['write_file', 'execute_command']`)
302
+ - `maxRememberedMessages`: Limit context window size
303
+ - `dropRequestContext`, `dropGroundTruth`, `dropExpectedTrajectory`: Remove unused fields
304
+
305
+ See the [`filterRun()` reference](https://mastra.ai/reference/evals/filter-run) for the full list of options.
306
+
307
+ ### Custom `prepareRun` functions
308
+
309
+ For logic that `filterRun()` doesn't cover, write a `prepareRun` function directly:
310
+
311
+ ```typescript
312
+ import { createScorer } from '@mastra/core/evals'
313
+
314
+ const customScorer = createScorer({
315
+ id: 'recent-output',
316
+ description: 'Scores only the last response',
317
+ type: 'agent',
318
+ prepareRun: (run) => ({
319
+ ...run,
320
+ output: run.output.slice(-1), // Keep only the last message
321
+ requestContext: undefined,
322
+ }),
323
+ })
324
+ .generateScore(({ run }) => {
325
+ return run.output.length > 0 ? 1 : 0
326
+ })
327
+ ```
328
+
329
+ The `prepareRun` function can also be async.
330
+
331
+ > **System messages are always preserved:** `filterRun()` never filters `systemMessages` or `taggedSystemMessages`. These contain agent instructions and are critical context for scoring.
332
+
273
333
  ## Example: Create a custom scorer
274
334
 
275
335
  A custom scorer in Mastra uses `createScorer` with four core components:
@@ -0,0 +1,80 @@
1
+ # Background task streaming
2
+
3
+ **Added in:** `@mastra/core@1.28.0`
4
+
5
+ `mastra.backgroundTaskManager.stream()` returns a `ReadableStream` of [background task](https://mastra.ai/docs/agents/background-tasks) lifecycle events. Use it to monitor running tasks across the system, for example to drive a status dashboard, surface progress in your own UI, or pipe events into an SSE response.
6
+
7
+ The stream emits the same chunk types that appear inside `Agent.streamUntilIdle()` (`background-task-running`, `background-task-output`, `background-task-completed`, `background-task-failed`, `background-task-cancelled`). See [background task chunks](https://mastra.ai/reference/streaming/ChunkType) for the full payload shapes.
8
+
9
+ > **Note:** Background tasks must be [enabled on the Mastra instance](https://mastra.ai/reference/configuration) before `backgroundTaskManager` is available. When disabled, `mastra.backgroundTaskManager` is `undefined`.
10
+
11
+ ## Subscribe to all task events
12
+
13
+ Calling `stream()` with no filter returns a stream of every task event in the system. On connection, the stream emits a snapshot of all currently running tasks, then forwards live events as they happen.
14
+
15
+ ```typescript
16
+ const bgManager = mastra.backgroundTaskManager
17
+ if (!bgManager) throw new Error('Background tasks are not enabled')
18
+
19
+ const controller = new AbortController()
20
+ const stream = bgManager.stream({ abortSignal: controller.signal })
21
+
22
+ for await (const chunk of stream) {
23
+ switch (chunk.type) {
24
+ case 'background-task-running':
25
+ console.log('started', chunk.payload.taskId, chunk.payload.toolName)
26
+ break
27
+ case 'background-task-completed':
28
+ console.log('done', chunk.payload.taskId, chunk.payload.result)
29
+ break
30
+ case 'background-task-failed':
31
+ console.error('failed', chunk.payload.taskId, chunk.payload.error)
32
+ break
33
+ }
34
+ }
35
+ ```
36
+
37
+ The stream stays open until the caller's `AbortSignal` fires. Always pass an `abortSignal` so you can disconnect cleanly.
38
+
39
+ ## Filter the stream
40
+
41
+ Pass any combination of filter options to narrow the events you receive. Filters apply to both the initial snapshot and the live event subscription.
42
+
43
+ ```typescript
44
+ const stream = bgManager.stream({
45
+ agentId: 'researcher',
46
+ threadId: 't1',
47
+ resourceId: 'u1',
48
+ abortSignal: controller.signal,
49
+ })
50
+ ```
51
+
52
+ | Filter | Description |
53
+ | ------------- | --------------------------------------------------- |
54
+ | `agentId` | Only events from tasks dispatched by this agent |
55
+ | `runId` | Only events from this specific agent run |
56
+ | `threadId` | Only events from tasks scoped to this memory thread |
57
+ | `resourceId` | Only events from tasks scoped to this resource |
58
+ | `taskId` | Only events for a single task |
59
+ | `abortSignal` | Closes the stream when the signal aborts |
60
+
61
+ ## Look up task state directly
62
+
63
+ For one-off lookups instead of a live stream, use `getTask` and `listTasks`:
64
+
65
+ ```typescript
66
+ const task = await mastra.backgroundTaskManager?.getTask(taskId)
67
+ const { tasks, total } = await mastra.backgroundTaskManager?.listTasks({
68
+ status: 'running',
69
+ agentId: 'researcher',
70
+ })
71
+ ```
72
+
73
+ These read from storage rather than the pubsub stream, so they're suitable for paginated lists and detail views.
74
+
75
+ ## Related
76
+
77
+ - [Background tasks](https://mastra.ai/docs/agents/background-tasks)
78
+ - [`Agent.streamUntilIdle()` reference](https://mastra.ai/reference/streaming/agents/streamUntilIdle)
79
+ - [Background task chunks](https://mastra.ai/reference/streaming/ChunkType)
80
+ - [backgroundTasks configuration reference](https://mastra.ai/reference/configuration)
@@ -29,6 +29,8 @@ for await (const chunk of stream.textStream) {
29
29
 
30
30
  > **Info:** Visit [Agent.stream()](https://mastra.ai/reference/streaming/agents/stream) for more information.
31
31
 
32
+ > **Tip:** For agents that dispatch [background tasks](https://mastra.ai/docs/agents/background-tasks), use [`Agent.streamUntilIdle()`](https://mastra.ai/reference/streaming/agents/streamUntilIdle) to keep the stream open until those tasks complete and the agent has had a chance to respond to their results.
33
+
32
34
  ### Output from `Agent.stream()`
33
35
 
34
36
  The output streams the generated response from the agent.
@@ -129,5 +131,6 @@ A workflow stream provides access to various response properties:
129
131
  ## Related
130
132
 
131
133
  - [Streaming events](https://mastra.ai/docs/streaming/events)
134
+ - [Background tasks](https://mastra.ai/docs/agents/background-tasks)
132
135
  - [Using Agents](https://mastra.ai/docs/agents/overview)
133
136
  - [Workflows overview](https://mastra.ai/docs/workflows/overview)
@@ -21,9 +21,10 @@ Available providers:
21
21
  - [`LocalFilesystem`](https://mastra.ai/reference/workspace/local-filesystem): Stores files in a directory on disk
22
22
  - [`S3Filesystem`](https://mastra.ai/reference/workspace/s3-filesystem): Stores files in Amazon S3 or S3-compatible storage (R2, MinIO)
23
23
  - [`GCSFilesystem`](https://mastra.ai/reference/workspace/gcs-filesystem): Stores files in Google Cloud Storage
24
+ - [`AzureBlobFilesystem`](https://mastra.ai/reference/workspace/azure-blob-filesystem): Stores files in Azure Blob Storage
24
25
  - [`AgentFSFilesystem`](https://mastra.ai/reference/workspace/agentfs-filesystem): Stores files in a Turso/SQLite database via AgentFS
25
26
 
26
- > **Tip:** `LocalFilesystem` is the simplest way to get started as it requires no external services. For cloud storage, use `S3Filesystem` or `GCSFilesystem`. For database-backed storage without external services, use `AgentFSFilesystem`.
27
+ > **Tip:** `LocalFilesystem` is the simplest way to get started as it requires no external services. For cloud storage, use `S3Filesystem`, `GCSFilesystem`, or `AzureBlobFilesystem`. For database-backed storage without external services, use `AgentFSFilesystem`.
27
28
 
28
29
  ## Basic usage
29
30
 
@@ -219,6 +220,7 @@ When you configure a filesystem on a workspace, agents receive tools for reading
219
220
  - [LocalFilesystem reference](https://mastra.ai/reference/workspace/local-filesystem)
220
221
  - [S3Filesystem reference](https://mastra.ai/reference/workspace/s3-filesystem)
221
222
  - [GCSFilesystem reference](https://mastra.ai/reference/workspace/gcs-filesystem)
223
+ - [AzureBlobFilesystem reference](https://mastra.ai/reference/workspace/azure-blob-filesystem)
222
224
  - [AgentFSFilesystem reference](https://mastra.ai/reference/workspace/agentfs-filesystem)
223
225
  - [Workspace overview](https://mastra.ai/docs/workspace/overview)
224
226
  - [Sandbox](https://mastra.ai/docs/workspace/sandbox)
@@ -38,7 +38,7 @@ const workspace = new Workspace({
38
38
  sandbox: new LocalSandbox({
39
39
  workingDirectory: './workspace',
40
40
  }),
41
- skills: ['/skills'],
41
+ skills: ['skills'],
42
42
  })
43
43
  ```
44
44
 
@@ -143,7 +143,7 @@ Configure `autoIndexPaths` to automatically index files when the workspace initi
143
143
  const workspace = new Workspace({
144
144
  filesystem: new LocalFilesystem({ basePath: './workspace' }),
145
145
  bm25: true,
146
- autoIndexPaths: ['/docs', '/support/faq'],
146
+ autoIndexPaths: ['docs', 'support/faq'],
147
147
  })
148
148
 
149
149
  await workspace.init()
@@ -157,7 +157,7 @@ Glob patterns let you index specific file types:
157
157
  const workspace = new Workspace({
158
158
  filesystem: new LocalFilesystem({ basePath: './workspace' }),
159
159
  bm25: true,
160
- autoIndexPaths: ['/docs/**/*.md', '/support/**/*.txt'],
160
+ autoIndexPaths: ['docs/**/*.md', 'support/**/*.txt'],
161
161
  })
162
162
  ```
163
163
 
@@ -12,13 +12,13 @@ A skill is a folder containing:
12
12
  - `assets/`: Images and other files (optional)
13
13
 
14
14
  ```plaintext
15
- /skills
16
- /code-review
15
+ skills/
16
+ code-review/
17
17
  SKILL.md
18
- /references
18
+ references/
19
19
  style-guide.md
20
20
  pr-checklist.md
21
- /scripts
21
+ scripts/
22
22
  lint.ts
23
23
  ```
24
24
 
@@ -64,18 +64,18 @@ import { Workspace, LocalFilesystem } from '@mastra/core/workspace'
64
64
 
65
65
  const workspace = new Workspace({
66
66
  filesystem: new LocalFilesystem({ basePath: './workspace' }),
67
- skills: ['/skills'],
67
+ skills: ['skills'],
68
68
  })
69
69
  ```
70
70
 
71
- The `skills` directory is relative to your `basePath`. You can specify multiple skill directories or use glob patterns for discovery:
71
+ You can specify multiple skill directories:
72
72
 
73
73
  ```typescript
74
74
  const workspace = new Workspace({
75
75
  filesystem: new LocalFilesystem({ basePath: './workspace' }),
76
76
  skills: [
77
- '/skills', // Project skills
78
- '/team-skills', // Shared team skills
77
+ 'skills', // Project skills
78
+ 'team-skills', // Shared team skills
79
79
  ],
80
80
  })
81
81
  ```
@@ -85,7 +85,7 @@ You can also pass a direct path to a skill directory or `SKILL.md` file:
85
85
  ```typescript
86
86
  const workspace = new Workspace({
87
87
  filesystem: new LocalFilesystem({ basePath: './workspace' }),
88
- skills: ['/path/to/my-skill'],
88
+ skills: ['path/to/my-skill'],
89
89
  })
90
90
  ```
91
91
 
@@ -105,10 +105,10 @@ For dynamic skill paths based on context, pass a function:
105
105
  ```typescript
106
106
  const workspace = new Workspace({
107
107
  filesystem: new LocalFilesystem({ basePath: './workspace' }),
108
- skills: context => {
109
- const paths = ['/skills']
110
- if (context.user?.role === 'developer') {
111
- paths.push('/dev-skills')
108
+ skills: ctx => {
109
+ const paths = ['skills']
110
+ if (ctx.requestContext?.get('userRole') === 'developer') {
111
+ paths.push('dev-skills')
112
112
  }
113
113
  return paths
114
114
  },
@@ -142,7 +142,7 @@ const workspace = new Workspace({
142
142
  filesystem: new LocalFilesystem({ basePath: './workspace' }),
143
143
  skills: [
144
144
  'node_modules/@myorg/skills', // external: provides "brand-guidelines"
145
- '/skills', // local: also provides "brand-guidelines"
145
+ 'skills', // local: also provides "brand-guidelines"
146
146
  ],
147
147
  })
148
148
 
@@ -157,7 +157,7 @@ If BM25 or vector search is enabled on the workspace, skills are automatically i
157
157
  ```typescript
158
158
  const workspace = new Workspace({
159
159
  filesystem: new LocalFilesystem({ basePath: './workspace' }),
160
- skills: ['/skills'],
160
+ skills: ['skills'],
161
161
  bm25: true,
162
162
  })
163
163
  ```
@@ -174,7 +174,7 @@ import { VersionedSkillSource } from '@mastra/core/workspace'
174
174
 
175
175
  const workspace = new Workspace({
176
176
  filesystem: new LocalFilesystem({ basePath: './workspace' }),
177
- skills: ['/skills'],
177
+ skills: ['skills'],
178
178
  skillSource: new VersionedSkillSource(versionTree, blobStore, versionCreatedAt),
179
179
  })
180
180
  ```