@jaypie/mcp 0.2.5 → 0.2.7
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/dist/index.js +1 -1
- package/package.json +1 -1
- package/prompts/Jaypie_CDK_Constructs_and_Patterns.md +103 -1
- package/prompts/Jaypie_CICD_with_GitHub_Actions.md +167 -74
- package/prompts/Jaypie_Fabricator.md +256 -0
- package/prompts/Jaypie_Init_CICD_with_GitHub_Actions.md +1139 -0
- package/prompts/Templates_CDK_Subpackage.md +2 -0
|
@@ -22,6 +22,8 @@ new InfrastructureStack(app, "InfrastructureStack");
|
|
|
22
22
|
new AppStack(app, "AppStack");
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
> **Important:** The second argument to `new AppStack(app, "AppStack")` is the stack ID used by CloudFormation. This must exactly match the `stack-name` parameter in your GitHub Actions deploy workflows. If you customize this value (e.g., `"MyProjectAppStack"`), update `.github/workflows/deploy-*.yml` accordingly.
|
|
26
|
+
|
|
25
27
|
## lib/cdk-app.ts
|
|
26
28
|
|
|
27
29
|
```typescript
|