linear-common-errors
Diagnoses and resolves common Linear API errors, aiding in debugging and troubleshooting integration issues effectively.
Install this skill
Security score
The linear-common-errors skill was audited on May 12, 2026 and we found 17 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 69 | console.log(`OK: ${viewer.name} (${viewer.email})`); |
Template literal with variable interpolation in command context
| 109 | console.warn(`Rate limited (attempt ${attempt + 1}), waiting ${Math.round(delay)}ms`); |
Template literal with variable interpolation in command context
| 228 | console.error(`Input error: ${error.message}`); |
Template literal with variable interpolation in command context
| 230 | console.error(`Linear error [${error.status}]: ${error.message}`); |
Curl to non-GitHub URL
| 82 | curl -s -X POST https://api.linear.app/graphql \ |
Fetch to external URL
| 119 | const resp = await fetch("https://api.linear.app/graphql", { |
Webhook reference - potential data exfiltration
| 190 | ### Error 7: Webhook Signature Mismatch |
Webhook reference - potential data exfiltration
| 192 | // Happens when LINEAR_WEBHOOK_SECRET doesn't match the webhook config |
Webhook reference - potential data exfiltration
| 195 | function verifyWebhook(payload: string, signature: string, secret: string): boolean { |
Webhook reference - potential data exfiltration
| 215 | | Webhook sig mismatch | N/A (local) | N/A | Wrong signing secret | Match `LINEAR_WEBHOOK_SECRET` | |
Access to .env file
| 67 | const client = new LinearClient({ apiKey: process.env.LINEAR_API_KEY! }); |
Access to .env file
| 122 | Authorization: process.env.LINEAR_API_KEY!, |
External URL reference
| 82 | curl -s -X POST https://api.linear.app/graphql \ |
External URL reference
| 119 | const resp = await fetch("https://api.linear.app/graphql", { |
External URL reference
| 243 | - [SDK Error Handling](https://linear.app/developers/sdk-errors) |
External URL reference
| 244 | - [Rate Limiting](https://linear.app/developers/rate-limiting) |
External URL reference
| 245 | - [GraphQL API](https://linear.app/developers/graphql) |