@aws/nx-plugin 0.64.1 → 0.65.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 (32) hide show
  1. package/LICENSE-THIRD-PARTY +198 -132
  2. package/README.md +6 -3
  3. package/generators.json +6 -0
  4. package/package.json +13 -13
  5. package/sdk/ts.d.ts +2 -0
  6. package/sdk/ts.js +20 -17
  7. package/sdk/ts.js.map +1 -1
  8. package/src/infra/app/__snapshots__/generator.spec.ts.snap +31 -31
  9. package/src/preset/__snapshots__/generator.spec.ts.snap +5 -3
  10. package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +3 -3
  11. package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +8 -8
  12. package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +5 -5
  13. package/src/ts/nx-plugin/__snapshots__/generator.spec.ts.snap +1 -1
  14. package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +93 -49
  15. package/src/ts/strands-agent/__snapshots__/generator.spec.ts.snap +1035 -0
  16. package/src/ts/strands-agent/files/app/agent-core-mcp-client.ts.template +132 -0
  17. package/src/ts/strands-agent/files/app/agent-core-trpc-client.ts.template +124 -0
  18. package/src/ts/strands-agent/files/app/agent.ts.template +20 -0
  19. package/src/ts/strands-agent/files/app/client.ts.template +28 -0
  20. package/src/ts/strands-agent/files/app/index.ts.template +54 -0
  21. package/src/ts/strands-agent/files/app/init.ts.template +8 -0
  22. package/src/ts/strands-agent/files/app/router.ts.template +34 -0
  23. package/src/ts/strands-agent/files/app/schema/z-async-iterable.ts.template +77 -0
  24. package/src/ts/strands-agent/files/deploy/Dockerfile.template +16 -0
  25. package/src/ts/strands-agent/generator.d.ts +10 -0
  26. package/src/ts/strands-agent/generator.js +115 -0
  27. package/src/ts/strands-agent/generator.js.map +1 -0
  28. package/src/ts/strands-agent/schema.d.ts +15 -0
  29. package/src/ts/strands-agent/schema.json +41 -0
  30. package/src/utils/versions.d.ts +58 -55
  31. package/src/utils/versions.js +57 -54
  32. package/src/utils/versions.js.map +1 -1
@@ -0,0 +1,41 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "$id": "ts#strands-agent",
4
+ "title": "ts#strands-agent",
5
+ "description": "Add a Strands Agent to a TypeScript project",
6
+ "type": "object",
7
+ "properties": {
8
+ "project": {
9
+ "type": "string",
10
+ "description": "The project to add the Strands Agent to",
11
+ "$default": {
12
+ "$source": "argv",
13
+ "index": 0
14
+ },
15
+ "x-prompt": "Select the TypeScript project to add the Strands Agent to",
16
+ "x-dropdown": "projects"
17
+ },
18
+ "computeType": {
19
+ "type": "string",
20
+ "description": "The type of compute to host your Strands Agent.",
21
+ "x-prompt": "How would you like to host your Strands Agent server?",
22
+ "enum": ["BedrockAgentCoreRuntime", "None"],
23
+ "default": "BedrockAgentCoreRuntime",
24
+ "x-priority": "important"
25
+ },
26
+ "name": {
27
+ "type": "string",
28
+ "description": "The name of your Strands Agent (default: agent)",
29
+ "x-prompt": "What would you like to call your Strands Agent? (default: agent)"
30
+ },
31
+ "iacProvider": {
32
+ "type": "string",
33
+ "description": "The preferred IaC provider. By default this is inherited from your initial selection.",
34
+ "enum": ["Inherit", "CDK", "Terraform"],
35
+ "x-priority": "important",
36
+ "default": "Inherit",
37
+ "x-prompt": "Which provider would you like to manage your infrastructure? (default: Inherit)"
38
+ }
39
+ },
40
+ "required": ["project"]
41
+ }
@@ -6,77 +6,80 @@
6
6
  * Versons for TypeScript dependencies added by generators
