https://github.com/mixedbread-ai/skills
Agent skills for search, RAG, and document parsing with Mixedbread. Install with: npx skills add mixedbread-ai/skills
https://github.com/mixedbread-ai/skills
agent-skill agent-skills parsing rag search skills-sh
Last synced: about 1 month ago
JSON representation
Agent skills for search, RAG, and document parsing with Mixedbread. Install with: npx skills add mixedbread-ai/skills
- Host: GitHub
- URL: https://github.com/mixedbread-ai/skills
- Owner: mixedbread-ai
- License: apache-2.0
- Created: 2026-02-27T09:41:31.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-05-13T14:08:46.000Z (about 2 months ago)
- Last Synced: 2026-05-13T16:15:14.446Z (about 2 months ago)
- Topics: agent-skill, agent-skills, parsing, rag, search, skills-sh
- Language: Shell
- Homepage: https://www.mixedbread.com/docs/skills
- Size: 107 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Agent skills for building search, RAG, and document parsing with [Mixedbread](https://www.mixedbread.com). Compatible with Claude Code, Cursor, Codex, Gemini CLI, and [20+ other agents](https://skills.sh/).
## Installation
Install all skills with one command (works with Claude Code, Cursor, Codex, Gemini CLI, and more):
```bash
npx skills add mixedbread-ai/skills
```
Or install globally for all projects:
```bash
npx skills add mixedbread-ai/skills -g
```
Browse on the registry: [skills.sh/mixedbread-ai/skills](https://skills.sh/mixedbread-ai/skills)
### Platform-Specific Alternatives
Claude Code
```bash
claude install-skill mixedbread-ai/skills mxbai-cli
claude install-skill mixedbread-ai/skills mixedbread-search
claude install-skill mixedbread-ai/skills mixedbread-parsing
```
Cursor
This repo ships as a Cursor marketplace with three separately-installable plugins (`mxbai-cli`, `mixedbread-search`, `mixedbread-parsing`). Install from the [Cursor marketplace](https://cursor.com/marketplace), or test locally by cloning into `~/.cursor/plugins/local`:
```bash
git clone https://github.com/mixedbread-ai/skills ~/.cursor/plugins/local/mixedbread-skills
```
Cursor reads `.cursor-plugin/marketplace.json` at the repo root.
Codex
```bash
cp agents/AGENTS.md .agents/AGENTS.md
```
Gemini CLI
Reference the `gemini-extension.json` for extension configuration, or use the `.mcp.json` for MCP server integration.
## Available Skills
| Skill | Description |
|-------|-------------|
| [`mxbai-cli`](skills/mxbai-cli/SKILL.md) | Manage stores, upload files, search, and sync using the `mxbai` CLI |
| [`mixedbread-search`](skills/mixedbread-search/SKILL.md) | Create and search managed knowledge bases using the Stores API and SDKs |
| [`mixedbread-parsing`](skills/mixedbread-parsing/SKILL.md) | Parse documents, extract structured content, and run OCR using the Parsing API |
See [SKILL_TREE.md](SKILL_TREE.md) for a navigable index of all skills.
## Repository Structure
```
mixedbread-skills/
├── .claude-plugin/ # Claude Code plugin config
├── .cursor-plugin/ # Cursor plugin config
├── .mcp.json # MCP server config
├── gemini-extension.json # Gemini CLI extension
├── agents/AGENTS.md # Codex fallback
├── CLAUDE.md # Project conventions
├── SKILL_TREE.md # Navigable skill index
├── README.md
├── LICENSE
└── skills/
├── mxbai-cli/ # CLI tool usage
├── mixedbread-search/ # Stores API & SDKs
└── mixedbread-parsing/ # Parsing API & OCR
```
## Links
- [Documentation](https://www.mixedbread.com/docs)
- [API Reference](https://www.mixedbread.com/api-reference)
- [CLI Guide](https://www.mixedbread.com/cli)
- [Platform (API Keys)](https://platform.mixedbread.com)
- [GitHub](https://github.com/mixedbread-ai)
## License
Apache-2.0 — see [LICENSE](LICENSE).