eds-performance-debugging
Guides developers in debugging and optimizing performance for EDS blocks, focusing on error handling and Core Web Vitals.
Install this skill
Security score
The eds-performance-debugging skill was audited on Feb 19, 2026 and we found 12 security issues across 2 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 69 | throw new Error(`HTTP ${response.status}: ${response.statusText}`); |
Template literal with variable interpolation in command context
| 102 | block.innerHTML = ` |
Template literal with variable interpolation in command context
| 203 | console.warn(`Block took ${duration.toFixed(2)}ms (target: <100ms)`); |
Template literal with variable interpolation in command context
| 205 | console.log(`Block loaded in ${duration.toFixed(2)}ms`); |
Template literal with variable interpolation in command context
| 344 | block.style.minHeight = `${height}px`; |
Template literal with variable interpolation in command context
| 763 | console.log(`Block took ${measures[0].duration.toFixed(2)}ms`); |
Template literal with variable interpolation in command context
| 802 | console.log(`Load time: ${duration.toFixed(2)}ms`); |
Template literal with variable interpolation in command context
| 874 | console.error(`Block ${block.className} failed:`, error); |
Template literal with variable interpolation in command context
| 877 | block.innerHTML = ` |
Fetch to external URL
| 65 | const response = await fetch('/api/data'); |
Fetch to external URL
| 681 | fetch('/api/data') |
Fetch to external URL
| 691 | const response = await fetch('/api/data'); |