@mastra/agentcore 0.5.0-alpha.0 → 0.5.0

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/README.md +10 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @mastra/agentcore
2
2
 
3
- AWS Bedrock AgentCore Runtime sandbox provider for Mastra workspaces.
3
+ Execute commands in AWS Bedrock AgentCore Runtime sessions from Mastra workspaces, with session management, environment variables, and file operations.
4
4
 
5
5
  ## Installation
6
6
 
@@ -28,8 +28,14 @@ const result = await workspace.sandbox?.executeCommand?.('npm', ['test'], {
28
28
  });
29
29
  ```
30
30
 
31
- `AgentCoreRuntimeSandbox` uses `InvokeAgentRuntimeCommand` to run one-shot shell commands inside an existing AgentCore Runtime session. It does not provide background process management or filesystem mounts.
31
+ ## Documentation
32
32
 
33
- By default, `destroy()` does not stop the AgentCore Runtime session because sessions can be shared with other AgentCore invocations. Call `stopRuntimeSession()` explicitly, or set `stopSessionOnLifecycle: true`, when the sandbox owns the session and should clean it up.
33
+ - [AgentCore](https://mastra.ai/integrations/sandboxes/agentcore)
34
34
 
35
- AgentCore Code Interpreter is a separate AgentCore service and is not part of this runtime sandbox provider.
35
+ ## Changelog
36
+
37
+ See the [package changelog](https://github.com/mastra-ai/mastra/blob/main/workspaces/agentcore/CHANGELOG.md) for version history and release notes.
38
+
39
+ ## Support
40
+
41
+ We have an [open community Discord](https://discord.gg/mastra-ai). Come and say hello and let us know if you have any questions or need any help getting things running.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/agentcore",
3
- "version": "0.5.0-alpha.0",
3
+ "version": "0.5.0",
4
4
  "description": "AWS Bedrock AgentCore Runtime sandbox provider for Mastra workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -31,9 +31,9 @@
31
31
  "tsdown": "0.22.9",
32
32
  "typescript": "^7.0.2",
33
33
  "vitest": "4.1.10",
34
- "@internal/lint": "0.0.129",
35
- "@internal/types-builder": "0.0.104",
36
- "@mastra/core": "1.64.0-alpha.2"
34
+ "@internal/lint": "0.0.130",
35
+ "@internal/types-builder": "0.0.105",
36
+ "@mastra/core": "1.64.0"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@mastra/core": ">=1.12.0-0 <2.0.0-0"