@aws/agentcore 0.14.1 → 0.15.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 (28) hide show
  1. package/README.md +19 -7
  2. package/dist/assets/__tests__/__snapshots__/assets.snapshot.test.ts.snap +6 -3
  3. package/dist/assets/cdk/test/cdk.test.ts +1 -0
  4. package/dist/assets/datasets/predefined-v1.jsonl +3 -0
  5. package/dist/assets/datasets/simulated-v1.jsonl +3 -0
  6. package/dist/assets/python/a2a/strands/capabilities/memory/session.py +1 -1
  7. package/dist/assets/python/agui/strands/capabilities/memory/session.py +1 -1
  8. package/dist/assets/python/http/strands/capabilities/memory/session.py +1 -1
  9. package/dist/cli/index.mjs +602 -562
  10. package/dist/schema/schemas/agentcore-project.d.ts +63 -0
  11. package/dist/schema/schemas/agentcore-project.d.ts.map +1 -1
  12. package/dist/schema/schemas/agentcore-project.js +63 -2
  13. package/dist/schema/schemas/agentcore-project.js.map +1 -1
  14. package/dist/schema/schemas/deployed-state.d.ts +26 -0
  15. package/dist/schema/schemas/deployed-state.d.ts.map +1 -1
  16. package/dist/schema/schemas/deployed-state.js +10 -1
  17. package/dist/schema/schemas/deployed-state.js.map +1 -1
  18. package/dist/schema/schemas/primitives/dataset.d.ts +48 -0
  19. package/dist/schema/schemas/primitives/dataset.d.ts.map +1 -0
  20. package/dist/schema/schemas/primitives/dataset.js +58 -0
  21. package/dist/schema/schemas/primitives/dataset.js.map +1 -0
  22. package/dist/schema/schemas/primitives/index.d.ts +2 -0
  23. package/dist/schema/schemas/primitives/index.d.ts.map +1 -1
  24. package/dist/schema/schemas/primitives/index.js +5 -1
  25. package/dist/schema/schemas/primitives/index.js.map +1 -1
  26. package/npm-shrinkwrap.json +16604 -0
  27. package/package.json +4 -2
  28. package/scripts/bundle.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws/agentcore",
3
- "version": "0.14.1",
3
+ "version": "0.15.0",
4
4
  "description": "CLI for Amazon Bedrock AgentCore",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -41,6 +41,7 @@
41
41
  "files": [
42
42
  "dist",
43
43
  "scripts",
44
+ "npm-shrinkwrap.json",
44
45
  "!dist/mcp-harness"
45
46
  ],
46
47
  "scripts": {
@@ -78,7 +79,7 @@
78
79
  "@aws-sdk/client-bedrock": "^3.1012.0",
79
80
  "@aws-sdk/client-bedrock-agent": "^3.1012.0",
80
81
  "@aws-sdk/client-bedrock-agentcore": "^3.1020.0",
81
- "@aws-sdk/client-bedrock-agentcore-control": "^3.1039.0",
82
+ "@aws-sdk/client-bedrock-agentcore-control": "^3.1048.0",
82
83
  "@aws-sdk/client-bedrock-runtime": "^3.893.0",
83
84
  "@aws-sdk/client-cloudformation": "^3.893.0",
84
85
  "@aws-sdk/client-cloudwatch-logs": "^3.893.0",
@@ -98,6 +99,7 @@
98
99
  "@smithy/shared-ini-file-loader": "^4.4.2",
99
100
  "commander": "^14.0.2",
100
101
  "dotenv": "^17.2.3",
102
+ "fast-json-stable-stringify": "^2.1.0",
101
103
  "fflate": "^0.8.2",
102
104
  "handlebars": "^4.7.8",
103
105
  "ink": "^6.6.0",
@@ -158,7 +158,7 @@ const cliTarballPath = path.join(cliRoot, cliTarballName);
158
158
 
159
159
  if (fs.existsSync(cliTarballPath)) {
160
160
  log(`Done! Tarball: ${cliTarballPath}`);
161
- log(`Install with: npm install ${cliTarballPath}`);
161
+ log(`Install with: npm install -g ${cliTarballPath}`);
162
162
  log('When you run agentcore create, the bundled CDK constructs will be installed automatically.');
163
163
  } else {
164
164
  log(`Done! Check ${cliRoot} for the .tgz file.`);