maintainx-common-errors
Helps debug and resolve common MaintainX API errors, ensuring smooth integration and functionality.
Install this skill
Security score
The maintainx-common-errors skill was audited on Feb 28, 2026 and we found 16 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 56 | 'Authorization': `Bearer ${apiKey}`, // Correct |
Template literal with variable interpolation in command context
| 57 | // NOT: `Bearer${apiKey}` (missing space) |
Template literal with variable interpolation in command context
| 121 | 'Authorization': `Bearer ${apiKey}`, |
Template literal with variable interpolation in command context
| 202 | console.error(`Work order ${id} not found`); |
Template literal with variable interpolation in command context
| 239 | throw new Error(`Asset ${data.assetId} not found`); |
Template literal with variable interpolation in command context
| 248 | throw new Error(`Location ${data.locationId} not found`); |
Template literal with variable interpolation in command context
| 277 | console.log(`Rate limited. Waiting ${retryAfter}s...`); |
Template literal with variable interpolation in command context
| 310 | console.log(`Server error. Retrying in ${delay}ms...`); |
Template literal with variable interpolation in command context
| 374 | console.log(`\n=== ${description} ===`); |
Template literal with variable interpolation in command context
| 381 | console.log(`SUCCESS (${duration}ms)`); |
Access to .env file
| 49 | const apiKey = process.env.MAINTAINX_API_KEY; |
External URL reference
| 64 | // https://api.getmaintainx.com/v1/users?limit=1 |
External URL reference
| 82 | "https://api.getmaintainx.com/v1/users?limit=1") |
External URL reference
| 421 | - [MaintainX API Status](https://status.getmaintainx.com) |
External URL reference
| 422 | - [MaintainX Help Center](https://help.getmaintainx.com) |
External URL reference
| 423 | - [API Documentation](https://maintainx.dev/) |