7
7
  */
8
8
  export declare const TS_VERSIONS: {
9
- readonly '@aws-sdk/client-cognito-identity': "3.940.0";
10
- readonly '@aws-sdk/client-dynamodb': "3.940.0";
11
- readonly '@aws-sdk/credential-providers': "3.940.0";
12
- readonly '@aws-sdk/credential-provider-cognito-identity': "3.940.0";
9
+ readonly '@aws-sdk/client-cognito-identity': "3.958.0";
10
+ readonly '@aws-sdk/client-dynamodb': "3.958.0";
11
+ readonly '@aws-sdk/credential-providers': "3.958.0";
12
+ readonly '@aws-sdk/credential-provider-cognito-identity': "3.958.0";
13
13
  readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
14
14
  readonly '@aws-smithy/server-node': "1.0.0-alpha.10";
15
- readonly '@aws-lambda-powertools/logger': "2.29.0";
16
- readonly '@aws-lambda-powertools/metrics': "2.29.0";
17
- readonly '@aws-lambda-powertools/tracer': "2.29.0";
18
- readonly '@aws-lambda-powertools/parser': "2.29.0";
15
+ readonly '@aws-lambda-powertools/logger': "2.30.0";
16
+ readonly '@aws-lambda-powertools/metrics': "2.30.0";
17
+ readonly '@aws-lambda-powertools/tracer': "2.30.0";
18
+ readonly '@aws-lambda-powertools/parser': "2.30.0";
19
19
  readonly '@middy/core': "6.4.5";
20
20
  readonly '@nxlv/python': "21.2.0";
21
21
  readonly '@nx-extend/terraform': "9.0.1";
22
- readonly '@nx/devkit': "22.1.3";
23
- readonly '@nx/react': "22.1.3";
24
- readonly 'create-nx-workspace': "22.1.3";
25
- readonly '@modelcontextprotocol/sdk': "1.25.1";
22
+ readonly '@nx/devkit': "22.3.3";
23
+ readonly '@nx/react': "22.3.3";
24
+ readonly 'create-nx-workspace': "22.3.3";
25
+ readonly '@modelcontextprotocol/sdk': "1.25.2";
26
26
  readonly '@modelcontextprotocol/inspector': "0.18.0";
27
- readonly '@tanstack/react-router': "1.139.7";
28
- readonly '@tanstack/router-plugin': "1.139.7";
29
- readonly '@tanstack/router-generator': "1.139.7";
30
- readonly '@tanstack/virtual-file-routes': "1.139.0";
31
- readonly '@tanstack/router-utils': "1.139.0";
32
- readonly '@cloudscape-design/board-components': "3.0.130";
33
- readonly '@cloudscape-design/components': "3.0.1144";
27
+ readonly '@strands-agents/sdk': "0.1.5";
28
+ readonly '@tanstack/react-router': "1.144.0";
29
+ readonly '@tanstack/router-plugin': "1.145.2";
30
+ readonly '@tanstack/router-generator': "1.145.2";
31
+ readonly '@tanstack/virtual-file-routes': "1.141.0";
32
+ readonly '@tanstack/router-utils': "1.143.11";
33
+ readonly '@cloudscape-design/board-components': "3.0.136";
34
+ readonly '@cloudscape-design/components': "3.0.1165";
34
35
  readonly '@cloudscape-design/global-styles': "1.0.49";
35
- readonly '@tanstack/react-query': "5.90.11";
36
- readonly '@tanstack/react-query-devtools': "5.91.1";
37
- readonly '@trpc/tanstack-react-query': "11.7.2";
38
- readonly '@trpc/client': "11.7.2";
39
- readonly '@trpc/server': "11.7.2";
40
- readonly '@types/node': "22.19.1";
36
+ readonly '@tanstack/react-query': "5.90.16";
37
+ readonly '@tanstack/react-query-devtools': "5.91.2";
38
+ readonly '@trpc/tanstack-react-query': "11.8.1";
39
+ readonly '@trpc/client': "11.8.1";
40
+ readonly '@trpc/server': "11.8.1";
41
+ readonly '@types/node': "22.19.3";
41
42
  readonly '@types/aws-lambda': "8.10.159";
42
43
  readonly '@types/cors': "2.8.19";
43
- readonly '@types/express': "5.0.5";
44
- readonly '@smithy/types': "4.9.0";
44
+ readonly '@types/ws': "8.18.1";
45
+ readonly '@types/express': "5.0.6";
46
+ readonly '@smithy/types': "4.11.0";
45
47
  readonly aws4fetch: "1.0.20";
46
- readonly 'aws-cdk': "2.1033.0";
47
- readonly 'aws-cdk-lib': "2.230.0";
48
- readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.229.1-alpha.0";
48
+ readonly 'aws-cdk': "2.1100.1";
49
+ readonly 'aws-cdk-lib': "2.233.0";
50
+ readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.233.0-alpha.0";
49
51
  readonly 'aws-xray-sdk-core': "3.12.0";
50
- readonly constructs: "10.4.3";
52
+ readonly constructs: "10.4.4";
51
53
  readonly cors: "2.8.5";
52
- readonly electrodb: "3.5.0";
53
- readonly esbuild: "0.27.0";
54
+ readonly electrodb: "3.5.2";
55
+ readonly esbuild: "0.27.2";
54
56
  readonly 'eslint-plugin-prettier': "5.5.4";
55
- readonly express: "5.1.0";
56
- readonly 'jsonc-eslint-parser': "2.4.1";
57
+ readonly express: "5.2.1";
58
+ readonly 'jsonc-eslint-parser': "2.4.2";
57
59
  readonly 'make-dir-cli': "4.0.0";
58
60
  readonly ncp: "2.0.0";
59
- readonly 'npm-check-updates': "19.1.2";
61
+ readonly 'npm-check-updates': "19.2.0";
60
62
  readonly 'oidc-client-ts': "3.4.1";
61
- readonly prettier: "3.6.2";
63
+ readonly prettier: "3.7.4";
62
64
  readonly 'react-oidc-context': "3.3.0";
63
- readonly react: "19.2.0";
64
- readonly 'react-dom': "19.2.0";
65
+ readonly react: "19.2.3";
66
+ readonly 'react-dom': "19.2.3";
65
67
  readonly rimraf: "6.1.2";
66
68
  readonly rolldown: "1.0.0-beta.52";
67
69
  readonly 'source-map-support': "0.5.21";
68
- readonly tailwindcss: "4.1.17";
69
- readonly '@tailwindcss/vite': "4.1.17";
70
- readonly tsx: "4.20.6";
70
+ readonly tailwindcss: "4.1.18";
71
+ readonly '@tailwindcss/vite': "4.1.18";
72
+ readonly tsx: "4.21.0";
71
73
  readonly 'vite-tsconfig-paths': "5.1.4";
72
- readonly zod: "4.2.1";
74
+ readonly zod: "4.3.5";
75
+ readonly ws: "8.18.3";
73
76
  };
