linear-sdk-patterns
Provides TypeScript/JavaScript SDK patterns and best practices for optimizing Linear API usage and implementing common patterns.
Install this skill
Security score
The linear-sdk-patterns skill was audited on May 12, 2026 and we found 13 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 69 | console.log(`Page 1: ${firstPage.nodes.length} issues`); |
Template literal with variable interpolation in command context
| 73 | console.log(`Page 2: ${secondPage.nodes.length} issues`); |
Template literal with variable interpolation in command context
| 96 | console.log(`${issue.identifier}: ${issue.title}`); |
Template literal with variable interpolation in command context
| 108 | console.log(`${issue.identifier}: ${assignee?.name}`); |
Template literal with variable interpolation in command context
| 188 | return { ok: false, error: `Invalid input: ${error.message}`, retryable: false }; |
Template literal with variable interpolation in command context
| 192 | return { ok: false, error: `[${error.status}] ${error.message}`, retryable }; |
Access to .env file
| 45 | const apiKey = process.env.LINEAR_API_KEY; |
External URL reference
| 267 | - [SDK Getting Started](https://linear.app/developers/sdk) |
External URL reference
| 268 | - [SDK Data Fetching](https://linear.app/developers/sdk-fetching-and-modifying-data) |
External URL reference
| 269 | - [SDK Error Handling](https://linear.app/developers/sdk-errors) |
External URL reference
| 270 | - [Advanced Usage](https://linear.app/developers/advanced-usage) |
External URL reference
| 271 | - [GraphQL Filtering](https://linear.app/developers/filtering) |
External URL reference
| 272 | - [Pagination](https://linear.app/developers/pagination) |