conditional-generation
Facilitates conditional file and dependency generation based on application type, optimizing setups for standalone and micro-frontend architectures.
Install this skill
Security score
The conditional-generation skill was audited on Feb 9, 2026 and we found 15 security issues across 2 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 140 | ? `/${userConfig.application_name.replace('-web', '')}` |
Template literal with variable interpolation in command context
| 151 | console.log(`Application Type: ${userConfig.application_type}`); |
Template literal with variable interpolation in command context
| 152 | console.log(`Build Format: ${userConfig.vite_build_format}`); |
Template literal with variable interpolation in command context
| 153 | console.log(`Single-SPA: ${userConfig.enable_single_spa ? 'Enabled' : 'Disabled'}`); |
Template literal with variable interpolation in command context
| 283 | issues.forEach(issue => console.warn(` - ${issue}`)); |
Access to .env file
| 25 | | `.env.standalone` | ✅ Create | ❌ Skip | |
Access to .env file
| 60 | '.env.standalone': userConfig.is_microfrontend |
Access to .env file
| 157 | console.log(' ✓ .env.standalone'); |
Access to .env file
| 163 | console.log(' ✗ .env.standalone (skipped)'); |
Access to .env file
| 177 | - `.env.standalone` ✅ |
Access to .env file
| 194 | - `.env.standalone` ❌ (skipped) |
Access to .env file
| 216 | │ Create .env.standalone |
Access to .env file
| 228 | Skip .env.standalone |
Access to .env file
| 330 | - [ ] Generate micro-frontend → Verify .env.standalone exists |
Access to .env file
| 331 | - [ ] Generate standalone → Verify .env.standalone does NOT exist |