74
77
  export type ITsDepVersion = keyof typeof TS_VERSIONS;
75
78
  /**
76
79
  * Add versions to the given dependencies
77
80
  */
78
81
  export declare const withVersions: (deps: ITsDepVersion[]) => {
79
- [k: string]: "3.940.0" | "1.0.0-alpha.10" | "2.29.0" | "6.4.5" | "21.2.0" | "9.0.1" | "22.1.3" | "1.25.1" | "0.18.0" | "1.139.7" | "1.139.0" | "3.0.130" | "3.0.1144" | "1.0.49" | "5.90.11" | "5.91.1" | "11.7.2" | "22.19.1" | "8.10.159" | "2.8.19" | "5.0.5" | "4.9.0" | "1.0.20" | "2.1033.0" | "2.230.0" | "2.229.1-alpha.0" | "3.12.0" | "10.4.3" | "2.8.5" | "3.5.0" | "0.27.0" | "5.5.4" | "5.1.0" | "2.4.1" | "4.0.0" | "2.0.0" | "19.1.2" | "3.4.1" | "3.6.2" | "3.3.0" | "19.2.0" | "6.1.2" | "1.0.0-beta.52" | "0.5.21" | "4.1.17" | "4.20.6" | "5.1.4" | "4.2.1";
82
+ [k: string]: "3.958.0" | "1.0.0-alpha.10" | "2.30.0" | "6.4.5" | "21.2.0" | "9.0.1" | "22.3.3" | "1.25.2" | "0.18.0" | "0.1.5" | "1.144.0" | "1.145.2" | "1.141.0" | "1.143.11" | "3.0.136" | "3.0.1165" | "1.0.49" | "5.90.16" | "5.91.2" | "11.8.1" | "22.19.3" | "8.10.159" | "2.8.19" | "8.18.1" | "5.0.6" | "4.11.0" | "1.0.20" | "2.1100.1" | "2.233.0" | "2.233.0-alpha.0" | "3.12.0" | "10.4.4" | "2.8.5" | "3.5.2" | "0.27.2" | "5.5.4" | "5.2.1" | "2.4.2" | "4.0.0" | "2.0.0" | "19.2.0" | "3.4.1" | "3.7.4" | "3.3.0" | "19.2.3" | "6.1.2" | "1.0.0-beta.52" | "0.5.21" | "4.1.18" | "4.21.0" | "5.1.4" | "4.3.5" | "8.18.3";
80
83
  };
