embeddings-and-search

embeddings-and-search is a skill for Claude Code from xberg-io/liter-llm. It costs 48 tokens per session (579 once invoked), scanned A, original, MIT.

A programming interface for creating text embeddings, searching the web, reading text from scanned documents with OCR, and reranking search results.

In plain words
What is it for?
It is for turning text into vectors for similarity search, querying web-search providers, extracting text from images or PDFs, and improving result order.
Why use it?
It brings these document and search operations under one provider-and-model setup instead of requiring separate interfaces for each service.

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 It is for turning text into vectors for similarity search, querying web-search providers, extracting text from images or PDFs, and improving result order.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xberg-io/liter-llm/embeddings-and-search
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 embeddings-and-search
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 embeddings-and-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/xberg-io/liter-llm/embeddings-and-search/github.svg)](https://agentmods.dev/skills/xberg-io/liter-llm/embeddings-and-search)
Your own site
<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.

agentmods 80×15 button for embeddings-and-search

Your own site · 80×15
<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>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 579 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.00048 $0.00579
Opus 5 $0.00024 $0.00290
Sonnet 5 $0.00010 $0.00116
Haiku 4.5 $0.00005 $0.00058

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

Security

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.

plugin/.ai-rulez/skills/embeddings-and-search/SKILL.md · 75 lines

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.

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

Read the full file on GitHub · 75 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. 12d ago First seen · 75 lines · 48 tokens per session scan A 53166d5c9131

Subscribe to this mod's changes

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.