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.
npx skills add xberg-io/liter-llm --skill embeddings-and-searchgit clone --depth 1 https://github.com/xberg-io/liter-llmWrote 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.
[](https://agentmods.dev/skills/xberg-io/liter-llm/embeddings-and-search)<a href="https://agentmods.dev/skills/xberg-io/liter-llm/embeddings-and-search"><img src="https://agentmods.dev/badge/skills/xberg-io/liter-llm/embeddings-and-search/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.
<a href="https://agentmods.dev/skills/xberg-io/liter-llm/embeddings-and-search"><img src="https://agentmods.dev/badge/skills/xberg-io/liter-llm/embeddings-and-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00048 | $0.00579 |
| Opus 5 | $0.00024 | $0.00290 |
| Sonnet 5 | $0.00010 | $0.00116 |
| Haiku 4.5 | $0.00005 | $0.00058 |
Grade A, and why
embeddings-and-search 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 12d 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.
How it starts
The opening of the file, as written. The whole thing — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Embeddings and Search
liter-llm exposes embeddings, web search (12 providers), OCR (4 providers), and
reranking through the same provider/model routing convention.
Embeddings
import asyncio, os
from liter_llm import create_client
from liter_llm._internal_bindings import EmbeddingRequest
async def main() -> None:
client = create_client(api_key=os.environ["OPENAI_API_KEY"])
request = EmbeddingRequest.from_json(
'{"model":"openai/text-embedding-3-small","input":["first document","second document"]}'
)
response = await client.embed(request)
for item in response.data:
print(len(item.embedding))
asyncio.run(main())
Many embedding models support dimension selection and base64 output; set
dimensions / encoding_format in the request where the provider allows it.
Web search (12 providers)
from liter_llm._internal_bindings import SearchRequest
client = create_client(api_key=os.environ["BRAVE_API_KEY"])
request = SearchRequest.from_json(
'{"model":"brave/web-search","query":"What is the Rust programming language?","max_results":5}'
)
response = await client.search(request)
for result in response.results:
print(result.title, result.url)
OCR (4 providers)
from liter_llm._internal_bindings import OcrRequest
client = create_client(api_key=os.environ["MISTRAL_API_KEY"])
request = OcrRequest.from_json(
'{"model":"mistral/mistral-ocr-latest",'
'"document":{"type":"document_url","url":"https://example.com/invoice.pdf"}}'
)
response = await client.ocr(request)
for page in response.pages:
print(page.index, page.markdown[:100])
Reranking
Build a RerankRequest (model, query, documents) and call client.rerank(request)
to score and order candidate documents against a query for retrieval pipelines —
combine it with embed for hybrid retrieval. Each result carries index and
relevance_score. Routing follows the same provider/model convention.
Notes
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.
- 12d ago First seen · 75 lines · 48 tokens per session scan A 53166d5c9131
embeddings-and-search is a skill published in the GitHub repository xberg-io/liter-llm (252 stars, last pushed yesterday), licensed MIT. It adds 48 tokens to every session and 579 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.
Other skills, from other repositories
qdrant
Vector search engine for production RAG systems.
dspy
DSPy: declarative LM programs, auto-optimize prompts, RAG.
chroma
Embedding database for RAG and semantic search.
pinecone
Managed vector DB for production RAG and search.
faiss
Fast vector similarity search at billion scale.
pinecone-research
Agent RAG and long-term memory with Pinecone.