@mastra/openai 0.1.0-alpha.1

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/CHANGELOG.md ADDED
@@ -0,0 +1,37 @@
1
+ # @mastra/openai
2
+
3
+ ## 0.1.0-alpha.1
4
+
5
+ ### Minor Changes
6
+
7
+ - Added `@mastra/openai`, a new package for using OpenAI Agents SDK agents in Mastra. ([#17525](https://github.com/mastra-ai/mastra/pull/17525))
8
+
9
+ `OpenAISDKAgent` lets you register an OpenAI Agents SDK agent with Mastra, call it with Mastra-compatible `generate()` and `stream()` methods, and keep usage and tracing data connected to the Mastra run.
10
+
11
+ ```ts
12
+ import { OpenAISDKAgent } from '@mastra/openai';
13
+
14
+ export const openaiAgent = new OpenAISDKAgent({
15
+ id: 'openai-sdk-agent',
16
+ name: 'OpenAI SDK Agent',
17
+ description: 'Use OpenAI Agents SDK through Mastra.',
18
+ sdkOptions: {
19
+ name: 'Repository assistant',
20
+ instructions: 'Answer clearly and cite the relevant files.',
21
+ model: '__GATEWAY_OPENAI_MODEL_BASE__',
22
+ },
23
+ });
24
+ ```
25
+
26
+ Use `sdkOptions` when you want Mastra to create the OpenAI SDK agent. Pass `agent` when your app already creates and owns the SDK agent.
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies [[`d468acb`](https://github.com/mastra-ai/mastra/commit/d468acb07aec1bb19a2cb0ada8042b05b46746b2), [`e9be4e7`](https://github.com/mastra-ai/mastra/commit/e9be4e747ec3d8b65548bff92f9377db06105376), [`d53cfc2`](https://github.com/mastra-ai/mastra/commit/d53cfc2c7f8d78343a4aa84ec4e129ba25f3325e), [`65799d4`](https://github.com/mastra-ai/mastra/commit/65799d4d549e5ebb9c848fbe3f51ac090f64becf), [`c268c89`](https://github.com/mastra-ai/mastra/commit/c268c89f4c63a93ee474d3cffdf3ea60bf00d4f2), [`d468acb`](https://github.com/mastra-ai/mastra/commit/d468acb07aec1bb19a2cb0ada8042b05b46746b2), [`0c72f03`](https://github.com/mastra-ai/mastra/commit/0c72f032abb13254df5a7856d64be2f207b8006d), [`3b45ea9`](https://github.com/mastra-ai/mastra/commit/3b45ea95015557a6cb9d70dc5252af54ab1b78ac), [`f084be1`](https://github.com/mastra-ai/mastra/commit/f084be1fcbe33ad7480913e44d6130c421c0976f)]:
31
+ - @mastra/core@1.42.0-alpha.0
32
+
33
+ ## 0.1.0-alpha.0
34
+
35
+ ### Initial release
36
+
37
+ - Added `OpenAISDKAgent` for registering OpenAI Agents SDK agents with Mastra.
package/LICENSE.md ADDED
@@ -0,0 +1,30 @@
1
+ Portions of this software are licensed as follows:
2
+
3
+ - All content that resides under any directory named "ee/" within this
4
+ repository, including but not limited to:
5
+ - `packages/core/src/auth/ee/`
6
+ - `packages/server/src/server/auth/ee/`
7
+ is licensed under the license defined in `ee/LICENSE`.
8
+
9
+ - All third-party components incorporated into the Mastra Software are
10
+ licensed under the original license provided by the owner of the
11
+ applicable component.
12
+
13
+ - Content outside of the above-mentioned directories or restrictions is
14
+ available under the "Apache License 2.0" as defined below.
15
+
16
+ # Apache License 2.0
17
+
18
+ Copyright (c) 2025 Kepler Software, Inc.
19
+
20
+ Licensed under the Apache License, Version 2.0 (the "License");
21
+ you may not use this file except in compliance with the License.
22
+ You may obtain a copy of the License at
23
+
24
+ http://www.apache.org/licenses/LICENSE-2.0
25
+
26
+ Unless required by applicable law or agreed to in writing, software
27
+ distributed under the License is distributed on an "AS IS" BASIS,
28
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29
+ See the License for the specific language governing permissions and
30
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,92 @@
1
+ # @mastra/openai
2
+
3
+ `@mastra/openai` connects Mastra to the OpenAI Agents SDK. Use it when you want to register an OpenAI SDK agent with Mastra and call it through Mastra-compatible `generate()` and `stream()` methods.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @mastra/openai @openai/agents
9
+ ```
10
+
11
+ ## Overview
12
+
13
+ The package exports `OpenAISDKAgent`, a Mastra `Agent` wrapper around the OpenAI Agents SDK run loop.
14
+
15
+ `OpenAISDKAgent` keeps the OpenAI SDK run loop in charge. Mastra receives compatible outputs, usage data, and tracing data for the run.
16
+
17
+ ## Create an OpenAI SDK agent
18
+
19
+ Pass OpenAI Agents SDK configuration through `sdkOptions`. `OpenAISDKAgent` creates the SDK agent on first use.
20
+
21
+ ```typescript
22
+ import { OpenAISDKAgent } from '@mastra/openai';
23
+
24
+ export const openaiAgent = new OpenAISDKAgent({
25
+ id: 'openai-sdk-agent',
26
+ name: 'OpenAI SDK Agent',
27
+ description: 'Use OpenAI Agents SDK through Mastra.',
28
+ sdkOptions: {
29
+ name: 'Repository assistant',
30
+ instructions: 'Answer clearly and cite the relevant files.',
31
+ model: '__GATEWAY_OPENAI_MODEL_BASE__',
32
+ },
33
+ });
34
+ ```
35
+
36
+ You can also pass an existing OpenAI SDK agent when your app already creates or owns it.
37
+
38
+ ```typescript
39
+ import { Agent as OpenAIAgent } from '@openai/agents';
40
+ import { OpenAISDKAgent } from '@mastra/openai';
41
+
42
+ const sdkAgent = new OpenAIAgent({
43
+ name: 'Repository assistant',
44
+ instructions: 'Answer clearly and cite the relevant files.',
45
+ model: '__GATEWAY_OPENAI_MODEL_BASE__',
46
+ });
47
+
48
+ export const openaiAgent = new OpenAISDKAgent({
49
+ id: 'openai-sdk-agent',
50
+ description: 'Use OpenAI Agents SDK through Mastra.',
51
+ agent: sdkAgent,
52
+ });
53
+ ```
54
+
55
+ You can register the wrapper anywhere Mastra accepts an `Agent`.
56
+
57
+ ```typescript
58
+ import { Mastra } from '@mastra/core/mastra';
59
+
60
+ export const mastra = new Mastra({
61
+ agents: {
62
+ openaiAgent,
63
+ },
64
+ });
65
+ ```
66
+
67
+ ## Run the agent
68
+
69
+ ```typescript
70
+ const result = await openaiAgent.generate('Summarize the latest changes in this repository.', {
71
+ runId: 'openai-run',
72
+ maxSteps: 3,
73
+ });
74
+
75
+ console.log(result.text);
76
+ ```
77
+
78
+ ```typescript
79
+ const stream = await openaiAgent.stream('Review this package for test gaps.');
80
+
81
+ for await (const chunk of stream.fullStream) {
82
+ if (chunk.type === 'text-delta') {
83
+ process.stdout.write(chunk.payload.text);
84
+ }
85
+ }
86
+ ```
87
+
88
+ ## Configure OpenAI
89
+
90
+ `OpenAISDKAgent` forwards `sdkOptions` to the OpenAI SDK `Agent` constructor when `agent` is not provided. These include `name`, `instructions`, `model`, `tools`, `handoffs`, guardrails, and other OpenAI Agents SDK agent settings.
91
+
92
+ Mastra `generate()` and `stream()` execution options drive the run. `maxSteps` maps to OpenAI `maxTurns`, and `abortSignal` maps to OpenAI `signal`.
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: mastra-openai
3
+ description: Documentation for @mastra/openai. Use when working with @mastra/openai APIs, configuration, or implementation.
4
+ metadata:
5
+ package: "@mastra/openai"
6
+ version: "0.1.0-alpha.1"
7
+ ---
8
+
9
+ ## When to use
10
+
11
+ Use this skill whenever you are working with @mastra/openai to obtain the domain-specific knowledge.
12
+
13
+ ## How to use
14
+
15
+ Read the individual reference documents for detailed explanations and code examples.
16
+
17
+ ### Docs
18
+
19
+ - [Memory processors](references/docs-memory-memory-processors.md) - Learn how to use memory processors in Mastra to filter, trim, and transform messages before they're sent to the language model to manage context window limits.
20
+
21
+
22
+ Read [assets/SOURCE_MAP.json](assets/SOURCE_MAP.json) for source code references.
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": "0.1.0-alpha.1",
3
+ "package": "@mastra/openai",
4
+ "exports": {},
5
+ "modules": {}
6
+ }
@@ -0,0 +1,314 @@
1
+ # Memory processors
2
+
3
+ Memory processors transform and filter messages as they pass through an agent with memory enabled. They manage context window limits, remove unnecessary content, and optimize the information sent to the language model.
4
+
5
+ When memory is enabled on an agent, Mastra adds memory processors to the agent's processor pipeline. These processors retrieve message history, working memory, and semantically relevant messages, then persist new messages after the model responds.
6
+
7
+ Memory processors are [processors](https://mastra.ai/docs/agents/processors) that operate specifically on memory-related messages and state.
8
+
9
+ ## Built-in memory processors
10
+
11
+ Mastra automatically adds these processors when memory is enabled:
12
+
13
+ ### `MessageHistory`
14
+
15
+ Retrieves message history and persists new messages.
16
+
17
+ **When you configure:**
18
+
19
+ ```typescript
20
+ memory: new Memory({
21
+ lastMessages: 10,
22
+ })
23
+ ```
24
+
25
+ **Mastra internally:**
26
+
27
+ 1. Creates a `MessageHistory` processor with `limit: 10`
28
+ 2. Adds it to the agent's input processors (runs before the LLM)
29
+ 3. Adds it to the agent's output processors (runs after the LLM)
30
+
31
+ **What it does:**
32
+
33
+ - **Input**: Fetches the last 10 messages from storage and prepends them to the conversation
34
+ - **Output**: Persists new messages to storage after the model responds
35
+
36
+ **Example:**
37
+
38
+ ```typescript
39
+ import { Agent } from '@mastra/core/agent'
40
+ import { Memory } from '@mastra/memory'
41
+ import { LibSQLStore } from '@mastra/libsql'
42
+ import { openai } from '@ai-sdk/openai'
43
+
44
+ const agent = new Agent({
45
+ id: 'test-agent',
46
+ name: 'Test Agent',
47
+ instructions: 'You are a helpful assistant',
48
+ model: 'openai/gpt-5.5',
49
+ memory: new Memory({
50
+ storage: new LibSQLStore({
51
+ id: 'memory-store',
52
+ url: 'file:memory.db',
53
+ }),
54
+ lastMessages: 10, // MessageHistory processor automatically added
55
+ }),
56
+ })
57
+ ```
58
+
59
+ ### `SemanticRecall`
60
+
61
+ Retrieves semantically relevant messages based on the current input and creates embeddings for new messages.
62
+
63
+ **When you configure:**
64
+
65
+ ```typescript
66
+ memory: new Memory({
67
+ semanticRecall: { enabled: true },
68
+ vector: myVectorStore,
69
+ embedder: myEmbedder,
70
+ })
71
+ ```
72
+
73
+ **Mastra internally:**
74
+
75
+ 1. Creates a `SemanticRecall` processor
76
+ 2. Adds it to the agent's input processors (runs before the LLM)
77
+ 3. Adds it to the agent's output processors (runs after the LLM)
78
+ 4. Requires both a vector store and embedder to be configured
79
+
80
+ **What it does:**
81
+
82
+ - **Input**: Performs vector similarity search to find relevant past messages and prepends them to the conversation
83
+ - **Output**: Creates embeddings for new messages and stores them in the vector store for future retrieval
84
+
85
+ **Example:**
86
+
87
+ ```typescript
88
+ import { Agent } from '@mastra/core/agent'
89
+ import { Memory } from '@mastra/memory'
90
+ import { LibSQLStore } from '@mastra/libsql'
91
+ import { PineconeVector } from '@mastra/pinecone'
92
+ import { OpenAIEmbedder } from '@mastra/openai'
93
+ import { openai } from '@ai-sdk/openai'
94
+
95
+ const agent = new Agent({
96
+ name: 'semantic-agent',
97
+ instructions: 'You are a helpful assistant with semantic memory',
98
+ model: 'openai/gpt-5.5',
99
+ memory: new Memory({
100
+ storage: new LibSQLStore({
101
+ id: 'memory-store',
102
+ url: 'file:memory.db',
103
+ }),
104
+ vector: new PineconeVector({
105
+ id: 'memory-vector',
106
+ apiKey: process.env.PINECONE_API_KEY!,
107
+ }),
108
+ embedder: new OpenAIEmbedder({
109
+ model: 'text-embedding-3-small',
110
+ apiKey: process.env.OPENAI_API_KEY!,
111
+ }),
112
+ semanticRecall: { enabled: true }, // SemanticRecall processor automatically added
113
+ }),
114
+ })
115
+ ```
116
+
117
+ ### `WorkingMemory`
118
+
119
+ Manages working memory state across conversations.
120
+
121
+ **When you configure:**
122
+
123
+ ```typescript
124
+ memory: new Memory({
125
+ workingMemory: { enabled: true },
126
+ })
127
+ ```
128
+
129
+ **Mastra internally:**
130
+
131
+ 1. Creates a `WorkingMemory` processor
132
+ 2. Adds it to the agent's input processors (runs before the LLM)
133
+ 3. Requires a storage adapter to be configured
134
+
135
+ **What it does:**
136
+
137
+ - **Input**: Retrieves working memory state for the current thread and prepends it to the conversation
138
+ - **Output**: No output processing
139
+
140
+ **Example:**
141
+
142
+ ```typescript
143
+ import { Agent } from '@mastra/core/agent'
144
+ import { Memory } from '@mastra/memory'
145
+ import { LibSQLStore } from '@mastra/libsql'
146
+ import { openai } from '@ai-sdk/openai'
147
+
148
+ const agent = new Agent({
149
+ name: 'working-memory-agent',
150
+ instructions: 'You are an assistant with working memory',
151
+ model: 'openai/gpt-5.5',
152
+ memory: new Memory({
153
+ storage: new LibSQLStore({
154
+ id: 'memory-store',
155
+ url: 'file:memory.db',
156
+ }),
157
+ workingMemory: { enabled: true }, // WorkingMemory processor automatically added
158
+ }),
159
+ })
160
+ ```
161
+
162
+ ## Manual control and deduplication
163
+
164
+ If you manually add a memory processor to `inputProcessors` or `outputProcessors`, Mastra **won't** automatically add it. This gives you full control over processor ordering:
165
+
166
+ ```typescript
167
+ import { Agent } from '@mastra/core/agent'
168
+ import { Memory } from '@mastra/memory'
169
+ import { MessageHistory } from '@mastra/core/processors'
170
+ import { TokenLimiter } from '@mastra/core/processors'
171
+ import { LibSQLStore } from '@mastra/libsql'
172
+ import { openai } from '@ai-sdk/openai'
173
+
174
+ // Custom MessageHistory with different configuration
175
+ const customMessageHistory = new MessageHistory({
176
+ storage: new LibSQLStore({ id: 'memory-store', url: 'file:memory.db' }),
177
+ lastMessages: 20,
178
+ })
179
+
180
+ const agent = new Agent({
181
+ name: 'custom-memory-agent',
182
+ instructions: 'You are a helpful assistant',
183
+ model: 'openai/gpt-5.5',
184
+ memory: new Memory({
185
+ storage: new LibSQLStore({ id: 'memory-store', url: 'file:memory.db' }),
186
+ lastMessages: 10, // This would normally add MessageHistory(10)
187
+ }),
188
+ inputProcessors: [
189
+ customMessageHistory, // Your custom one is used instead
190
+ new TokenLimiter({ limit: 4000 }), // Runs after your custom MessageHistory
191
+ ],
192
+ })
193
+ ```
194
+
195
+ ## Processor execution order
196
+
197
+ Understanding the execution order is important when combining guardrails with memory:
198
+
199
+ ### Input Processors
200
+
201
+ ```text
202
+ [Memory Processors] → [Your inputProcessors]
203
+ ```
204
+
205
+ 1. **Memory processors run FIRST**: `WorkingMemory`, `MessageHistory`, `SemanticRecall`
206
+ 2. **Your input processors run AFTER**: guardrails, filters, validators
207
+
208
+ This means memory loads message history before your processors can validate or filter the input.
209
+
210
+ ### Output Processors
211
+
212
+ ```text
213
+ [Your outputProcessors] → [Memory Processors]
214
+ ```
215
+
216
+ 1. **Your output processors run FIRST**: guardrails, filters, validators
217
+ 2. **Memory processors run AFTER**: `SemanticRecall` (embeddings), `MessageHistory` (persistence)
218
+
219
+ This ordering is designed to be **safe by default**: if your output guardrail calls `abort()`, the memory processors never run and **no messages are saved**.
220
+
221
+ ## Guardrails and memory
222
+
223
+ The default execution order provides safe guardrail behavior:
224
+
225
+ ### Output guardrails (recommended)
226
+
227
+ Output guardrails run **before** memory processors save messages. If a guardrail aborts:
228
+
229
+ - The tripwire is triggered
230
+ - Memory processors are skipped
231
+ - **No messages are persisted to storage**
232
+
233
+ ```typescript
234
+ import { Agent } from '@mastra/core/agent'
235
+ import { Memory } from '@mastra/memory'
236
+ import { openai } from '@ai-sdk/openai'
237
+
238
+ // Output guardrail that blocks inappropriate content
239
+ const contentBlocker = {
240
+ id: 'content-blocker',
241
+ processOutputResult: async ({ messages, abort }) => {
242
+ const hasInappropriateContent = messages.some(msg => containsBadContent(msg))
243
+ if (hasInappropriateContent) {
244
+ abort('Content blocked by guardrail')
245
+ }
246
+ return messages
247
+ },
248
+ }
249
+
250
+ const agent = new Agent({
251
+ name: 'safe-agent',
252
+ instructions: 'You are a helpful assistant',
253
+ model: 'openai/gpt-5.5',
254
+ memory: new Memory({ lastMessages: 10 }),
255
+ // Your guardrail runs BEFORE memory saves
256
+ outputProcessors: [contentBlocker],
257
+ })
258
+
259
+ // If the guardrail aborts, nothing is saved to memory
260
+ const result = await agent.generate('Hello')
261
+ if (result.tripwire) {
262
+ console.log('Blocked:', result.tripwire.reason)
263
+ // Memory is empty - no messages were persisted
264
+ }
265
+ ```
266
+
267
+ ### Input guardrails
268
+
269
+ Input guardrails run **after** memory processors load history. If a guardrail aborts:
270
+
271
+ - The tripwire is triggered
272
+ - The LLM is never called
273
+ - Output processors (including memory persistence) are skipped
274
+ - **No messages are persisted to storage**
275
+
276
+ ```typescript
277
+ // Input guardrail that validates user input
278
+ const inputValidator = {
279
+ id: 'input-validator',
280
+ processInput: async ({ messages, abort }) => {
281
+ const lastUserMessage = messages.findLast(m => m.role === 'user')
282
+ if (isInvalidInput(lastUserMessage)) {
283
+ abort('Invalid input detected')
284
+ }
285
+ return messages
286
+ },
287
+ }
288
+
289
+ const agent = new Agent({
290
+ name: 'validated-agent',
291
+ instructions: 'You are a helpful assistant',
292
+ model: 'openai/gpt-5.5',
293
+ memory: new Memory({ lastMessages: 10 }),
294
+ // Your guardrail runs AFTER memory loads history
295
+ inputProcessors: [inputValidator],
296
+ })
297
+ ```
298
+
299
+ ### Summary
300
+
301
+ | Guardrail Type | When it runs | If it aborts |
302
+ | -------------- | -------------------------- | ----------------------------- |
303
+ | Input | After memory loads history | LLM not called, nothing saved |
304
+ | Output | Before memory saves | Nothing saved to storage |
305
+
306
+ Both scenarios are safe - guardrails prevent inappropriate content from being persisted to memory
307
+
308
+ ## Related documentation
309
+
310
+ - [Processors](https://mastra.ai/docs/agents/processors): General processor concepts and custom processor creation
311
+ - [Guardrails](https://mastra.ai/docs/agents/guardrails): Security and validation processors
312
+ - [Memory Overview](https://mastra.ai/docs/memory/overview): Memory types and configuration
313
+
314
+ When creating custom processors avoid mutating the input `messages` array or its objects directly.