Skip to main content

debugging-patterns

Provides expert strategies for debugging various errors, including stack trace analysis and common error resolution patterns.

Install this skill

or
75/100

Security score

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

Categories Tested

Security Issues

medium line 136

Template literal with variable interpolation in command context

SourceSKILL.md
136throw new Error(`HTTP ${response.status}`);
medium line 142

Template literal with variable interpolation in command context

SourceSKILL.md
142throw new Error(`Invalid JSON: ${text.slice(0, 100)}`);
medium line 307

Template literal with variable interpolation in command context

SourceSKILL.md
307throw new Error(`${response.status} ${message}`);
medium line 328

Template literal with variable interpolation in command context

SourceSKILL.md
328throw new Error(`Request timeout after ${timeout}ms`);
low line 154

Access to .env file

SourceSKILL.md
154const env = process.env.NODE_ENV;
low line 158

Access to .env file

SourceSKILL.md
158const env = process.env['NODE_ENV'];
low line 268

External URL reference

SourceSKILL.md
268Access to fetch at 'https://api.example.com' has been blocked by CORS policy
low line 273

External URL reference

SourceSKILL.md
273res.setHeader('Access-Control-Allow-Origin', 'https://yoursite.com');
low line 283

External URL reference

SourceSKILL.md
283target: 'https://api.example.com',
Scanned on Feb 9, 2026
View Security Dashboard