@aws/nx-plugin-mcp 0.116.0 → 0.118.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.
- package/bin/aws-nx-mcp.js +43 -43
- package/generators.json +43 -43
- package/package.json +1 -1
- package/src/py/{strands-agent → agent}/a2a-connection/schema.json +5 -5
- package/src/py/{strands-agent → agent}/mcp-connection/schema.json +4 -4
- package/src/py/{strands-agent → agent}/react-connection/schema.json +4 -4
- package/src/{ts/strands-agent → py/agent}/schema.json +21 -13
- package/src/ts/{strands-agent → agent}/a2a-connection/schema.json +5 -5
- package/src/ts/{strands-agent → agent}/mcp-connection/schema.json +4 -4
- package/src/ts/{strands-agent → agent}/react-connection/schema.json +5 -5
- package/src/{py/strands-agent → ts/agent}/schema.json +21 -13
- package/src/ts/rdb/{strands-agent-connection → agent-connection}/schema.json +4 -4
package/bin/aws-nx-mcp.js
CHANGED
|
@@ -19018,17 +19018,17 @@ var generators$1 = {
|
|
|
19018
19018
|
"connection/react-fastapi",
|
|
19019
19019
|
"connection/react-trpc",
|
|
19020
19020
|
"connection/react-smithy",
|
|
19021
|
-
"connection/react-ts-
|
|
19022
|
-
"connection/react-py-
|
|
19021
|
+
"connection/react-ts-agent",
|
|
19022
|
+
"connection/react-py-agent",
|
|
19023
19023
|
"connection/react-agui",
|
|
19024
|
-
"connection/py-
|
|
19025
|
-
"connection/ts-
|
|
19026
|
-
"connection/py-
|
|
19027
|
-
"connection/ts-
|
|
19024
|
+
"connection/py-agent-mcp",
|
|
19025
|
+
"connection/ts-agent-mcp",
|
|
19026
|
+
"connection/py-agent-a2a",
|
|
19027
|
+
"connection/ts-agent-a2a",
|
|
19028
19028
|
"connection/trpc-rdb",
|
|
19029
19029
|
"connection/smithy-rdb",
|
|
19030
19030
|
"connection/ts-mcp-server-rdb",
|
|
19031
|
-
"connection/ts-
|
|
19031
|
+
"connection/ts-agent-rdb"
|
|
19032
19032
|
]
|
|
19033
19033
|
},
|
|
19034
19034
|
"license": {
|
|
@@ -19106,23 +19106,23 @@ var generators$1 = {
|
|
|
19106
19106
|
"metric": "g2",
|
|
19107
19107
|
"guidePages": ["python-project"]
|
|
19108
19108
|
},
|
|
19109
|
-
"py#
|
|
19110
|
-
"factory": "./src/py/
|
|
19111
|
-
"schema": "./src/py/
|
|
19112
|
-
"description": "Add
|
|
19109
|
+
"py#agent": {
|
|
19110
|
+
"factory": "./src/py/agent/generator",
|
|
19111
|
+
"schema": "./src/py/agent/schema.json",
|
|
19112
|
+
"description": "Add an AI Agent to a Python project",
|
|
19113
19113
|
"metric": "g25"
|
|
19114
19114
|
},
|
|
19115
|
-
"py#
|
|
19116
|
-
"factory": "./src/py/
|
|
19117
|
-
"schema": "./src/py/
|
|
19118
|
-
"description": "Connect a Python
|
|
19115
|
+
"py#agent#mcp-connection": {
|
|
19116
|
+
"factory": "./src/py/agent/mcp-connection/generator",
|
|
19117
|
+
"schema": "./src/py/agent/mcp-connection/schema.json",
|
|
19118
|
+
"description": "Connect a Python Agent to an MCP server",
|
|
19119
19119
|
"metric": "g32",
|
|
19120
19120
|
"hidden": true
|
|
19121
19121
|
},
|
|
19122
|
-
"py#
|
|
19123
|
-
"factory": "./src/py/
|
|
19124
|
-
"schema": "./src/py/
|
|
19125
|
-
"description": "Connect a React website to a Python
|
|
19122
|
+
"py#agent#react-connection": {
|
|
19123
|
+
"factory": "./src/py/agent/react-connection/generator",
|
|
19124
|
+
"schema": "./src/py/agent/react-connection/schema.json",
|
|
19125
|
+
"description": "Connect a React website to a Python Agent",
|
|
19126
19126
|
"metric": "g34",
|
|
19127
19127
|
"hidden": true
|
|
19128
19128
|
},
|
|
@@ -19220,37 +19220,37 @@ var generators$1 = {
|
|
|
19220
19220
|
"description": "Create an API using Smithy and the Smithy TypeScript Server SDK",
|
|
19221
19221
|
"metric": "g26"
|
|
19222
19222
|
},
|
|
19223
|
-
"ts#
|
|
19224
|
-
"factory": "./src/ts/
|
|
19225
|
-
"schema": "./src/ts/
|
|
19226
|
-
"description": "Add
|
|
19223
|
+
"ts#agent": {
|
|
19224
|
+
"factory": "./src/ts/agent/generator",
|
|
19225
|
+
"schema": "./src/ts/agent/schema.json",
|
|
19226
|
+
"description": "Add an AI Agent to a TypeScript project",
|
|
19227
19227
|
"metric": "g30"
|
|
19228
19228
|
},
|
|
19229
|
-
"ts#
|
|
19230
|
-
"factory": "./src/ts/
|
|
19231
|
-
"schema": "./src/ts/
|
|
19232
|
-
"description": "Connect a TypeScript
|
|
19229
|
+
"ts#agent#mcp-connection": {
|
|
19230
|
+
"factory": "./src/ts/agent/mcp-connection/generator",
|
|
19231
|
+
"schema": "./src/ts/agent/mcp-connection/schema.json",
|
|
19232
|
+
"description": "Connect a TypeScript Agent to an MCP server",
|
|
19233
19233
|
"metric": "g31",
|
|
19234
19234
|
"hidden": true
|
|
19235
19235
|
},
|
|
19236
|
-
"ts#
|
|
19237
|
-
"factory": "./src/ts/
|
|
19238
|
-
"schema": "./src/ts/
|
|
19239
|
-
"description": "Connect a React website to a TypeScript
|
|
19236
|
+
"ts#agent#react-connection": {
|
|
19237
|
+
"factory": "./src/ts/agent/react-connection/generator",
|
|
19238
|
+
"schema": "./src/ts/agent/react-connection/schema.json",
|
|
19239
|
+
"description": "Connect a React website to a TypeScript Agent",
|
|
19240
19240
|
"metric": "g33",
|
|
19241
19241
|
"hidden": true
|
|
19242
19242
|
},
|
|
19243
|
-
"ts#
|
|
19244
|
-
"factory": "./src/ts/
|
|
19245
|
-
"schema": "./src/ts/
|
|
19246
|
-
"description": "Connect a TypeScript
|
|
19243
|
+
"ts#agent#a2a-connection": {
|
|
19244
|
+
"factory": "./src/ts/agent/a2a-connection/generator",
|
|
19245
|
+
"schema": "./src/ts/agent/a2a-connection/schema.json",
|
|
19246
|
+
"description": "Connect a TypeScript Agent to an A2A agent",
|
|
19247
19247
|
"metric": "g35",
|
|
19248
19248
|
"hidden": true
|
|
19249
19249
|
},
|
|
19250
|
-
"py#
|
|
19251
|
-
"factory": "./src/py/
|
|
19252
|
-
"schema": "./src/py/
|
|
19253
|
-
"description": "Connect a Python
|
|
19250
|
+
"py#agent#a2a-connection": {
|
|
19251
|
+
"factory": "./src/py/agent/a2a-connection/generator",
|
|
19252
|
+
"schema": "./src/py/agent/a2a-connection/schema.json",
|
|
19253
|
+
"description": "Connect a Python Agent to an A2A agent",
|
|
19254
19254
|
"metric": "g36",
|
|
19255
19255
|
"hidden": true
|
|
19256
19256
|
},
|
|
@@ -19295,10 +19295,10 @@ var generators$1 = {
|
|
|
19295
19295
|
"metric": "g40",
|
|
19296
19296
|
"hidden": true
|
|
19297
19297
|
},
|
|
19298
|
-
"ts#rdb#
|
|
19299
|
-
"factory": "./src/ts/rdb/
|
|
19300
|
-
"schema": "./src/ts/rdb/
|
|
19301
|
-
"description": "Connect a ts#
|
|
19298
|
+
"ts#rdb#agent-connection": {
|
|
19299
|
+
"factory": "./src/ts/rdb/agent-connection/generator",
|
|
19300
|
+
"schema": "./src/ts/rdb/agent-connection/schema.json",
|
|
19301
|
+
"description": "Connect a ts#agent to a ts#rdb project",
|
|
19302
19302
|
"metric": "g41",
|
|
19303
19303
|
"hidden": true
|
|
19304
19304
|
},
|
package/generators.json
CHANGED
|
@@ -13,17 +13,17 @@
|
|
|
13
13
|
"connection/react-fastapi",
|
|
14
14
|
"connection/react-trpc",
|
|
15
15
|
"connection/react-smithy",
|
|
16
|
-
"connection/react-ts-
|
|
17
|
-
"connection/react-py-
|
|
16
|
+
"connection/react-ts-agent",
|
|
17
|
+
"connection/react-py-agent",
|
|
18
18
|
"connection/react-agui",
|
|
19
|
-
"connection/py-
|
|
20
|
-
"connection/ts-
|
|
21
|
-
"connection/py-
|
|
22
|
-
"connection/ts-
|
|
19
|
+
"connection/py-agent-mcp",
|
|
20
|
+
"connection/ts-agent-mcp",
|
|
21
|
+
"connection/py-agent-a2a",
|
|
22
|
+
"connection/ts-agent-a2a",
|
|
23
23
|
"connection/trpc-rdb",
|
|
24
24
|
"connection/smithy-rdb",
|
|
25
25
|
"connection/ts-mcp-server-rdb",
|
|
26
|
-
"connection/ts-
|
|
26
|
+
"connection/ts-agent-rdb"
|
|
27
27
|
]
|
|
28
28
|
},
|
|
29
29
|
"license": {
|
|
@@ -101,23 +101,23 @@
|
|
|
101
101
|
"metric": "g2",
|
|
102
102
|
"guidePages": ["python-project"]
|
|
103
103
|
},
|
|
104
|
-
"py#
|
|
105
|
-
"factory": "./src/py/
|
|
106
|
-
"schema": "./src/py/
|
|
107
|
-
"description": "Add
|
|
104
|
+
"py#agent": {
|
|
105
|
+
"factory": "./src/py/agent/generator",
|
|
106
|
+
"schema": "./src/py/agent/schema.json",
|
|
107
|
+
"description": "Add an AI Agent to a Python project",
|
|
108
108
|
"metric": "g25"
|
|
109
109
|
},
|
|
110
|
-
"py#
|
|
111
|
-
"factory": "./src/py/
|
|
112
|
-
"schema": "./src/py/
|
|
113
|
-
"description": "Connect a Python
|
|
110
|
+
"py#agent#mcp-connection": {
|
|
111
|
+
"factory": "./src/py/agent/mcp-connection/generator",
|
|
112
|
+
"schema": "./src/py/agent/mcp-connection/schema.json",
|
|
113
|
+
"description": "Connect a Python Agent to an MCP server",
|
|
114
114
|
"metric": "g32",
|
|
115
115
|
"hidden": true
|
|
116
116
|
},
|
|
117
|
-
"py#
|
|
118
|
-
"factory": "./src/py/
|
|
119
|
-
"schema": "./src/py/
|
|
120
|
-
"description": "Connect a React website to a Python
|
|
117
|
+
"py#agent#react-connection": {
|
|
118
|
+
"factory": "./src/py/agent/react-connection/generator",
|
|
119
|
+
"schema": "./src/py/agent/react-connection/schema.json",
|
|
120
|
+
"description": "Connect a React website to a Python Agent",
|
|
121
121
|
"metric": "g34",
|
|
122
122
|
"hidden": true
|
|
123
123
|
},
|
|
@@ -215,37 +215,37 @@
|
|
|
215
215
|
"description": "Create an API using Smithy and the Smithy TypeScript Server SDK",
|
|
216
216
|
"metric": "g26"
|
|
217
217
|
},
|
|
218
|
-
"ts#
|
|
219
|
-
"factory": "./src/ts/
|
|
220
|
-
"schema": "./src/ts/
|
|
221
|
-
"description": "Add
|
|
218
|
+
"ts#agent": {
|
|
219
|
+
"factory": "./src/ts/agent/generator",
|
|
220
|
+
"schema": "./src/ts/agent/schema.json",
|
|
221
|
+
"description": "Add an AI Agent to a TypeScript project",
|
|
222
222
|
"metric": "g30"
|
|
223
223
|
},
|
|
224
|
-
"ts#
|
|
225
|
-
"factory": "./src/ts/
|
|
226
|
-
"schema": "./src/ts/
|
|
227
|
-
"description": "Connect a TypeScript
|
|
224
|
+
"ts#agent#mcp-connection": {
|
|
225
|
+
"factory": "./src/ts/agent/mcp-connection/generator",
|
|
226
|
+
"schema": "./src/ts/agent/mcp-connection/schema.json",
|
|
227
|
+
"description": "Connect a TypeScript Agent to an MCP server",
|
|
228
228
|
"metric": "g31",
|
|
229
229
|
"hidden": true
|
|
230
230
|
},
|
|
231
|
-
"ts#
|
|
232
|
-
"factory": "./src/ts/
|
|
233
|
-
"schema": "./src/ts/
|
|
234
|
-
"description": "Connect a React website to a TypeScript
|
|
231
|
+
"ts#agent#react-connection": {
|
|
232
|
+
"factory": "./src/ts/agent/react-connection/generator",
|
|
233
|
+
"schema": "./src/ts/agent/react-connection/schema.json",
|
|
234
|
+
"description": "Connect a React website to a TypeScript Agent",
|
|
235
235
|
"metric": "g33",
|
|
236
236
|
"hidden": true
|
|
237
237
|
},
|
|
238
|
-
"ts#
|
|
239
|
-
"factory": "./src/ts/
|
|
240
|
-
"schema": "./src/ts/
|
|
241
|
-
"description": "Connect a TypeScript
|
|
238
|
+
"ts#agent#a2a-connection": {
|
|
239
|
+
"factory": "./src/ts/agent/a2a-connection/generator",
|
|
240
|
+
"schema": "./src/ts/agent/a2a-connection/schema.json",
|
|
241
|
+
"description": "Connect a TypeScript Agent to an A2A agent",
|
|
242
242
|
"metric": "g35",
|
|
243
243
|
"hidden": true
|
|
244
244
|
},
|
|
245
|
-
"py#
|
|
246
|
-
"factory": "./src/py/
|
|
247
|
-
"schema": "./src/py/
|
|
248
|
-
"description": "Connect a Python
|
|
245
|
+
"py#agent#a2a-connection": {
|
|
246
|
+
"factory": "./src/py/agent/a2a-connection/generator",
|
|
247
|
+
"schema": "./src/py/agent/a2a-connection/schema.json",
|
|
248
|
+
"description": "Connect a Python Agent to an A2A agent",
|
|
249
249
|
"metric": "g36",
|
|
250
250
|
"hidden": true
|
|
251
251
|
},
|
|
@@ -290,10 +290,10 @@
|
|
|
290
290
|
"metric": "g40",
|
|
291
291
|
"hidden": true
|
|
292
292
|
},
|
|
293
|
-
"ts#rdb#
|
|
294
|
-
"factory": "./src/ts/rdb/
|
|
295
|
-
"schema": "./src/ts/rdb/
|
|
296
|
-
"description": "Connect a ts#
|
|
293
|
+
"ts#rdb#agent-connection": {
|
|
294
|
+
"factory": "./src/ts/rdb/agent-connection/generator",
|
|
295
|
+
"schema": "./src/ts/rdb/agent-connection/schema.json",
|
|
296
|
+
"description": "Connect a ts#agent to a ts#rdb project",
|
|
297
297
|
"metric": "g41",
|
|
298
298
|
"hidden": true
|
|
299
299
|
},
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/schema",
|
|
3
|
-
"$id": "py#
|
|
4
|
-
"title": "py#
|
|
5
|
-
"description": "Connect a Python
|
|
3
|
+
"$id": "py#agent#a2a-connection",
|
|
4
|
+
"title": "py#agent#a2a-connection",
|
|
5
|
+
"description": "Connect a Python Agent to an A2A agent",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"sourceProject": {
|
|
9
9
|
"type": "string",
|
|
10
|
-
"description": "The project containing the host
|
|
10
|
+
"description": "The project containing the host Agent"
|
|
11
11
|
},
|
|
12
12
|
"targetProject": {
|
|
13
13
|
"type": "string",
|
|
14
|
-
"description": "The project containing the target A2A
|
|
14
|
+
"description": "The project containing the target A2A Agent"
|
|
15
15
|
},
|
|
16
16
|
"sourceComponent": {
|
|
17
17
|
"type": "string",
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/schema",
|
|
3
|
-
"$id": "py#
|
|
4
|
-
"title": "py#
|
|
5
|
-
"description": "Connect a Python
|
|
3
|
+
"$id": "py#agent#mcp-connection",
|
|
4
|
+
"title": "py#agent#mcp-connection",
|
|
5
|
+
"description": "Connect a Python Agent to an MCP server",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"sourceProject": {
|
|
9
9
|
"type": "string",
|
|
10
|
-
"description": "The project containing the
|
|
10
|
+
"description": "The project containing the Agent"
|
|
11
11
|
},
|
|
12
12
|
"targetProject": {
|
|
13
13
|
"type": "string",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/schema",
|
|
3
|
-
"$id": "py#
|
|
4
|
-
"title": "py#
|
|
5
|
-
"description": "Connect a React website to a Python
|
|
3
|
+
"$id": "py#agent#react-connection",
|
|
4
|
+
"title": "py#agent#react-connection",
|
|
5
|
+
"description": "Connect a React website to a Python Agent",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"sourceProject": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"targetProject": {
|
|
13
13
|
"type": "string",
|
|
14
|
-
"description": "The project containing the Python
|
|
14
|
+
"description": "The project containing the Python Agent"
|
|
15
15
|
},
|
|
16
16
|
"sourceComponent": {
|
|
17
17
|
"type": "string",
|
|
@@ -1,45 +1,53 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/schema",
|
|
3
|
-
"$id": "
|
|
4
|
-
"title": "
|
|
5
|
-
"description": "Add
|
|
3
|
+
"$id": "py#agent",
|
|
4
|
+
"title": "py#agent",
|
|
5
|
+
"description": "Add an AI Agent to a Python project",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"project": {
|
|
9
9
|
"type": "string",
|
|
10
|
-
"description": "The project to add the
|
|
10
|
+
"description": "The project to add the Agent to",
|
|
11
11
|
"$default": {
|
|
12
12
|
"$source": "argv",
|
|
13
13
|
"index": 0
|
|
14
14
|
},
|
|
15
|
-
"x-prompt": "Select the
|
|
15
|
+
"x-prompt": "Select the Python project to add the Agent to",
|
|
16
16
|
"x-dropdown": "projects"
|
|
17
17
|
},
|
|
18
|
+
"sdk": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "The agent SDK to use.",
|
|
21
|
+
"x-prompt": "Which agent SDK would you like to use?",
|
|
22
|
+
"enum": ["strands"],
|
|
23
|
+
"default": "strands",
|
|
24
|
+
"x-priority": "important"
|
|
25
|
+
},
|
|
18
26
|
"computeType": {
|
|
19
27
|
"type": "string",
|
|
20
|
-
"description": "The type of compute to host your
|
|
21
|
-
"x-prompt": "How would you like to host your
|
|
28
|
+
"description": "The type of compute to host your Agent.",
|
|
29
|
+
"x-prompt": "How would you like to host your Agent server?",
|
|
22
30
|
"enum": ["BedrockAgentCoreRuntime", "None"],
|
|
23
31
|
"default": "BedrockAgentCoreRuntime",
|
|
24
32
|
"x-priority": "important"
|
|
25
33
|
},
|
|
26
34
|
"name": {
|
|
27
35
|
"type": "string",
|
|
28
|
-
"description": "The name of your
|
|
29
|
-
"x-prompt": "What would you like to call your
|
|
36
|
+
"description": "The name of your Agent (default: agent)",
|
|
37
|
+
"x-prompt": "What would you like to call your Agent? (default: agent)"
|
|
30
38
|
},
|
|
31
39
|
"auth": {
|
|
32
40
|
"type": "string",
|
|
33
|
-
"description": "The method used to authenticate with your
|
|
41
|
+
"description": "The method used to authenticate with your Agent. Choose between IAM (default) or Cognito.",
|
|
34
42
|
"default": "IAM",
|
|
35
43
|
"enum": ["IAM", "Cognito"],
|
|
36
|
-
"x-prompt": "How would you like to authenticate with your
|
|
44
|
+
"x-prompt": "How would you like to authenticate with your Agent?",
|
|
37
45
|
"x-priority": "important"
|
|
38
46
|
},
|
|
39
47
|
"protocol": {
|
|
40
48
|
"type": "string",
|
|
41
|
-
"description": "The server protocol for your
|
|
42
|
-
"x-prompt": "Which protocol would you like to use for your
|
|
49
|
+
"description": "The server protocol for your Agent. HTTP exposes a FastAPI HTTP server. A2A exposes an Agent-to-Agent protocol server. AG-UI exposes an Agent-User Interaction protocol server for direct frontend integration.",
|
|
50
|
+
"x-prompt": "Which protocol would you like to use for your Agent?",
|
|
43
51
|
"enum": ["HTTP", "A2A", "AG-UI"],
|
|
44
52
|
"default": "HTTP",
|
|
45
53
|
"x-priority": "important"
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/schema",
|
|
3
|
-
"$id": "ts#
|
|
4
|
-
"title": "ts#
|
|
5
|
-
"description": "Connect a TypeScript
|
|
3
|
+
"$id": "ts#agent#a2a-connection",
|
|
4
|
+
"title": "ts#agent#a2a-connection",
|
|
5
|
+
"description": "Connect a TypeScript Agent to an A2A agent",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"sourceProject": {
|
|
9
9
|
"type": "string",
|
|
10
|
-
"description": "The project containing the host
|
|
10
|
+
"description": "The project containing the host Agent"
|
|
11
11
|
},
|
|
12
12
|
"targetProject": {
|
|
13
13
|
"type": "string",
|
|
14
|
-
"description": "The project containing the target A2A
|
|
14
|
+
"description": "The project containing the target A2A Agent"
|
|
15
15
|
},
|
|
16
16
|
"sourceComponent": {
|
|
17
17
|
"type": "string",
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/schema",
|
|
3
|
-
"$id": "ts#
|
|
4
|
-
"title": "ts#
|
|
5
|
-
"description": "Connect a TypeScript
|
|
3
|
+
"$id": "ts#agent#mcp-connection",
|
|
4
|
+
"title": "ts#agent#mcp-connection",
|
|
5
|
+
"description": "Connect a TypeScript Agent to an MCP server",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"sourceProject": {
|
|
9
9
|
"type": "string",
|
|
10
|
-
"description": "The project containing the
|
|
10
|
+
"description": "The project containing the Agent"
|
|
11
11
|
},
|
|
12
12
|
"targetProject": {
|
|
13
13
|
"type": "string",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/schema",
|
|
3
|
-
"$id": "ts#
|
|
4
|
-
"title": "ts#
|
|
5
|
-
"description": "Connect a React website to a TypeScript
|
|
3
|
+
"$id": "ts#agent#react-connection",
|
|
4
|
+
"title": "ts#agent#react-connection",
|
|
5
|
+
"description": "Connect a React website to a TypeScript Agent",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"sourceProject": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"targetProject": {
|
|
13
13
|
"type": "string",
|
|
14
|
-
"description": "The project containing the
|
|
14
|
+
"description": "The project containing the Agent"
|
|
15
15
|
},
|
|
16
16
|
"sourceComponent": {
|
|
17
17
|
"type": "string",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"targetComponent": {
|
|
21
21
|
"type": "string",
|
|
22
|
-
"description": "The
|
|
22
|
+
"description": "The Agent component name"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"required": ["sourceProject", "targetProject"]
|
|
@@ -1,45 +1,53 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/schema",
|
|
3
|
-
"$id": "
|
|
4
|
-
"title": "
|
|
5
|
-
"description": "Add
|
|
3
|
+
"$id": "ts#agent",
|
|
4
|
+
"title": "ts#agent",
|
|
5
|
+
"description": "Add an AI Agent to a TypeScript project",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"project": {
|
|
9
9
|
"type": "string",
|
|
10
|
-
"description": "The project to add the
|
|
10
|
+
"description": "The project to add the Agent to",
|
|
11
11
|
"$default": {
|
|
12
12
|
"$source": "argv",
|
|
13
13
|
"index": 0
|
|
14
14
|
},
|
|
15
|
-
"x-prompt": "Select the
|
|
15
|
+
"x-prompt": "Select the TypeScript project to add the Agent to",
|
|
16
16
|
"x-dropdown": "projects"
|
|
17
17
|
},
|
|
18
|
+
"sdk": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "The agent SDK to use.",
|
|
21
|
+
"x-prompt": "Which agent SDK would you like to use?",
|
|
22
|
+
"enum": ["strands"],
|
|
23
|
+
"default": "strands",
|
|
24
|
+
"x-priority": "important"
|
|
25
|
+
},
|
|
18
26
|
"computeType": {
|
|
19
27
|
"type": "string",
|
|
20
|
-
"description": "The type of compute to host your
|
|
21
|
-
"x-prompt": "How would you like to host your
|
|
28
|
+
"description": "The type of compute to host your Agent.",
|
|
29
|
+
"x-prompt": "How would you like to host your Agent server?",
|
|
22
30
|
"enum": ["BedrockAgentCoreRuntime", "None"],
|
|
23
31
|
"default": "BedrockAgentCoreRuntime",
|
|
24
32
|
"x-priority": "important"
|
|
25
33
|
},
|
|
26
34
|
"name": {
|
|
27
35
|
"type": "string",
|
|
28
|
-
"description": "The name of your
|
|
29
|
-
"x-prompt": "What would you like to call your
|
|
36
|
+
"description": "The name of your Agent (default: agent)",
|
|
37
|
+
"x-prompt": "What would you like to call your Agent? (default: agent)"
|
|
30
38
|
},
|
|
31
39
|
"auth": {
|
|
32
40
|
"type": "string",
|
|
33
|
-
"description": "The method used to authenticate with your
|
|
41
|
+
"description": "The method used to authenticate with your Agent. Choose between IAM (default) or Cognito.",
|
|
34
42
|
"default": "IAM",
|
|
35
43
|
"enum": ["IAM", "Cognito"],
|
|
36
|
-
"x-prompt": "How would you like to authenticate with your
|
|
44
|
+
"x-prompt": "How would you like to authenticate with your Agent?",
|
|
37
45
|
"x-priority": "important"
|
|
38
46
|
},
|
|
39
47
|
"protocol": {
|
|
40
48
|
"type": "string",
|
|
41
|
-
"description": "The server protocol for your
|
|
42
|
-
"x-prompt": "Which protocol would you like to use for your
|
|
49
|
+
"description": "The server protocol for your Agent. HTTP exposes a tRPC/WebSocket server. A2A exposes an Agent-to-Agent protocol server. AG-UI exposes an AG-UI protocol server for direct frontend integration with CopilotKit.",
|
|
50
|
+
"x-prompt": "Which protocol would you like to use for your Agent?",
|
|
43
51
|
"enum": ["HTTP", "A2A", "AG-UI"],
|
|
44
52
|
"default": "HTTP",
|
|
45
53
|
"x-priority": "important"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/schema",
|
|
3
|
-
"$id": "ts#rdb#
|
|
4
|
-
"title": "ts#rdb#
|
|
5
|
-
"description": "Connect a ts#
|
|
3
|
+
"$id": "ts#rdb#agent-connection",
|
|
4
|
+
"title": "ts#rdb#agent-connection",
|
|
5
|
+
"description": "Connect a ts#agent to a ts#rdb project",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"sourceProject": {
|
|
9
9
|
"type": "string",
|
|
10
|
-
"description": "The project containing the ts#
|
|
10
|
+
"description": "The project containing the ts#agent to connect from"
|
|
11
11
|
},
|
|
12
12
|
"targetProject": {
|
|
13
13
|
"type": "string",
|