code-refactoring-patterns
Provides a systematic approach to refactoring code for enhanced maintainability, performance, and clarity while preserving functionality.
Install this skill
Security score
The code-refactoring-patterns skill was audited on Feb 9, 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
| 65 | return `${user.firstName} ${user.lastName}`; |
Template literal with variable interpolation in command context
| 69 | return `${author.firstName} ${author.lastName}`; |
Template literal with variable interpolation in command context
| 74 | return `${person.firstName} ${person.lastName}`; |
Template literal with variable interpolation in command context
| 169 | console.log(` <h1>${user.firstName} ${user.lastName}</h1>`); |
Template literal with variable interpolation in command context
| 170 | console.log(` <p>${user.email}</p>`); |
Template literal with variable interpolation in command context
| 177 | console.log(` ${renderUserHeader(user)}`); |
Template literal with variable interpolation in command context
| 178 | console.log(` ${renderUserEmail(user)}`); |
Template literal with variable interpolation in command context
| 183 | return `<h1>${user.firstName} ${user.lastName}</h1>`; |
Template literal with variable interpolation in command context
| 187 | return `<p>${user.email}</p>`; |