adteco-frontend-guidelines
Provides comprehensive frontend development guidelines for building accessible and performant components using React, Tailwind, and more.
Install this skill
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
Template literal with variable interpolation in command context
| 114 | queryFn: () => fetch(`/api/users/${userId}`).then(res => res.json()), |
Template literal with variable interpolation in command context
| 267 | const res = await fetch(`/api/users/${userId}`); |
Template literal with variable interpolation in command context
| 281 | const res = await fetch(`/api/users/${userId}`, { |
Template literal with variable interpolation in command context
| 449 | const res = await fetch(`/api/users/${userId}`); |
Template literal with variable interpolation in command context
| 458 | const res = await fetch(`/api/users/${userId}`, { |
Template literal with variable interpolation in command context
| 585 | className={`base-class ${condition ? 'conditional' : ''} ${className}`} |
Fetch to external URL
| 118 | mutationFn: (data) => fetch('/api/users', { |
Fetch to external URL
| 596 | fetch('/api/users/123').then(res => res.json()).then(setData); |
Fetch to external URL
| 602 | queryFn: () => fetch('/api/users/123').then(res => res.json()), |