orbit

by schmitechVerified

Self-hosted, OpenAI-compatible AI gateway for private RAG, natural-language data access, and tool-calling agents.

341
Stars
56
Forks
Python
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/schmitech/orbit

Getting Started

Guides for using skills like orbit.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

ORBIT

ORBIT

Open Retrieval-Based Inference Toolkit

Connect your data (files, databases, APIs, and MCP tools) to any local or cloud LLM. Exposes a unified endpoint for your apps, with built-in authentication and observability.

Try ORBIT in your browser — no installation required →

GitHub stars Last commit Version 2.15.9 Apache 2.0 license Python 3.12+

Quick start  •  Watch the demo  •  Tutorial  •  Documentation



Ask database questions in plain language, in any language.
ORBIT picks a reviewed query template, runs its parameterized query, and charts the result in chat.

👉 Try the SQL Database query demo live →


Upload PDFs, spreadsheets, and images, then query them together with context preserved across the conversation.
👉 Try the multimodal agent demo live →

Architecture

ORBIT request and integration architecture
Authenticate and route REST, OpenAI-compatible, MCP, A2A, or message-queue requests to models, private data, and tools.

One backend for private AI applications

What ORBIT gives you
Connect anythingQuery files, SQL, NoSQL, vector stores, Elasticsearch, REST/GraphQL APIs, and MCP tools in natural language across multiple languages.
Use any modelRoute one API contract across local models such as Ollama, llama.cpp, and vLLM or cloud providers such as OpenAI, Anthropic, Gemini, Bedrock, and Azure.
Operate it safelyShip with API keys, RBAC, SSO, quotas, moderation, fallbacks, metrics, audit logs, and an admin panel instead of assembling them yourself.

ORBIT sits between your applications and the models, data, and tools they need. Define adapters in YAML, expose them through one OpenAI-compatible endpoint, and move from a local prototype to a governed deployment without replacing the architecture.

ORBIT is actively maintained. See the release history, changelog, and commit history.

Capabilities

CapabilityIncluded
Model gateway41 configured inference backends and providers, OpenAI-compatible APIs, per-key routing, model switching, retries, and fallbacks.
RetrievalVector RAG, file and multimodal RAG, SQL, MongoDB, Elasticsearch, REST, GraphQL, web search, and multi-source answers.
Agents and protocolsMCP tool calling, bounded multi-step loops, natural-language skill routing, A2A, and asynchronous RabbitMQ requests.
MediaImage, video, speech, PDF, Word, Excel, PowerPoint, CSV, and markdown generation.
SecurityAPI keys, RBAC, Entra ID and Auth0 SSO, rate limits, quotas, moderation, file encryption, and cloud secret managers.
OperationsAdmin UI, health checks, metrics, audit logs, per-request token and estimated-cost tracking, spend analytics, circuit breakers, datasource pooling, and hot adapter reloads.

Browse all adapters · See provider configuration · Read the configuration reference · Full capability matrix & platform comparison

Finding ORBIT useful? Star the repository to help other developers discover it and support continued investment in new model, datasource, and agent integrations.

🚀 Quick Start

Try ORBIT live — explore the sandbox
Explore the live sandbox instantly—no download, Docker, or setup required.

Install ORBIT

Option 1 (Preferred): Stable release tarball

Prerequisites: Linux or macOS, Python 3.12+, and an internet connection for downloading dependencies.

Download and install the latest stable release:

curl -L https://github.com/schmitech/orbit/releases/download/v2.15.9/orbit-2.15.9.tar.gz -o orbit-2.15.9.tar.gz
tar -xzf orbit-2.15.9.tar.gz
cd orbit-2.15.9
./install/setup.sh --profile default
./bin/orbit.sh start

ORBIT starts on http://localhost:3000. For Windows, follow the Windows installation guide.

ORBIT is highly configurable. The main server settings live in ./config/config.yaml; inference providers, adapters, models, data sources, and other capabilities are configured in the other files under ./config/.

See the server management guide for commands to start, stop, restart, pause, and monitor ORBIT.

To use the optional ORBIT chatbot web interface, install and run orbitchat from your host machine:

npm install -g orbitchat
ORBIT_ADAPTER_KEYS='{"simple-chat":"default-key"}' orbitchat

Then open http://localhost:5173 in your browser.

See the OrbitChat project and documentation for configuration, custom adapters, authentication, and advanced usage.

Option 2: Docker

Prerequisites: Docker, 4 GB of free RAM, and 3 GB of disk space.

Option 1: Local / Offline (Ollama)
docker pull schmitech/orbit-ollama:latest
docker run -d --name orbit -p 5173:5173 -p 3000:3000 \
  -v orbit-data:/orbit/data \
  -v orbit-models:/orbit/models \
  schmitech/orbit-ollama:latest

The first run downloads the local chat/vision model (gemma4:e2b, ~7.2 GB) inside the container and will take some time to complete startup depending on your internet connection speed. Once pulled, open http://localhost:5173 and start chatting — upload a PDF, a spreadsheet, or an image and ask about it. No cloud account or API key required.

Model
Chatgemma4:e2b (Ollama)
Visiongemma4:e2b (Ollama)
Embeddingsnomic-embed-text (Ollama)
Option 2: OpenAI Hosted Model
export OPENAI_API_KEY=sk-...

