agent-instructions
Use when writing project instructions for a coding agent (CLAUDE.md, AGENTS.md, or equivalent). Covers what belongs in them, what does not, structure, and…
Use when integrating an LLM API into an application. Covers streaming, retries and rate limits, timeouts, caching, fallback across providers, and the production concerns that a tutorial integration ignores.
$ npx -y skills add nimadorostkar/Claude-Skills-collection --skill llm-integration --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/llm-integrationContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when integrating an LLM API into an application. Covers streaming, retries and rate limits, timeouts, caching, fallback across providers, and the production concerns that a tutorial integration ignores.
name: llm-integration description: Use when integrating an LLM API into an application. Covers streaming, retries and rate limits, timeouts, caching, fallback across providers, and the production concerns that a tutorial integration ignores. metadata: category: ai version: 1.0.0 tags: [llm, api, streaming, retries, production]
Integrate a language model into a production application, where the API is slow, rate-limited, occasionally down, and billed per token — none of which the quickstart mentions.
1. **Stream anything a human waits for** — A 12-second response that starts rendering at 400ms feels fast. The same response delivered at once feels broken. Streaming is a perceived-latency fix, not a throughput one. 2. **Handle rate limits properly** — Honor `Retry-After`. Exponential backoff with jitter. A retry storm against a rate-limited endpoint extends the outage. 3. **Set a timeout** — LLM calls can hang. An unbounded call holds a connection and a worker until something else breaks. 4. **Cache the stable prefix** — Prompt caching makes a large system prompt nearly free after the first call. This is often the largest single cost reduction available. 5. **Fail over deliberately** — A second provider or a smaller model as a fallback. Decide in advance whether a degraded answer is better than no answer for this feature. 6. **Instrument tokens and cost per call** — Attributed to the feature and the tenant. Without this, an LLM bill is an unexplainable number.
**A production client: timeout, retry, cache, fallback:**
class LLMClient:
def __init__(self, primary: Provider, fallback: Provider | None = None):
self.primary = primary
self.fallback = fallback
self.breaker = CircuitBreaker(failure_threshold=5, reset_timeout=30)
async def complete(
self,
system: str,
messages: list[Message],
*,
max_tokens: int = 2048,
timeout: float = 60.0,
) -> Completion:
for attempt in range(3):
try:
if self.breaker.is_open:
break # skip straight to the fallback
async with asyncio.timeout(timeout):
result = await self.primary.complete(
system=[{
"type": "text",
"text": system,
"cache_control": {"type": "ephemeral"}, # cache the prefix
}],
messages=messages,
max_tokens=max_tokens,
)
self.breaker.record_success()
metrics.record(
provider="primary",
input_tokens=result.usage.input_tokens,
cached_tokens=result.usage.cache_read_input_tokens,
output_tokens=result.usage.output_tokens,
cost_cents=cost_of(result.usage),
)
return result
except RateLimitError as e:
# Honor the server's instruction. Do not invent your own backoff.
await asyncio.sleep(e.retry_after or (2 ** attempt) + random.random())
except (APIError, TimeoutError) as e:
self.breaker.record_failure()
if attempt == 2:
break
await asyncio.sleep((2 ** attempt) + random.random())
except BadRequestError:
raise # malformed: retrying changes nothing
if self.fallback:
logger.warning("primary_llm_unavailable_using_fallback")
return await self.fallback.complete(system=system, messages=messages,
max_tokens=max_tokens)
raise LLMUnavailable("primary failed and no fallback is configured")**Streaming to the user while accumulating for storage:**
async def stream_answer(question: str) -> AsyncIterator[str]:
buffer = []
async with client.stream(question) as stream:
async for chunk in stream:
buffer.append(chunk.text)
yield chunk.text # to the user, immediately
awaA curated library of 137 production-grade skills for Claude and other AI coding agents. Every skill follows one structure, speaks with one voice, and earns its place by changing what the agent does.
Repo: nimadorostkar/Claude-Skills-collection
Use when writing project instructions for a coding agent (CLAUDE.md, AGENTS.md, or equivalent). Covers what belongs in them, what does not, structure, and…
Use when an agent needs state that survives a session or a context compaction. Covers what to persist, file-based memory, structuring notes for retrieval, and…
Use when automating agent behavior with lifecycle hooks. Covers hook events, deterministic enforcement of rules the model should not be trusted to remember,…
Use when packaging skills, commands, hooks, and MCP servers into a distributable plugin. Covers manifest structure, bundling, versioning, testing, and…
Use when writing a new skill for an AI agent. Covers scoping, description writing for reliable triggering, progressive disclosure, and the difference between a…
Use when reviewing or improving an existing agent skill. Covers triggering accuracy, content quality, redundancy with the base model, and measuring whether the…