81
84
  /**
82
85
  * Versions for Python dependencies added by generators
@@ -85,18 +88,18 @@ export declare const PY_VERSIONS: {
85
88
  readonly 'aws-lambda-powertools': "==3.23.0";
86
89
  readonly 'aws-lambda-powertools[tracer]': "==3.23.0";
87
90
  readonly 'aws-lambda-powertools[parser]': "==3.23.0";
88
- readonly 'aws-opentelemetry-distro': "==0.14.0";
91
+ readonly 'aws-opentelemetry-distro': "==0.14.1";
89
92
  readonly 'bedrock-agentcore': "==0.1.7";
90
- readonly boto3: "==1.42.0";
91
- readonly checkov: "==3.2.495";
92
- readonly fastapi: "==0.123.0";
93
- readonly 'fastapi[standard]': "==0.123.0";
94
- readonly mangum: "==0.19.0";
95
- readonly mcp: "==1.22.0";
96
- readonly 'pip-check-updates': "==0.27.0";
97
- readonly 'strands-agents': "==1.18.0";
98
- readonly 'strands-agents-tools': "==0.2.16";
99
- readonly uvicorn: "==0.38.0";
93
+ readonly boto3: "==1.42.21";
94
+ readonly checkov: "==3.2.497";
95
+ readonly fastapi: "==0.128.0";
96
+ readonly 'fastapi[standard]': "==0.128.0";
97
+ readonly mangum: "==0.20.0";
98
+ readonly mcp: "==1.25.0";
99
+ readonly 'pip-check-updates': "==0.28.0";
100
+ readonly 'strands-agents': "==1.21.0";
101
+ readonly 'strands-agents-tools': "==0.2.19";
102
+ readonly uvicorn: "==0.40.0";
100
103
  };
101
104
  export type IPyDepVersion = keyof typeof PY_VERSIONS;
102
105
  /**
@@ -9,70 +9,73 @@ exports.withPyVersions = exports.PY_VERSIONS = exports.withVersions = exports.TS
9
9
  * Versons for TypeScript dependencies added by generators
10
10
  */
