Skip to main content

javascript-modern

Implements modern JavaScript features from ES2020-ES2024 for cleaner, more expressive code, enhancing development efficiency.

Install this skill

or
72/100

Security score

The javascript-modern skill was audited on Feb 12, 2026 and we found 12 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 43

Template literal with variable interpolation in command context

SourceSKILL.md
43`${user.role}-${user.active ? 'active' : 'inactive'}`
medium line 327

Template literal with variable interpolation in command context

SourceSKILL.md
327const response = await fetch(`/api/users/${id}`);
medium line 431

Template literal with variable interpolation in command context

SourceSKILL.md
431console.log(`Object with id ${heldValue} was garbage collected`);
medium line 481

Template literal with variable interpolation in command context

SourceSKILL.md
481return `Hello, ${displayName}!`;
low line 213

Fetch to external URL

SourceSKILL.md
213const response = await fetch('https://api.example.com/data');
low line 376

Fetch to external URL

SourceSKILL.md
376fetch('https://api1.example.com/data'),
low line 377

Fetch to external URL

SourceSKILL.md
377fetch('https://api2.example.com/data'),
low line 378

Fetch to external URL

SourceSKILL.md
378fetch('https://api3.example.com/data'),
low line 213

External URL reference

SourceSKILL.md
213const response = await fetch('https://api.example.com/data');
low line 376

External URL reference

SourceSKILL.md
376fetch('https://api1.example.com/data'),
low line 377

External URL reference

SourceSKILL.md
377fetch('https://api2.example.com/data'),
low line 378

External URL reference

SourceSKILL.md
378fetch('https://api3.example.com/data'),
Scanned on Feb 12, 2026
View Security Dashboard