@aws/nx-plugin-mcp 0.117.0 → 0.119.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 +12 -3
- package/package.json +1 -1
- package/src/preset/schema.json +13 -0
- package/src/ts/agent/schema.json +1 -1
package/bin/aws-nx-mcp.js
CHANGED
|
@@ -19444,6 +19444,11 @@ ${buildCreateNxWorkspaceCommand(packageManager, ".")} --no-interactive
|
|
|
19444
19444
|
|
|
19445
19445
|
Note that this will prompt for an Infrastructure as Code provider (${IAC_PROVIDERS.join(", ")}).
|
|
19446
19446
|
If you know the preferred option, pass ${IAC_PROVIDERS.map((iac) => `\`--iacProvider=${iac}\``).join(" or ")} to the above command to skip the prompt.
|
|
19447
|
+
|
|
19448
|
+
Additional options:
|
|
19449
|
+
- \`--no-gitSecrets\`: Opt out of the default git-secrets pre-commit hook (prevents committing AWS credentials)
|
|
19450
|
+
|
|
19451
|
+
Refer to the \`general-guidance\` tool for full workspace documentation including structure, common commands, and configuration.
|
|
19447
19452
|
`
|
|
19448
19453
|
}] }));
|
|
19449
19454
|
};
|
|
@@ -52900,11 +52905,15 @@ ${PACKAGE_MANAGERS.map((pm) => buildNxCommand("<options>", pm)).join(" - \n")}
|
|
|
52900
52905
|
- After making changes to your projects, fix linting issues, then run a full build
|
|
52901
52906
|
- When it's time to start testing a project, suggest to the user that infrastructure is deployed to AWS. For websites, if a runtime-config.json is needed, use the load:runtime-config target after a deployment to point a local website at a sandbox stack.
|
|
52902
52907
|
|
|
52903
|
-
##
|
|
52908
|
+
## Detailed Guides
|
|
52904
52909
|
|
|
52905
|
-
Please refer to the below documentation for important details regarding working with
|
|
52910
|
+
Please refer to the below documentation for important details regarding workspaces and working with TypeScript or Python projects.
|
|
52906
52911
|
|
|
52907
|
-
${await fetchGuidePages([
|
|
52912
|
+
${await fetchGuidePages([
|
|
52913
|
+
"workspace",
|
|
52914
|
+
"typescript-project",
|
|
52915
|
+
"python-project"
|
|
52916
|
+
], generators)}
|
|
52908
52917
|
|
|
52909
52918
|
`
|
|
52910
52919
|
}] }));
|
package/package.json
CHANGED
package/src/preset/schema.json
CHANGED
|
@@ -17,6 +17,19 @@
|
|
|
17
17
|
"default": "CDK",
|
|
18
18
|
"x-priority": "important",
|
|
19
19
|
"x-prompt": "Which provider would you like to manage your infrastructure?"
|
|
20
|
+
},
|
|
21
|
+
"gitSecrets": {
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"description": "Whether to configure git-secrets to prevent committing AWS credentials.",
|
|
24
|
+
"default": true
|
|
25
|
+
},
|
|
26
|
+
"containerEngine": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"description": "The container engine to use for build/push/login. 'infer' picks docker if installed, otherwise finch (falling back to docker when neither is installed).",
|
|
29
|
+
"enum": ["infer", "docker", "finch"],
|
|
30
|
+
"default": "infer",
|
|
31
|
+
"x-priority": "important",
|
|
32
|
+
"x-prompt": "Which container engine would you like to use? (default: infer)"
|
|
20
33
|
}
|
|
21
34
|
}
|
|
22
35
|
}
|
package/src/ts/agent/schema.json
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"protocol": {
|
|
48
48
|
"type": "string",
|
|
49
|
-
"description": "The server protocol for your Agent. HTTP exposes a tRPC/WebSocket server. A2A exposes an Agent-to-Agent protocol server. AG-UI
|
|
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
50
|
"x-prompt": "Which protocol would you like to use for your Agent?",
|
|
51
51
|
"enum": ["HTTP", "A2A", "AG-UI"],
|
|
52
52
|
"default": "HTTP",
|