@aws/nx-plugin-mcp 0.98.0 → 0.99.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.
package/bin/aws-nx-mcp.js CHANGED
@@ -18670,7 +18670,9 @@ var generators$1 = {
18670
18670
  "connection/react-ts-strands-agent",
18671
18671
  "connection/react-py-strands-agent",
18672
18672
  "connection/py-strands-agent-mcp",
18673
- "connection/ts-strands-agent-mcp"
18673
+ "connection/ts-strands-agent-mcp",
18674
+ "connection/py-strands-agent-a2a",
18675
+ "connection/ts-strands-agent-a2a"
18674
18676
  ]
18675
18677
  },
18676
18678
  "license": {
@@ -18868,6 +18870,20 @@ var generators$1 = {
18868
18870
  "metric": "g32",
18869
18871
  "hidden": true
18870
18872
  },
18873
+ "ts#strands-agent#a2a-connection": {
18874
+ "factory": "./src/ts/strands-agent/a2a-connection/generator",
18875
+ "schema": "./src/ts/strands-agent/a2a-connection/schema.json",
18876
+ "description": "Connect a TypeScript Strands Agent to an A2A agent",
18877
+ "metric": "g35",
18878
+ "hidden": true
18879
+ },
18880
+ "py#strands-agent#a2a-connection": {
18881
+ "factory": "./src/py/strands-agent/a2a-connection/generator",
18882
+ "schema": "./src/py/strands-agent/a2a-connection/schema.json",
18883
+ "description": "Connect a Python Strands Agent to an A2A agent",
18884
+ "metric": "g36",
18885
+ "hidden": true
18886
+ },
18871
18887
  "py#strands-agent#react-connection": {
18872
18888
  "factory": "./src/py/strands-agent/react-connection/generator",
18873
18889
  "schema": "./src/py/strands-agent/react-connection/schema.json",
package/generators.json CHANGED
@@ -16,7 +16,9 @@
16
16
  "connection/react-ts-strands-agent",
17
17
  "connection/react-py-strands-agent",
18
18
  "connection/py-strands-agent-mcp",
19
- "connection/ts-strands-agent-mcp"
19
+ "connection/ts-strands-agent-mcp",
20
+ "connection/py-strands-agent-a2a",
21
+ "connection/ts-strands-agent-a2a"
20
22
  ]
21
23
  },
22
24
  "license": {
@@ -214,6 +216,20 @@
214
216
  "metric": "g32",
215
217
  "hidden": true
216
218
  },
219
+ "ts#strands-agent#a2a-connection": {
220
+ "factory": "./src/ts/strands-agent/a2a-connection/generator",
221
+ "schema": "./src/ts/strands-agent/a2a-connection/schema.json",
222
+ "description": "Connect a TypeScript Strands Agent to an A2A agent",
223
+ "metric": "g35",
224
+ "hidden": true
225
+ },
226
+ "py#strands-agent#a2a-connection": {
227
+ "factory": "./src/py/strands-agent/a2a-connection/generator",
228
+ "schema": "./src/py/strands-agent/a2a-connection/schema.json",
229
+ "description": "Connect a Python Strands Agent to an A2A agent",
230
+ "metric": "g36",
231
+ "hidden": true
232
+ },
217
233
  "py#strands-agent#react-connection": {
218
234
  "factory": "./src/py/strands-agent/react-connection/generator",
219
235
  "schema": "./src/py/strands-agent/react-connection/schema.json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws/nx-plugin-mcp",
3
- "version": "0.98.0",
3
+ "version": "0.99.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/awslabs/nx-plugin-for-aws.git",
@@ -0,0 +1,26 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "$id": "py#strands-agent#a2a-connection",
4
+ "title": "py#strands-agent#a2a-connection",
5
+ "description": "Connect a Python Strands Agent to an A2A agent",
6
+ "type": "object",
7
+ "properties": {
8
+ "sourceProject": {
9
+ "type": "string",
10
+ "description": "The project containing the host Strands Agent"
11
+ },
12
+ "targetProject": {
13
+ "type": "string",
14
+ "description": "The project containing the target A2A Strands Agent"
15
+ },
16
+ "sourceComponent": {
17
+ "type": "string",
18
+ "description": "The host agent component name"
19
+ },
20
+ "targetComponent": {
21
+ "type": "string",
22
+ "description": "The target A2A agent component name"
23
+ }
24
+ },
25
+ "required": ["sourceProject", "targetProject"]
26
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "$id": "ts#strands-agent#a2a-connection",
4
+ "title": "ts#strands-agent#a2a-connection",
5
+ "description": "Connect a TypeScript Strands Agent to an A2A agent",
6
+ "type": "object",
7
+ "properties": {
8
+ "sourceProject": {
9
+ "type": "string",
10
+ "description": "The project containing the host Strands Agent"
11
+ },
12
+ "targetProject": {
13
+ "type": "string",
14
+ "description": "The project containing the target A2A Strands Agent"
15
+ },
16
+ "sourceComponent": {
17
+ "type": "string",
18
+ "description": "The host agent component name"
19
+ },
20
+ "targetComponent": {
21
+ "type": "string",
22
+ "description": "The target A2A agent component name"
23
+ }
24
+ },
25
+ "required": ["sourceProject", "targetProject"]
26
+ }