Skip to main content

code-refactoring-patterns

Provides a systematic approach to refactoring code for enhanced maintainability, performance, and clarity while preserving functionality.

Install this skill

or
55/100

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

medium line 65

Template literal with variable interpolation in command context

SourceSKILL.md
65return `${user.firstName} ${user.lastName}`;
medium line 69

Template literal with variable interpolation in command context

SourceSKILL.md
69return `${author.firstName} ${author.lastName}`;
medium line 74

Template literal with variable interpolation in command context

SourceSKILL.md
74return `${person.firstName} ${person.lastName}`;
medium line 169

Template literal with variable interpolation in command context

SourceSKILL.md
169console.log(` <h1>${user.firstName} ${user.lastName}</h1>`);
medium line 170

Template literal with variable interpolation in command context

SourceSKILL.md
170console.log(` <p>${user.email}</p>`);
medium line 177

Template literal with variable interpolation in command context

SourceSKILL.md
177console.log(` ${renderUserHeader(user)}`);
medium line 178

Template literal with variable interpolation in command context

SourceSKILL.md
178console.log(` ${renderUserEmail(user)}`);
medium line 183

Template literal with variable interpolation in command context

SourceSKILL.md
183return `<h1>${user.firstName} ${user.lastName}</h1>`;
medium line 187

Template literal with variable interpolation in command context

SourceSKILL.md
187return `<p>${user.email}</p>`;
Scanned on Feb 9, 2026
View Security Dashboard