calling-llms

calling-llms is a skill for Claude Code from xberg-io/liter-llm. It costs 49 tokens per session (605 once invoked), scanned A, original, MIT.

Instructions for sending chat-completion requests through liter-llm and choosing a language-model provider with a provider/model name. It covers request structure, message roles, model hints, and error categories.

In plain words
What is it for?
Create liter-llm clients, build chat requests, select providers such as OpenAI, Anthropic, Google, or Groq, and handle common call errors.
Why use it?
It removes uncertainty about how to format requests and route them to different backends. This helps applications use a consistent client interface across providers.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the liter-llm plugin — 7 skills, 1 MCP server shipped together

Good fit Create liter-llm clients, build chat requests, select providers such as OpenAI, Anthropic, Google, or Groq, and handle common call errors.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xberg-io/liter-llm/calling-llms
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add xberg-io/liter-llm --skill calling-llms
Clone the repo
git clone --depth 1 https://github.com/xberg-io/liter-llm

Made for: Claude Code.

Or install liter-llm, the plugin that ships this one along with the rest of its 7 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for calling-llms

README.md
[![agentmods](https://agentmods.dev/badge/skills/xberg-io/liter-llm/calling-llms/github.svg)](https://agentmods.dev/skills/xberg-io/liter-llm/calling-llms)
Your own site
<a href="https://agentmods.dev/skills/xberg-io/liter-llm/calling-llms"><img src="https://agentmods.dev/badge/skills/xberg-io/liter-llm/calling-llms/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for calling-llms

Your own site · 80×15
<a href="https://agentmods.dev/skills/xberg-io/liter-llm/calling-llms"><img src="https://agentmods.dev/badge/skills/xberg-io/liter-llm/calling-llms.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 605 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.00605
Opus 5 $0.00024 $0.00302
Sonnet 5 $0.00010 $0.00121
Haiku 4.5 $0.00005 $0.00060

Measured 10d ago against content hash d54458381537, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

calling-llms scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugin/.ai-rulez/skills/calling-llms/SKILL.md · 63 lines

How it starts

The opening of the file, as written. The whole thing — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Calling LLMs

Build a ChatCompletionRequest and send it with client.chat(request). Create the client with create_client(...). The model string is provider/model; the prefix selects the backend.

import asyncio, json, os
from liter_llm import create_client
from liter_llm._internal_bindings import ChatCompletionRequest

async def main() -> None:
    client = create_client(api_key=os.environ["OPENAI_API_KEY"])
    request = ChatCompletionRequest.from_json(json.dumps({
        "model": "openai/gpt-4o",
        "messages": [
            {"role": "system", "content": "You are concise."},
            {"role": "user", "content": "Name three Rust crates for HTTP."},
        ],
    }))
    response = await client.chat(request)
    print(response.choices[0].message.content)

asyncio.run(main())

Provider routing

The model string's prefix selects the provider; build a request per backend:

ChatCompletionRequest.from_json('{"model":"anthropic/claude-sonnet-4-20250514","messages":[...]}')
ChatCompletionRequest.from_json('{"model":"google/gemini-2.0-flash","messages":[...]}')
ChatCompletionRequest.from_json('{"model":"groq/llama3-70b","messages":[...]}')
ChatCompletionRequest.from_json('{"model":"mistral/mistral-large-latest","messages":[...]}')
ChatCompletionRequest.from_json('{"model":"bedrock/anthropic.claude-v2","messages":[...]}')

Set model_hint at construction to drop the prefix on every call:

client = create_client(api_key="sk-...", model_hint="openai")
# the request model can now omit the provider prefix:
request = ChatCompletionRequest.from_json('{"model":"gpt-4o","messages":[...]}')
await client.chat(request)  # routes to OpenAI

Notes

  • Keys come from env vars (OPENAI_API_KEY, ANTHROPIC_API_KEY, …); never hardcode them.
  • Without a prefix and without model_hint, routing fails.
  • Python errors are typed exceptions exported from liter_llm: AuthenticationError, RateLimitedError, BadRequestError, ContextWindowExceededError, ContentPolicyError, NotFoundError, ServerError, ServiceUnavailableError, LiterLlmTimeoutError, BudgetExceededError — all subclasses of LiterLlmError.

Read the full file on GitHub · 63 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 63 lines · 49 tokens per session scan A d54458381537

Subscribe to this mod's changes

calling-llms is a skill published in the GitHub repository xberg-io/liter-llm (252 stars, last pushed yesterday), licensed MIT. It adds 49 tokens to every session and 605 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

serving-llms-vllm

Use when deploying production LLM APIs, optimizing inference latency/throughput, or serving models with limited GPU memory. Supports OpenAI-compatible endpoints, quantization (GPTQ/AWQ/FP8), and tensor parallelism.

NousResearch/hermes-agent · 27 tokens

pydantic-ai

Build production-ready AI agents with PydanticAI — type-safe tool use, structured outputs, dependency injection, and multi-model support.

davila7/claude-code-templates · 32 tokens

migrate-from-ai-sdk

Use when porting an app from the Vercel AI SDK (ai, @ai-sdk/) to @deuz-sdk/core. Triggers include "migrate from the AI SDK", "replace ai with @deuz-sdk/core", "we use streamText/generateText/useChat and want to switch", removing @ai-sdk/openai or @ai-sdk/anthropic, porting a toUIMessageStreamResponse route, converting…

Deuz-AI/Deuz-SDK · 118 tokens

byok-relay

OpenAI-compatible LLM gateway for any client-side application (browser, mobile, React Native, Flutter, VS Code extensions, browser extensions, Electron, smart TV, and more). Routes requests to OpenAI, Anthropic, Gemini, Groq, Mistral, and 200+ models, handling CORS, key encryption, and streaming without a dedicated…

avikalpg/byok-relay · 131 tokens

ml-expert

Expert-level machine learning, deep learning, model training, and MLOps. Use when the user mentions machine learning, deep learning, neural networks, MLOps, or data science, or when the task involves Machine Learning Fundamentals, Data Preparation, or Model Training.

personamanagmentlayer/pcl · 58 tokens

openai-patterns

Production OpenAI API patterns — model selection, prompt engineering, function calling, streaming, error handling, cost control, and structured outputs.

chandrudp29/skillhub · 31 tokens