Skip to main content

fynd-theme-code-fixer

Analyzes and improves Fynd Commerce theme code, detecting SSR violations and performance issues while providing inline fixes and best practices.

Install this skill

or
74/100

Security score

The fynd-theme-code-fixer skill was audited on Mar 23, 2026 and we found 6 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 145

Template literal with variable interpolation in command context

SourceSKILL.md
145const label = useMemo(() => `${count} items`, [count]);
medium line 148

Template literal with variable interpolation in command context

SourceSKILL.md
148const label = `${count} items`;
medium line 189

Template literal with variable interpolation in command context

SourceSKILL.md
189const [fullName, setFullName] = useState(`${first} ${last}`);
medium line 190

Template literal with variable interpolation in command context

SourceSKILL.md
190useEffect(() => setFullName(`${first} ${last}`), [first, last]);
medium line 193

Template literal with variable interpolation in command context

SourceSKILL.md
193const fullName = `${first} ${last}`;
low line 63

Fetch to external URL

SourceSKILL.md
63const res = await fetch('/api/products');
Scanned on Mar 23, 2026
View Security Dashboard