Why Use This This skill provides specialized capabilities for jeremylongshore's codebase.
Use Cases Developing new features in the jeremylongshore repository Refactoring existing code to follow jeremylongshore standards Understanding and working with jeremylongshore's codebase structure
Install Guide 2 steps 1 2 Install inside Ananke
Click Install Skill, paste the link below, then press Install.
https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/linear-pack/skills/linear-rate-limits Skill Snapshot Auto scan of skill assets. Informational only.
Valid SKILL.md Checks against SKILL.md specification
Source & Community
Updated At Mar 11, 2026, 05:33 AM
Skill Stats
SKILL.md 61 Lines
Total Files 2
Total Size 2.0 KB
License MIT
---
name: linear-rate-limits
description: |
Handle Linear API rate limiting and quotas effectively.
Use when dealing with rate limit errors, implementing throttling,
or optimizing API usage patterns.
Trigger with phrases like "linear rate limit", "linear throttling",
"linear API quota", "linear 429 error", "linear request limits".
allowed-tools: Read, Write, Edit, Grep
version: 1.0.0
license: MIT
author: Jeremy Longshore <jeremy@intentsolutions.io>
compatible-with: claude-code, codex, openclaw
---
# Linear Rate Limits
## Overview
Understand and handle Linear API rate limits for reliable integrations.
## Prerequisites
- Linear SDK configured
- Understanding of HTTP headers
- Familiarity with async patterns
## Instructions
1. Step 1: Basic Rate Limit Handler
2. Step 2: Exponential Backoff
3. Step 3: Request Queue
4. Step 4: Batch Operations
5. Step 5: Query Optimization
For full implementation details and code examples, load:
`Read(${CLAUDE_SKILL_DIR}/references/implementation-guide.md)`
## Output
- Rate limit monitoring
- Automatic retry with backoff
- Request queuing and throttling
- Batch processing utilities
- Optimized query patterns
## Error Handling
| Error | Cause | Solution |
|-------|-------|----------|
| `429 Too Many Requests` | Rate limit exceeded | Use backoff and queue |
| `Complexity exceeded` | Query too expensive | Simplify query structure |
| `Timeout` | Long-running query | Paginate or split queries |
## Resources
- [Linear Rate Limiting](https://developers.linear.app/docs/graphql/rate-limiting)
- [GraphQL Complexity](https://developers.linear.app/docs/graphql/complexity)
- [Best Practices](https://developers.linear.app/docs/graphql/best-practices)
## Next Steps
Learn security best practices with `linear-security-basics`.
## Examples
**Basic usage**: Apply linear rate limits to a standard project setup with default configuration options.
**Advanced scenario**: Customize linear rate limits for production environments with multiple constraints and team-specific requirements.