11
11
  exports.TS_VERSIONS = {
12
- '@aws-sdk/client-cognito-identity': '3.940.0',
13
- '@aws-sdk/client-dynamodb': '3.940.0',
14
- '@aws-sdk/credential-providers': '3.940.0',
15
- '@aws-sdk/credential-provider-cognito-identity': '3.940.0',
12
+ '@aws-sdk/client-cognito-identity': '3.958.0',
13
+ '@aws-sdk/client-dynamodb': '3.958.0',
14
+ '@aws-sdk/credential-providers': '3.958.0',
15
+ '@aws-sdk/credential-provider-cognito-identity': '3.958.0',
16
16
  '@aws-smithy/server-apigateway': '1.0.0-alpha.10',
17
17
  '@aws-smithy/server-node': '1.0.0-alpha.10',
18
- '@aws-lambda-powertools/logger': '2.29.0',
19
- '@aws-lambda-powertools/metrics': '2.29.0',
20
- '@aws-lambda-powertools/tracer': '2.29.0',
21
- '@aws-lambda-powertools/parser': '2.29.0',
18
+ '@aws-lambda-powertools/logger': '2.30.0',
19
+ '@aws-lambda-powertools/metrics': '2.30.0',
20
+ '@aws-lambda-powertools/tracer': '2.30.0',
21
+ '@aws-lambda-powertools/parser': '2.30.0',
22
22
  '@middy/core': '6.4.5',
23
23
  '@nxlv/python': '21.2.0',
24
24
  '@nx-extend/terraform': '9.0.1',
25
- '@nx/devkit': '22.1.3',
26
- '@nx/react': '22.1.3',
27
- 'create-nx-workspace': '22.1.3',
28
- '@modelcontextprotocol/sdk': '1.25.1',
25
+ '@nx/devkit': '22.3.3',
26
+ '@nx/react': '22.3.3',
27
+ 'create-nx-workspace': '22.3.3',
28
+ '@modelcontextprotocol/sdk': '1.25.2',
29
29
  '@modelcontextprotocol/inspector': '0.18.0',
30
- '@tanstack/react-router': '1.139.7',
31
- '@tanstack/router-plugin': '1.139.7',
32
- '@tanstack/router-generator': '1.139.7',
33
- '@tanstack/virtual-file-routes': '1.139.0',
34
- '@tanstack/router-utils': '1.139.0',
35
- '@cloudscape-design/board-components': '3.0.130',
36
- '@cloudscape-design/components': '3.0.1144',
30
+ '@strands-agents/sdk': '0.1.5',
31
+ '@tanstack/react-router': '1.144.0',
32
+ '@tanstack/router-plugin': '1.145.2',
33
+ '@tanstack/router-generator': '1.145.2',
34
+ '@tanstack/virtual-file-routes': '1.141.0',
35
+ '@tanstack/router-utils': '1.143.11',
36
+ '@cloudscape-design/board-components': '3.0.136',
37
+ '@cloudscape-design/components': '3.0.1165',
37
38
  '@cloudscape-design/global-styles': '1.0.49',
38
- '@tanstack/react-query': '5.90.11',
39
- '@tanstack/react-query-devtools': '5.91.1',
40
- '@trpc/tanstack-react-query': '11.7.2',
41
- '@trpc/client': '11.7.2',
42
- '@trpc/server': '11.7.2',
43
- '@types/node': '22.19.1',
39
+ '@tanstack/react-query': '5.90.16',
40
+ '@tanstack/react-query-devtools': '5.91.2',
41
+ '@trpc/tanstack-react-query': '11.8.1',
42
+ '@trpc/client': '11.8.1',
43
+ '@trpc/server': '11.8.1',
44
+ '@types/node': '22.19.3',
44
45
  '@types/aws-lambda': '8.10.159',
45
46
  '@types/cors': '2.8.19',
46
- '@types/express': '5.0.5',
47
- '@smithy/types': '4.9.0',
47
+ '@types/ws': '8.18.1',
48
+ '@types/express': '5.0.6',
49
+ '@smithy/types': '4.11.0',
48
50
  aws4fetch: '1.0.20',
49
- 'aws-cdk': '2.1033.0',
50
- 'aws-cdk-lib': '2.230.0',
51
- '@aws-cdk/aws-bedrock-agentcore-alpha': '2.229.1-alpha.0',
51
+ 'aws-cdk': '2.1100.1',
52
+ 'aws-cdk-lib': '2.233.0',
53
+ '@aws-cdk/aws-bedrock-agentcore-alpha': '2.233.0-alpha.0',
52
54
  'aws-xray-sdk-core': '3.12.0',
53
- constructs: '10.4.3',
55
+ constructs: '10.4.4',
54
56
  cors: '2.8.5',
55
- electrodb: '3.5.0',
56
- esbuild: '0.27.0',
57
+ electrodb: '3.5.2',
58
+ esbuild: '0.27.2',
57
59
  'eslint-plugin-prettier': '5.5.4',
58
- express: '5.1.0',
59
- 'jsonc-eslint-parser': '2.4.1',
60
+ express: '5.2.1',
61
+ 'jsonc-eslint-parser': '2.4.2',
60
62
  'make-dir-cli': '4.0.0',
61
63
  ncp: '2.0.0',
62
- 'npm-check-updates': '19.1.2',
64
+ 'npm-check-updates': '19.2.0',
63
65
  'oidc-client-ts': '3.4.1',
64
- prettier: '3.6.2',
66
+ prettier: '3.7.4',
65
67
  'react-oidc-context': '3.3.0',
66
- react: '19.2.0',
67
- 'react-dom': '19.2.0',
68
+ react: '19.2.3',
69
+ 'react-dom': '19.2.3',
68
70
  rimraf: '6.1.2',
69
71
  rolldown: '1.0.0-beta.52',
70
72
  'source-map-support': '0.5.21',
71
- tailwindcss: '4.1.17',
72
- '@tailwindcss/vite': '4.1.17',
73
- tsx: '4.20.6',
73
+ tailwindcss: '4.1.18',
74
+ '@tailwindcss/vite': '4.1.18',
75
+ tsx: '4.21.0',
74
76
  'vite-tsconfig-paths': '5.1.4',
75
- zod: '4.2.1',
77
+ zod: '4.3.5',
78
+ ws: '8.18.3',
76
79
  };
