@aws/agentcore 1.0.0-preview.1 → 1.0.0-preview.3
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/dist/agent-inspector/index.js +3 -4
- package/dist/assets/__tests__/__snapshots__/assets.snapshot.test.ts.snap +43 -15
- package/dist/assets/cdk/bin/cdk.ts +6 -1
- package/dist/assets/cdk/cdk.json +1 -1
- package/dist/assets/cdk/lib/cdk-stack.ts +18 -10
- package/dist/assets/evaluators/python-lambda/execution-role-policy.json +1 -1
- package/dist/assets/python/a2a/strands/capabilities/memory/session.py +6 -1
- package/dist/assets/python/agui/strands/capabilities/memory/session.py +6 -1
- package/dist/assets/python/http/strands/capabilities/memory/session.py +6 -1
- package/dist/cli/index.mjs +401 -395
- package/dist/schema/schemas/agent-env.d.ts +13 -0
- package/dist/schema/schemas/agent-env.d.ts.map +1 -1
- package/dist/schema/schemas/agent-env.js +20 -1
- package/dist/schema/schemas/agent-env.js.map +1 -1
- package/dist/schema/schemas/agentcore-project.d.ts +6 -0
- package/dist/schema/schemas/agentcore-project.d.ts.map +1 -1
- package/dist/schema/schemas/agentcore-project.js +1 -9
- package/dist/schema/schemas/agentcore-project.js.map +1 -1
- package/dist/schema/schemas/aws-targets.d.ts +3 -0
- package/dist/schema/schemas/aws-targets.d.ts.map +1 -1
- package/dist/schema/schemas/aws-targets.js +1 -0
- package/dist/schema/schemas/aws-targets.js.map +1 -1
- package/dist/schema/schemas/deployed-state.d.ts +26 -0
- package/dist/schema/schemas/deployed-state.d.ts.map +1 -1
- package/dist/schema/schemas/deployed-state.js +11 -1
- package/dist/schema/schemas/deployed-state.js.map +1 -1
- package/dist/schema/schemas/mcp.d.ts +2 -0
- package/dist/schema/schemas/mcp.d.ts.map +1 -1
- package/dist/schema/schemas/mcp.js +9 -1
- package/dist/schema/schemas/mcp.js.map +1 -1
- package/package.json +11 -6
- package/dist/agent-inspector/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws/agentcore",
|
|
3
|
-
"version": "1.0.0-preview.
|
|
3
|
+
"version": "1.0.0-preview.3",
|
|
4
4
|
"description": "CLI for Amazon Bedrock AgentCore",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
"test:e2e": "vitest run --project e2e",
|
|
70
70
|
"test:update-snapshots": "vitest run --project unit --update",
|
|
71
71
|
"test:tui": "npm run build:harness && vitest run --project tui",
|
|
72
|
+
"test:browser": "npx playwright test --config browser-tests/playwright.config.ts",
|
|
72
73
|
"bundle": "node scripts/bundle.mjs"
|
|
73
74
|
},
|
|
74
75
|
"dependencies": {
|
|
@@ -86,10 +87,13 @@
|
|
|
86
87
|
"@aws-sdk/client-sts": "^3.893.0",
|
|
87
88
|
"@aws-sdk/client-xray": "^3.1003.0",
|
|
88
89
|
"@aws-sdk/credential-providers": "^3.893.0",
|
|
89
|
-
"@aws/agent-inspector": "0.2.
|
|
90
|
+
"@aws/agent-inspector": "0.2.1",
|
|
90
91
|
"@commander-js/extra-typings": "^14.0.0",
|
|
91
|
-
"@opentelemetry/api": "^1.9.
|
|
92
|
+
"@opentelemetry/api": "^1.9.1",
|
|
93
|
+
"@opentelemetry/exporter-metrics-otlp-http": "^0.214.0",
|
|
92
94
|
"@opentelemetry/otlp-transformer": "^0.213.0",
|
|
95
|
+
"@opentelemetry/resources": "^2.6.1",
|
|
96
|
+
"@opentelemetry/sdk-metrics": "^2.6.1",
|
|
93
97
|
"@smithy/shared-ini-file-loader": "^4.4.2",
|
|
94
98
|
"commander": "^14.0.2",
|
|
95
99
|
"dotenv": "^17.2.3",
|
|
@@ -111,7 +115,8 @@
|
|
|
111
115
|
"@aws-sdk/client-cognito-identity-provider": "^3.1018.0",
|
|
112
116
|
"@eslint/js": "^9.39.2",
|
|
113
117
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
114
|
-
"@
|
|
118
|
+
"@playwright/test": "^1.59.1",
|
|
119
|
+
"@secretlint/secretlint-rule-preset-recommend": "^12.2.0",
|
|
115
120
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
116
121
|
"@types/js-yaml": "^4.0.9",
|
|
117
122
|
"@types/node": "^25.0.3",
|
|
@@ -122,7 +127,7 @@
|
|
|
122
127
|
"@xterm/headless": "^6.0.0",
|
|
123
128
|
"aws-cdk-lib": "^2.248.0",
|
|
124
129
|
"constructs": "^10.4.4",
|
|
125
|
-
"esbuild": "^0.
|
|
130
|
+
"esbuild": "^0.28.0",
|
|
126
131
|
"eslint": "^9.39.4",
|
|
127
132
|
"eslint-config-prettier": "^10.1.8",
|
|
128
133
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
@@ -136,7 +141,7 @@
|
|
|
136
141
|
"lint-staged": "^16.2.7",
|
|
137
142
|
"node-pty": "^1.1.0",
|
|
138
143
|
"prettier": "^3.7.4",
|
|
139
|
-
"secretlint": "^
|
|
144
|
+
"secretlint": "^12.2.0",
|
|
140
145
|
"tsx": "^4.21.0",
|
|
141
146
|
"typescript": "^5",
|
|
142
147
|
"typescript-eslint": "^8.50.1",
|