@aws/nx-plugin-mcp 0.100.0 → 0.102.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 CHANGED
@@ -18757,6 +18757,20 @@ var generators$1 = {
18757
18757
  "description": "Add a Strands Agent to a Python project",
18758
18758
  "metric": "g25"
18759
18759
  },
18760
+ "py#strands-agent#mcp-connection": {
18761
+ "factory": "./src/py/strands-agent/mcp-connection/generator",
18762
+ "schema": "./src/py/strands-agent/mcp-connection/schema.json",
18763
+ "description": "Connect a Python Strands Agent to an MCP server",
18764
+ "metric": "g32",
18765
+ "hidden": true
18766
+ },
18767
+ "py#strands-agent#react-connection": {
18768
+ "factory": "./src/py/strands-agent/react-connection/generator",
18769
+ "schema": "./src/py/strands-agent/react-connection/schema.json",
18770
+ "description": "Connect a React website to a Python Strands Agent",
18771
+ "metric": "g34",
18772
+ "hidden": true
18773
+ },
18760
18774
  "smithy#project": {
18761
18775
  "factory": "./src/smithy/project/generator",
18762
18776
  "schema": "./src/smithy/project/schema.json",
@@ -18778,6 +18792,13 @@ var generators$1 = {
18778
18792
  "metric": "g23",
18779
18793
  "guidePages": ["terraform-project"]
18780
18794
  },
18795
+ "ts#astro-docs": {
18796
+ "factory": "./src/ts/astro-docs/generator",
18797
+ "schema": "./src/ts/astro-docs/schema.json",
18798
+ "description": "Generates an Astro + Starlight documentation site with localisation, snippets, blog, and optional automated documentation translation",
18799
+ "metric": "g37",
18800
+ "guidePages": ["astro-docs"]
18801
+ },
18781
18802
  "ts#infra": {
18782
18803
  "factory": "./src/infra/app/generator",
18783
18804
  "schema": "./src/infra/app/schema.json",
@@ -18850,13 +18871,6 @@ var generators$1 = {
18850
18871
  "description": "Add a Strands Agent to a TypeScript project",
18851
18872
  "metric": "g30"
18852
18873
  },
18853
- "ts#strands-agent#react-connection": {
18854
- "factory": "./src/ts/strands-agent/react-connection/generator",
18855
- "schema": "./src/ts/strands-agent/react-connection/schema.json",
18856
- "description": "Connect a React website to a TypeScript Strands Agent",
18857
- "metric": "g33",
18858
- "hidden": true
18859
- },
18860
18874
  "ts#strands-agent#mcp-connection": {
18861
18875
  "factory": "./src/ts/strands-agent/mcp-connection/generator",
18862
18876
  "schema": "./src/ts/strands-agent/mcp-connection/schema.json",
@@ -18864,11 +18878,11 @@ var generators$1 = {
18864
18878
  "metric": "g31",
18865
18879
  "hidden": true
18866
18880
  },
18867
- "py#strands-agent#mcp-connection": {
18868
- "factory": "./src/py/strands-agent/mcp-connection/generator",
18869
- "schema": "./src/py/strands-agent/mcp-connection/schema.json",
18870
- "description": "Connect a Python Strands Agent to an MCP server",
18871
- "metric": "g32",
18881
+ "ts#strands-agent#react-connection": {
18882
+ "factory": "./src/ts/strands-agent/react-connection/generator",
18883
+ "schema": "./src/ts/strands-agent/react-connection/schema.json",
18884
+ "description": "Connect a React website to a TypeScript Strands Agent",
18885
+ "metric": "g33",
18872
18886
  "hidden": true
18873
18887
  },
18874
18888
  "ts#strands-agent#a2a-connection": {
@@ -18885,13 +18899,6 @@ var generators$1 = {
18885
18899
  "metric": "g36",
18886
18900
  "hidden": true
18887
18901
  },
18888
- "py#strands-agent#react-connection": {
18889
- "factory": "./src/py/strands-agent/react-connection/generator",
18890
- "schema": "./src/py/strands-agent/react-connection/schema.json",
18891
- "description": "Connect a React website to a Python Strands Agent",
18892
- "metric": "g34",
18893
- "hidden": true
18894
- },
18895
18902
  "ts#sync": {
18896
18903
  "factory": "./src/ts/sync/generator",
18897
18904
  "schema": "./src/ts/sync/schema.json",
package/generators.json CHANGED
@@ -103,6 +103,20 @@
103
103
  "description": "Add a Strands Agent to a Python project",
104
104
  "metric": "g25"
105
105
  },
106
+ "py#strands-agent#mcp-connection": {
107
+ "factory": "./src/py/strands-agent/mcp-connection/generator",
108
+ "schema": "./src/py/strands-agent/mcp-connection/schema.json",
109
+ "description": "Connect a Python Strands Agent to an MCP server",
110
+ "metric": "g32",
111
+ "hidden": true
112
+ },
113
+ "py#strands-agent#react-connection": {
114
+ "factory": "./src/py/strands-agent/react-connection/generator",
115
+ "schema": "./src/py/strands-agent/react-connection/schema.json",
116
+ "description": "Connect a React website to a Python Strands Agent",
117
+ "metric": "g34",
118
+ "hidden": true
119
+ },
106
120
  "smithy#project": {
107
121
  "factory": "./src/smithy/project/generator",
108
122
  "schema": "./src/smithy/project/schema.json",
@@ -124,6 +138,13 @@
124
138
  "metric": "g23",
125
139
  "guidePages": ["terraform-project"]
126
140
  },
141
+ "ts#astro-docs": {
142
+ "factory": "./src/ts/astro-docs/generator",
143
+ "schema": "./src/ts/astro-docs/schema.json",
144
+ "description": "Generates an Astro + Starlight documentation site with localisation, snippets, blog, and optional automated documentation translation",
145
+ "metric": "g37",
146
+ "guidePages": ["astro-docs"]
147
+ },
127
148
  "ts#infra": {
128
149
  "factory": "./src/infra/app/generator",
129
150
  "schema": "./src/infra/app/schema.json",
@@ -196,13 +217,6 @@
196
217
  "description": "Add a Strands Agent to a TypeScript project",
197
218
  "metric": "g30"
198
219
  },
199
- "ts#strands-agent#react-connection": {
200
- "factory": "./src/ts/strands-agent/react-connection/generator",
201
- "schema": "./src/ts/strands-agent/react-connection/schema.json",
202
- "description": "Connect a React website to a TypeScript Strands Agent",
203
- "metric": "g33",
204
- "hidden": true
205
- },
206
220
  "ts#strands-agent#mcp-connection": {
207
221
  "factory": "./src/ts/strands-agent/mcp-connection/generator",
208
222
  "schema": "./src/ts/strands-agent/mcp-connection/schema.json",
@@ -210,11 +224,11 @@
210
224
  "metric": "g31",
211
225
  "hidden": true
212
226
  },
213
- "py#strands-agent#mcp-connection": {
214
- "factory": "./src/py/strands-agent/mcp-connection/generator",
215
- "schema": "./src/py/strands-agent/mcp-connection/schema.json",
216
- "description": "Connect a Python Strands Agent to an MCP server",
217
- "metric": "g32",
227
+ "ts#strands-agent#react-connection": {
228
+ "factory": "./src/ts/strands-agent/react-connection/generator",
229
+ "schema": "./src/ts/strands-agent/react-connection/schema.json",
230
+ "description": "Connect a React website to a TypeScript Strands Agent",
231
+ "metric": "g33",
218
232
  "hidden": true
219
233
  },
220
234
  "ts#strands-agent#a2a-connection": {
@@ -231,13 +245,6 @@
231
245
  "metric": "g36",
232
246
  "hidden": true
233
247
  },
234
- "py#strands-agent#react-connection": {
235
- "factory": "./src/py/strands-agent/react-connection/generator",
236
- "schema": "./src/py/strands-agent/react-connection/schema.json",
237
- "description": "Connect a React website to a Python Strands Agent",
238
- "metric": "g34",
239
- "hidden": true
240
- },
241
248
  "ts#sync": {
242
249
  "factory": "./src/ts/sync/generator",
243
250
  "schema": "./src/ts/sync/schema.json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws/nx-plugin-mcp",
3
- "version": "0.100.0",
3
+ "version": "0.102.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/awslabs/nx-plugin-for-aws.git",
@@ -0,0 +1,62 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "cli": "nx",
4
+ "$id": "ts#astro-docs",
5
+ "title": "Create an Astro + Starlight documentation site",
6
+ "description": "Generates an Astro + Starlight documentation site with localisation, snippets, blog and optional automated doc translation - the core features of a docs site out of the box.",
7
+ "examples": [
8
+ {
9
+ "command": "nx g ts#astro-docs",
10
+ "description": "Generate a docs site at `docs/` (using the default name)"
11
+ },
12
+ {
13
+ "command": "nx g ts#astro-docs my-docs --noTranslation",
14
+ "description": "Generate a docs site without the automated translation pipeline"
15
+ }
16
+ ],
17
+ "type": "object",
18
+ "properties": {
19
+ "name": {
20
+ "description": "The name of the docs project.",
21
+ "type": "string",
22
+ "default": "docs",
23
+ "$default": {
24
+ "$source": "argv",
25
+ "index": 0
26
+ },
27
+ "x-prompt": "What name would you like to use for the docs project?",
28
+ "pattern": "^[a-zA-Z][^:]*$"
29
+ },
30
+ "directory": {
31
+ "description": "The parent directory the docs project is placed in.",
32
+ "type": "string",
33
+ "alias": "dir",
34
+ "x-priority": "important",
35
+ "default": ".",
36
+ "x-prompt": "Which parent directory would you like to place the docs project in?"
37
+ },
38
+ "subDirectory": {
39
+ "type": "string",
40
+ "description": "The sub directory the docs project is placed in. Defaults to the kebab-case project name.",
41
+ "x-prompt": "Which sub directory should the docs project be created in? (default: kebab-case of the name)"
42
+ },
43
+ "noTranslation": {
44
+ "description": "Opt out of the automated documentation translation pipeline (Strands Agent on Amazon Bedrock + a `translate` project target).",
45
+ "type": "boolean",
46
+ "default": false,
47
+ "x-prompt": "Would you like to opt out of automated documentation translation?"
48
+ },
49
+ "noBlog": {
50
+ "description": "Opt out of the `starlight-blog` plugin and the sample blog post.",
51
+ "type": "boolean",
52
+ "default": false,
53
+ "x-prompt": "Would you like to opt out of the blog?"
54
+ },
55
+ "skipInstall": {
56
+ "description": "Skip installing dependencies after the generator runs.",
57
+ "type": "boolean",
58
+ "default": false
59
+ }
60
+ },
61
+ "required": ["name"]
62
+ }