docker pull schmitech/orbit-openai:latest
docker run -d --name orbit -p 5173:5173 -p 3000:3000 \
  -e OPENAI_API_KEY \
  -v orbit-data:/orbit/data \
  schmitech/orbit-openai:latest
Model
Chatgpt-5.4-mini (also selectable: gpt-5.4, gpt-5.4-nano)
Visiongpt-5.5
Embeddingstext-embedding-3-small
Option 3: Gemini Hosted Model
export GOOGLE_API_KEY=...

docker pull schmitech/orbit-gemini:latest
docker run -d --name orbit -p 5173:5173 -p 3000:3000 \
  -e GOOGLE_API_KEY \
  -v orbit-data:/orbit/data \
  schmitech/orbit-gemini:latest
Model
Chatgemini-3.1-pro-preview (also selectable: gemini-3.6-flash)
Visiongemini-3.6-flash
Embeddingsgemini-embedding-2-preview

Port 5173 is the chat UI, 3000 is the OpenAI-compatible API if you want to call ORBIT directly:

curl -X POST http://localhost:3000/v1/chat/completions \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: multimodal' \
  -H 'X-Session-ID: local-test' \
  -d '{"messages":[{"role":"user","content":"What can ORBIT connect to?"}]}'

Python and Node.js versions of this call using the official OpenAI SDK, including streaming, are in examples/openai-compatible-api/.

For peer-agent orchestration using Google's A2A protocol, see the blocking and streaming Python/Node.js clients in examples/a2a-protocol/.

Using Claude with ORBIT? See Using ORBIT from Claude for both connection options — Claude calling ORBIT as an MCP tool, or a Claude agent addressing ORBIT as a peer via A2A.

Admin Panel at http://localhost:3000/admin (default credentials: username admin, password admin123, set via auth.default_admin_password in config.yaml — change this immediately after first login).

For custom Docker deployments, follow Docker guide.

Continue with the tutorial's fastest path: verify your installation, then create your first chat with a persona, API key, and OrbitChat.

Before you go further, read this: adapters — not the server code — are what define what ORBIT can actually do (retrieval sources, models, voice, file/multimodal handling, and more). They're configured entirely in YAML under config/adapters/ and registered in config/adapters.yaml. See the Adapter overview to understand this system before customizing your deployment.


What you can build

GoalORBIT handles
Chat with private documentsUpload PDFs, office documents, spreadsheets, images, and audio; retrieve relevant context across a conversation. Try the tutorial →
Query databases in multiple languagesGenerate and execute safe queries across SQL, MongoDB, Elasticsearch, and composite datasources. Try the SQL demo →
Build tool-using agentsGive models scoped access to MCP servers with bounded, multi-step server-side tool loops. Read the MCP guide →
Offer one governed AI endpointRoute local and cloud models with per-key access, quotas, fallbacks, moderation, metrics, and auditability. Create your first key →
Talk to a real-time voice assistant grounded in your data


Speech-to-speech voice grounded in SQL databases, APIs, or data lakes — interrupt it mid-answer and it stops and responds immediately.

Let the model use internal tools


Connect filesystem, Slack, Postgres, GitHub, Jira, and other MCP servers without adding an agent framework.
👉 Try the MCP tool calling demo live →

Real-Time Business & Revenue Intelligence (MCP Tool Calling)


Multi-step agent reasoning across 9 synthetic MCP tools: CRM health, telemetry seat utilization, P1 support escalations, and churn risk simulation.
👉 Try the Business & Revenue Intelligence MCP demo live →

Clients and documentation

Start hereResource
Learn ORBITTutorial · Your first chat · HTTP APIs
Configure adaptersAdapter overview · Configuration guide
Connect private dataFiles · Vector stores · SQL
Build agentsMCP tools · Auto skill routing · A2A
Add voiceReal-time voice (speech-to-speech) · Audio services & STT/TTS adapters
Run in productionAuthentication · Usage and cost tracking · Rate limiting · Fault tolerance
Use a clientORBIT Chat · Node.js SDK · API key and Python examples
Evaluate ORBITCapability matrix & platform comparison — a sourced feature-by-feature comparison against LiteLLM, Open WebUI, and commercial AI gateways

See the full documentation index for architecture deep-dives, vector store setup, security hardening, and every other guide under docs/.

Contributing

Contributions are welcome: new retrievers and provider integrations, deployment guides, tests, fixes, and documentation. Read CONTRIBUTING.md, pick an open issue, or start a discussion.

Maintained by Remsy Schmilinsky.

License

ORBIT is licensed under the Apache License 2.0.

Frequently Asked Questions

What is orbit?

orbit is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by schmitech. Self-hosted, OpenAI-compatible AI gateway for private RAG, natural-language data access, and tool-calling agents. It has 341 GitHub stars.

Is orbit safe to use?

Yes. orbit passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install orbit?

Clone the repository with "git clone https://github.com/schmitech/orbit" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is orbit written in?

orbit is primarily written in Python. It is open-source under schmitech on GitHub, so you can review or fork the full source.

Are there alternatives to orbit?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh orbit against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details