plugins/linear-orchestrator/skills/linear-rate-limiting/SKILL.md
This skill should be used when designing bulk operations against Linear — complexity budgets, exponential backoff, request pacing, and avoiding 429s. Activates on "linear rate limit", "linear 429", "linear throttle", "complexity budget".
npx skillsauth add markus41/claude Linear Rate LimitingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Reference: https://linear.app/developers/rate-limiting
Linear bills against:
The complexity budget is what bites large queries. Each query has a cost based on:
first: 100 costs more than first: 10)Every response includes:
X-RateLimit-Limit — allowance per windowX-RateLimit-Remaining — remainingX-RateLimit-Reset — epoch when budget resetsX-Complexity — this query's costX-Complexity-Limit, X-Complexity-Remaining, X-Complexity-ResetThe lib/client.ts GraphQL wrapper exposes these as a callback:
client.onRateLimit((info) => {
if (info.complexityRemaining < 1000) backoff(info.resetIn);
});
When you receive a 429 (or complexity_limit GraphQL error):
X-RateLimit-Reset / X-Complexity-Resetasync function withBackoff<T>(fn: () => Promise<T>, max = 3): Promise<T> {
for (let i = 0; i < max; i++) {
try { return await fn(); }
catch (e: any) {
if (e.status !== 429) throw e;
const reset = Number(e.headers["x-ratelimit-reset"]) * 1000 - Date.now();
await new Promise(r => setTimeout(r, Math.max(reset, 1000) + Math.random() * 500));
}
}
throw new Error("rate-limit retries exhausted");
}
For >50 mutations, pace explicitly:
complexity_remaining < 30%Implementation in lib/rate-limit.ts (token bucket).
Don't poll Linear when you can webhook instead. The bridge agents:
first: 250 if you only need 10every: and none: filters on large connections — they're expensivetools
Build Teams-native agents with the Teams SDK (formerly Teams AI Library v2) — App class, activity routing, adaptive cards, streaming, AI-generated labels, feedback, message extensions, Teams-as-MCP-server, and the bring-your-own-AI pattern with Agent Framework.
tools
Run agents on Microsoft Foundry (formerly Azure AI Foundry) Agent Service — prompt agents vs hosted agents, threads/runs and the Responses API, built-in tools (Bing grounding, code interpreter, file search, MCP, OpenAPI, A2A), connected agents, Entra agent identity, SDKs, and observability/evaluations.
tools
Build and host custom engine agents with the Microsoft 365 Agents SDK — AgentApplication, the Activity protocol, channel reach via Azure Bot Service, hosting Agent Framework or Semantic Kernel engines, and the Agents Toolkit/Playground workflow. Successor to the Bot Framework SDK.
tools
Design, govern, and extend Microsoft Copilot Studio agents — topics, generative orchestration, knowledge, tools and MCP, agent flows, autonomous triggers, publishing channels, Copilot Credits pricing, and solution-based ALM on Power Platform.