Skip to main content

adteco-frontend-guidelines

Provides comprehensive frontend development guidelines for building accessible and performant components using React, Tailwind, and more.

Install this skill

or
67/100

Security score

The adteco-frontend-guidelines skill was audited on May 20, 2026 and we found 9 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 114

Template literal with variable interpolation in command context

SourceSKILL.md
114queryFn: () => fetch(`/api/users/${userId}`).then(res => res.json()),
medium line 267

Template literal with variable interpolation in command context

SourceSKILL.md
267const res = await fetch(`/api/users/${userId}`);
medium line 281

Template literal with variable interpolation in command context

SourceSKILL.md
281const res = await fetch(`/api/users/${userId}`, {
medium line 449

Template literal with variable interpolation in command context

SourceSKILL.md
449const res = await fetch(`/api/users/${userId}`);
medium line 458

Template literal with variable interpolation in command context

SourceSKILL.md
458const res = await fetch(`/api/users/${userId}`, {
medium line 585

Template literal with variable interpolation in command context

SourceSKILL.md
585className={`base-class ${condition ? 'conditional' : ''} ${className}`}
low line 118

Fetch to external URL

SourceSKILL.md
118mutationFn: (data) => fetch('/api/users', {
low line 596

Fetch to external URL

SourceSKILL.md
596fetch('/api/users/123').then(res => res.json()).then(setData);
low line 602

Fetch to external URL

SourceSKILL.md
602queryFn: () => fetch('/api/users/123').then(res => res.json()),
Scanned on May 20, 2026
View Security Dashboard
Installation guide →