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 agentmods add instructions/mixedbread-ai/skills/claude-mdgit clone --depth 1 https://github.com/mixedbread-ai/skillsWrote 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/instructions/mixedbread-ai/skills/claude-md)<a href="https://agentmods.dev/instructions/mixedbread-ai/skills/claude-md"><img src="https://agentmods.dev/badge/instructions/mixedbread-ai/skills/claude-md.svg" alt="Measured on agentmods" height="20"></a>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 | $0.01225 | $0.01225 |
| Opus 5 | $0.00613 | $0.00613 |
| Sonnet 5 | $0.00245 | $0.00245 |
| Haiku 4.5 | $0.00122 | $0.00122 |
Grade A, and why
skills CLAUDE.md 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 5d 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 — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Mixedbread Skills
Agent skills for building search, RAG, and document parsing with Mixedbread.
Repository Structure
skills/— Each subdirectory is a self-contained skill with aSKILL.mdskills/mxbai-cli/— CLI tool usageskills/mixedbread-search/— Stores API & SDKsskills/mixedbread-parsing/— Parsing API & OCRskills/mixedbread-search-agent/— Toast-1 completions API, tool contracts & Stores wiringskills/mixedbread-search-agent-harness/— Custom search-model harness design
.claude-plugin/— Claude Code plugin configuration.cursor-plugin/— Cursor plugin configuration.mcp.json— MCP server configurationgemini-extension.json— Gemini CLI extension configurationagents/AGENTS.md— Fallback instructions for Codex/OpenAI agentsSKILL_TREE.md— Navigable index of all skillsbenchmark.sh— Blind A/B comparison of agent output with and without the skills
Conventions
- Each skill's
SKILL.mduses YAML frontmatter withnameanddescriptionfields - The
descriptionfield determines when the agent activates the skill — write it as a trigger condition - Open with docs links and close with a Troubleshooting table. Everything between is up to the skill — name sections after what they actually cover rather than forcing a fixed template
- Do not group guidance by severity. Where a reference table already carries the constraint, let it; where the constraint is a mistake to avoid, state it as a flat "Don't" list
- Prefer tables and code over prose. State the fact and the fix; cut the explanation of why unless the agent gets it wrong without it
- Keep
SKILL.mdunder 500 lines. Past that, move detail intoreferences/and say in the pointer when to read each file - Do not duplicate broad public API reference docs. Bundle focused behavioral references when a skill depends on non-obvious product or harness contracts, and link public docs for the general surface.
- Keep the search-model guidance backend-agnostic and isolate the Mixedbread wiring in its own reference. The model brings no retrieval of its own, so a skill that only shows Stores-backed tools teaches the wrong contract.
- Skills install as separate plugins, so a relative path into a sibling skill does not resolve. When two skills need the same reference —
tool-contracts.mdis the current case — duplicate the file in full rather than summarizing it in one of them, and update both copies together. - The served model id is
toast-1. - SDK-facing examples normally cover both Python and TypeScript. Stores and parsing use the first-party SDKs (
mixedbread,@mixedbread/sdk); the search agent uses the official OpenAI clients against Mixedbread's base URL. Harness-internal guidance may stay Python. - The two OpenAI clients carry Mixedbread's protocol extensions differently — Python requires
extra_body, Node takes them inline with a type cast — so write each language reference from a verified example rather than translating the other. - API base URL:
https://api.mixedbread.com/ - API key env var:
MXBAI_API_KEY - CLI tool:
mxbai(installed vianpm install -g @mixedbread/cli)
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.
- 5d ago First seen · 72 lines · 1,225 tokens per session scan A 7d97d2c74852
skills CLAUDE.md is an instructions file published in the GitHub repository mixedbread-ai/skills (13 stars, last pushed 13d ago), licensed Apache-2.0. It adds 1,225 tokens to every session, about $0.0061 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 instructions, from other repositories
skills CLAUDE.md
Claude Code instructions for ivuorinen/skills, covering claude.md, what this repo is, development commands, commands and agent skills spec compliance.
skills copilot-instructions.md
Copilot instructions for ivuorinen/skills, covering copilot cloud agent instructions, what this repository is, repository layout, the commands and file format — non-negotiable rules.
skills AGENTS.md
AGENTS.md instructions for ivuorinen/skills, covering agent instructions and working on this repo.
SearChat CLAUDE.md
Claude Code instructions for yokingma/SearChat, covering claude.md, project overview, architecture, monorepo structure and key technologies.
mcp-steroid CLAUDE.md
Claude Code instructions for jonnyzzz/mcp-steroid, covering claude.md, agents.md, design philosophy, recursive context lookup (do this before sub-folder work), sub-folder guides and must do.
claude-code-search AGENTS.md
Instructions for mblode/claude-code-search, covering agents.md — claude-code-search, commands, this is a react app that renders to a terminal, build shape and reading session history.