@mastra/inngest 1.4.1-alpha.0 → 1.4.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # @mastra/inngest
2
2
 
3
+ ## 1.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - You can now run ACP-compatible coding agents as Mastra tools or lightweight subagents. ACP agents support incremental response streaming and can be used anywhere Mastra accepts a `SubAgent`, including supervisor delegation and workflow steps. ([#16423](https://github.com/mastra-ai/mastra/pull/16423))
8
+
9
+ ```ts
10
+ import { createACPTool, AcpAgent } from '@mastra/acp';
11
+
12
+ export const codingTool = createACPTool({
13
+ id: 'coding-agent',
14
+ command: 'my-acp-agent',
15
+ });
16
+
17
+ export const codingAgent = new AcpAgent({
18
+ id: 'coding-agent',
19
+ command: 'my-acp-agent',
20
+ });
21
+ ```
22
+
23
+ You can also wire an `AcpAgent` into a supervisor or workflow as a `SubAgent`-compatible implementation:
24
+
25
+ ```ts
26
+ import { Agent } from '@mastra/core/agent';
27
+
28
+ export const supervisor = new Agent({
29
+ name: 'supervisor',
30
+ instructions: 'Delegate coding tasks to the ACP agent.',
31
+ model,
32
+ agents: {
33
+ codingAgent,
34
+ },
35
+ });
36
+ ```
37
+
38
+ Workflows and the Inngest workflow adapter now recognize `SubAgent`-compatible implementations when creating agent-backed workflow steps.
39
+
40
+ - Updated dependencies [[`20787de`](https://github.com/mastra-ai/mastra/commit/20787de5965234a1af28fe35f49437c537dbfa0d), [`784ad98`](https://github.com/mastra-ai/mastra/commit/784ad989549de91dc5d33ab8ef36caa6f7dcd34e), [`fceae1f`](https://github.com/mastra-ai/mastra/commit/fceae1f5f5db4722cb078a663c6eb4bd22944123), [`090a647`](https://github.com/mastra-ai/mastra/commit/090a647ba5a66d36f203f9f49457e03a1ff4e6fb), [`bf02acb`](https://github.com/mastra-ai/mastra/commit/bf02acbb8a6110f638ac844e89f1ebf04cb7fe74), [`090a647`](https://github.com/mastra-ai/mastra/commit/090a647ba5a66d36f203f9f49457e03a1ff4e6fb), [`bdb4cbf`](https://github.com/mastra-ai/mastra/commit/bdb4cbf8ba4b685d7481f28bb9dc3de6c79c9ed2), [`0fd3fbe`](https://github.com/mastra-ai/mastra/commit/0fd3fbe40fb63657aedd72f6e7b38c8e8ee6940d), [`f84447d`](https://github.com/mastra-ai/mastra/commit/f84447d6c80f3471836a9b300d246b331fb47e0d), [`a1a5b3e`](https://github.com/mastra-ai/mastra/commit/a1a5b3e42ab2ca5161ea21db59ebf28442680fa7), [`af84f57`](https://github.com/mastra-ai/mastra/commit/af84f571ed762e92e8e61c5f9a72363520914274), [`8b3c6f9`](https://github.com/mastra-ai/mastra/commit/8b3c6f90f7879833ba7d1bc70937e1d8f69d0804), [`fed0475`](https://github.com/mastra-ai/mastra/commit/fed0475ccfea31e4fc251469ac05640d0742c1f0), [`0d53730`](https://github.com/mastra-ai/mastra/commit/0d53730c1ed87ef80c87caa5701c4170ea8028e6), [`522f44d`](https://github.com/mastra-ai/mastra/commit/522f44d947214bfc06cff50599bae1ef3494880d)]:
41
+ - @mastra/core@1.34.0
42
+
3
43
  ## 1.4.1-alpha.0
4
44
 
5
45
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/inngest",
3
- "version": "1.4.1-alpha.0",
3
+ "version": "1.4.1",
4
4
  "description": "Mastra Inngest integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -51,13 +51,13 @@
51
51
  "typescript": "^6.0.3",
52
52
  "vitest": "4.1.5",
53
53
  "zod": "^4.3.6",
54
- "@internal/types-builder": "0.0.69",
55
- "@internal/workflow-test-utils": "0.0.19",
56
- "@mastra/deployer": "1.34.0-alpha.0",
54
+ "@internal/lint": "0.0.95",
55
+ "@internal/types-builder": "0.0.70",
56
+ "@mastra/deployer": "1.34.0",
57
+ "@mastra/core": "1.34.0",
58
+ "@internal/workflow-test-utils": "0.0.20",
57
59
  "@mastra/libsql": "1.10.1",
58
- "@mastra/observability": "1.12.0",
59
- "@mastra/core": "1.34.0-alpha.0",
60
- "@internal/lint": "0.0.94"
60
+ "@mastra/observability": "1.12.0"
61
61
  },
62
62
  "peerDependencies": {
63
63
  "@mastra/core": ">=1.13.2-0 <2.0.0-0",