77
80
  /**
78
81
  * Add versions to the given dependencies
@@ -86,18 +89,18 @@ exports.PY_VERSIONS = {
86
89
  'aws-lambda-powertools': '==3.23.0',
87
90
  'aws-lambda-powertools[tracer]': '==3.23.0',
88
91
  'aws-lambda-powertools[parser]': '==3.23.0',
89
- 'aws-opentelemetry-distro': '==0.14.0',
92
+ 'aws-opentelemetry-distro': '==0.14.1',
90
93
  'bedrock-agentcore': '==0.1.7',
91
- boto3: '==1.42.0',
92
- checkov: '==3.2.495',
93
- fastapi: '==0.123.0',
94
- 'fastapi[standard]': '==0.123.0',
95
- mangum: '==0.19.0',
96
- mcp: '==1.22.0',
97
- 'pip-check-updates': '==0.27.0',
98
- 'strands-agents': '==1.18.0',
99
- 'strands-agents-tools': '==0.2.16',
100
- uvicorn: '==0.38.0',
94
+ boto3: '==1.42.21',
95
+ checkov: '==3.2.497',
96
+ fastapi: '==0.128.0',
97
+ 'fastapi[standard]': '==0.128.0',
98
+ mangum: '==0.20.0',
99
+ mcp: '==1.25.0',
100
+ 'pip-check-updates': '==0.28.0',
101
+ 'strands-agents': '==1.21.0',
102
+ 'strands-agents-tools': '==0.2.19',
103
+ uvicorn: '==0.40.0',
101
104
  };
102
105
  /**
103
106
  * Add versions to the given dependencies
@@ -1 +1 @@
1
- {"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}