Autopilot is the primary product in this repo: a local-first desktop agent that plans → executes → verifies → produces replayable artifacts. It runs on your machine, works in your repo, and keeps the full trace of what happened.
OpenAgents also contains the broader runtime/compiler/market stack used by Autopilot. If you're looking for the philosophy / "why open", start with MANIFESTO.md.
git clone https://github.com/OpenAgentsInc/openagents.git
cd openagents
cargo run -p autopilot-desktop-wgpuFor release builds, see apps/autopilot-desktop-wgpu/docs/migration/EFFUSE_TO_WGPUI_PLAN.md.
Autopilot is designed to be:
- Local-first: runs against your repo on your machine by default
- Verifiable: uses deterministic checks (tests/builds) as the ground-truth loop
- Inspectable: emits structured session logs and artifacts for replay/debug/audit
- Optimizable: uses DSPy-style signatures/modules/optimizers to improve policies over time
- Immediate-mode UI: WGPUI render tree with Zed-inspired layout patterns
The CLI and other agent surfaces live in the same repo but are not the primary path here. If you need them, use the docs index below to navigate the relevant crates and guides.
Start with:
- Desktop docs: apps/autopilot-desktop-wgpu/docs/migration/EFFUSE_TO_WGPUI_PLAN.md
- Docs index (everything else): docs/README.md
- Repo map / ownership: PROJECT_OVERVIEW.md
- Agent contract / contribution norms: AGENTS.md