creating-subpackages
Documents patterns for creating AWS service subpackages in a monorepo, ensuring consistent structure and resource management.
Install this skill
Security score
The creating-subpackages skill was audited on Feb 19, 2026 and we found 9 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 57 | const role = new Role(scope, `${props.functionName}-role`, { ... }); |
Template literal with variable interpolation in command context
| 58 | const logGroup = new LogGroup(scope, `${props.functionName}-logs`, { ... }); |
Template literal with variable interpolation in command context
| 135 | new Role(scope, `${props.functionName}-role`, { |
Template literal with variable interpolation in command context
| 136 | roleName: props.roleName || `${props.functionName}-execution-role`, |
Template literal with variable interpolation in command context
| 142 | const logGroup = new LogGroup(scope, `${props.functionName}-logs`, { |
Template literal with variable interpolation in command context
| 143 | logGroupName: `/aws/lambda/${props.functionName}`, |
Template literal with variable interpolation in command context
| 395 | ? new Key(scope, `${props.resourceName}-kms`, { |
Template literal with variable interpolation in command context
| 407 | return new ParameterGroup(scope, `${props.name}-params`, { |
Template literal with variable interpolation in command context
| 477 | new MyResourceStack(app, `my-resource-${env.name}`, envProps); |