dependency-wrapper
Facilitates the integration of third-party libraries by wrapping them for enhanced testability and replaceability in code.
Install this skill
Security score
The dependency-wrapper skill was audited on Feb 19, 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
| 119 | const response = await fetch(`${baseUrl}${path}`, { |
Template literal with variable interpolation in command context
| 158 | super(`HTTP ${status}`); |
Template literal with variable interpolation in command context
| 271 | throw new Error(`Service not registered: ${name}`); |
Template literal with variable interpolation in command context
| 317 | return httpClient.get(`/users/${id}`); |
Template literal with variable interpolation in command context
| 325 | return httpClient.put(`/users/${id}`, data); |
Template literal with variable interpolation in command context
| 352 | const response = responses[`GET ${path}`] ?? responses[path]; |
Template literal with variable interpolation in command context
| 359 | const response = responses[`POST ${path}`] ?? responses[path]; |
Template literal with variable interpolation in command context
| 435 | console.log(`Email to ${to}: ${subject}`); |
Access to .env file
| 289 | apiUrl: process.env.API_URL, |