OpenOrbit
The local control plane for continuously evaluating, supervising, and improving AI systems.
OpenOrbit does not use AI merely to automate work. It automates the operating cycle around an AI system itself: evaluate it on a schedule, retain evidence, review supervisor feedback, and make its improvement history observable.
Run the control room locally, keep the operational record in your own AppData, and decide which changes deserve approval.
Why OpenOrbit?
An AI feature can look healthy in a demo and still regress after a prompt, model, tool, or product change. OpenOrbit gives that feature a repeatable operating loop rather than a one-off test:
flowchart LR
A[AI system] --> B[Recurring evaluation]
B --> C[Logs, browser evidence, and traces]
C --> D[Supervisor review]
D --> E[Issues and improvement proposals]
E --> F[Human-approved changes]
F --> A
What you can do
- Define reusable evaluation builds from a target, workflow, runner, fixed test cases, manager prompt, and AI model profile.
- Run a one-off test before saving a build, or run its configured lifecycle repeatedly with clear approval boundaries.
- Inspect every phase through process logs, structured evidence, browser screenshots, supervisor responses, and OpenTelemetry traces.
- Review reported issues and proposed improvements in a durable decision history.
- Observe the PDCA cycle across iterations instead of treating a single model response as the whole story.
- Stop active work from one local control room.
Product tour
OpenOrbit is designed around the information an operator needs at each stage:
| Area | What it answers |
|---|---|
| Dashboard | Is the AI system healthy right now? What changed recently? |
| Evaluation builds | What exactly is being evaluated, with which assets and policy? |
| Evaluation run detail | What happened in each phase, and what evidence supports the result? |
| Improvement results | Are feedback, decisions, and scores actually improving over time? |
The screenshots below follow a customer-support AI through recurring quality evaluation, an evidence-backed failed handoff, and a proposed improvement.
Monitor a healthy AI system
Start with the operating picture: completed evaluations, active work, errors, and the latest supervisor feedback. This lets an operator spot a regression before opening an individual run.
Review a successful evaluation result
Open a retained run to see the supervisor score and decision beside the improvements and issues supported by that evaluation. Every proposal remains connected to the iteration that produced it.
Review evidence across the improvement cycle
Compare feedback volume, accepted changes, scores, and run health across multiple evaluation builds. The history makes it clear whether the operating cycle is improving the AI system over time.
Ask an AI assistant what to do next
Configure a System AI model to use the built-in Chat Assistant for questions about evaluation work, runners, and the control room. Your own AI agent can work with the same local operating data through OpenOrbit's versioned API.
Development partners
|
insighta cloud Inc. Development partner |
Build with us
We are looking for thoughtful collaborators who share our belief that AI systems should be observable, controllable, and continuously improved. Start a fork, open a small issue, improve the docs, or help shape a larger idea—every contribution is welcome.
New to the project? Browse good first issues, ask a question or share an idea in Issues, or read the contribution guide before opening a pull request.
Quick start
Requirements
| Requirement | Version | Used for |
|---|---|---|
| Python | 3.13+ | Local API and runner SDK |
| Git | 2.40+ recommended | Install from Git and repository-backed evaluation cycles |
| Node.js | 24+ | Installing from Git and frontend development |
Run the packaged app
Install the packaged release:
python -m pip install openorbit
orbit run
The wheel already includes the bundled control-room UI, so Node.js and pnpm are not required at runtime. To try an unpublished Git revision instead, install from its tag or branch; this source installation requires Node.js 24+ and pnpm:
python -m pip install "openorbit @ git+https://github.com/forthfate/openorbit.git@v0.3.0"
Or run it once with npm:
npx openorbit run
Open http://127.0.0.1:3000. If that port is occupied, OpenOrbit selects the next available port and prints its URL. Set ORBIT_PORT and ORBIT_HOST when you need a specific listener:
ORBIT_PORT=8787 ORBIT_HOST=0.0.0.0 orbit run
Run from this repository
git clone https://github.com/forthfate/openorbit.git
cd openorbit
uv sync --extra dev
corepack enable
pnpm install
pnpm run build
pnpm run run
For frontend development, start the API and Vite separately:
uv run uvicorn app.main:app --app-dir backend --reload --port 3000
pnpm --filter agent-improvement-console-ui run dev
Then open the Vite URL shown in the terminal, normally http://localhost:5173.
Standalone and BYOA
OpenOrbit is a standalone, local-first control plane. It does not host or resell an AI model, and it does not require an OpenOrbit cloud account.
Bring your own AI: create a model profile for the API provider and model your team already uses, then select that profile for supervisor evaluation, Cycle Improvement AI, or the Chat Assistant. OpenOrbit stores only the environment variable name for a provider credential—not the credential itself—and keeps the operational record in your local AppData.
Browser journeys (optional)
Only evaluation builds that run browser journeys need a Chromium browser and its platform-specific system libraries. This is not required to start OpenOrbit, create assets, review runs, or use non-browser runners.
Your first evaluation loop
- Create or choose an AI model profile in Assets.
- Add the runner, workflow, fixed test cases, and target environment that describe the AI system you want to evaluate.
- Create an Evaluation build from those assets.
- Use Test to execute the build once and inspect its full run detail without adding it to the evaluation-run history.
- Start a regular run when ready, then review evidence and supervisor results in Evaluation runs.
- Use Improvement results to compare scores, feedback, decisions, and cycle health over time.
Core concepts
| Concept | Meaning |
|---|---|
| Asset | A reusable model profile, runner, workflow, prompt, test set, or environment. |
| Evaluation build | A versioned operating configuration that connects assets to one AI-system evaluation. |
| Test | A transient, one-time execution used to validate an evaluation build. |
| Run | A retained execution record, including phases, evidence, logs, and decisions. |
| Supervisor | An AI review step that produces structured evaluation results, issues, and proposals. |
| Improvement cycle | The evidence-backed PDCA loop across multiple evaluations and human decisions. |
Safety and local data
OpenOrbit is local-first. Operational state is stored outside the repository in platform AppData:
- Windows:
%LOCALAPPDATA%\\Orbit - macOS:
~/Library/Application Support/Orbit - Linux:
${XDG_DATA_HOME:-~/.local/share}/orbit
Set ORBIT_APP_DATA to use another location. Model profiles store the name of the environment variable that contains a secret, never the secret itself. Review workflow commands, approved workspace boundaries, and network exposure before connecting a production AI system.
API and extensibility
OpenOrbit exposes a local, versioned API:
- Swagger UI:
http://localhost:3000/api/docs - OpenAPI document:
http://localhost:3000/api/openapi.json - API base:
http://localhost:3000/api/v1
Read the API reference for endpoint details. To add reusable automation, create a Python runner with explicit lifecycle phases:
from orbit_sdk import runner
@runner.phase("run")
def evaluate(ctx):
ctx.log("Run one bounded evaluation step")
if __name__ == "__main__":
runner.main()
Runners are intentionally bounded. They provide evidence to the control plane; they do not start their own scheduler or silently modify a target system.
Contributing
Contributions are welcome: bug reports, evaluation-runner templates, documentation improvements, and product feedback all help.
uv run ruff check orbit/ backend/ tests/
PYTHONPATH=backend uv run pytest -q
pnpm --filter agent-improvement-console-ui run lint
pnpm --filter agent-improvement-console-ui run build
Please open a pull request rather than pushing directly to main. See CONTRIBUTING.md for development, checks, and release rules.
License
Copyright © 2026 forthfate and insighta cloud Inc.
Released under the MIT License.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file openorbit-0.3.0-py3-none-any.whl.
File metadata
- Download URL: openorbit-0.3.0-py3-none-any.whl
- Upload date:
- Size: 508.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d8803d9caa79499e0858d78cbe1c25fac49ce684fcb2c501099592a19b1331a
|
|
| MD5 |
23b59ab07cdbd9e608a5b16ce0d21232
|
|
| BLAKE2b-256 |
2dfb535f52c7c52d6d4d5a1e02622effb1305d659b657ac06edc550941bec1e0
|
Provenance
The following attestation bundles were made for openorbit-0.3.0-py3-none-any.whl:
Publisher:
workflow.yaml on insighta-cloud/openorbit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
openorbit-0.3.0-py3-none-any.whl -
Subject digest:
5d8803d9caa79499e0858d78cbe1c25fac49ce684fcb2c501099592a19b1331a - Sigstore transparency entry: 2748394575
- Sigstore integration time:
-
Permalink:
insighta-cloud/openorbit@ae70e3cec43e3dd8d2c0ebe9974572e895094418 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/insighta-cloud
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yaml@ae70e3cec43e3dd8d2c0ebe9974572e895094418 -
Trigger Event:
workflow_dispatch
-
Statement type: