Deterministic orchestration for AI-assisted software delivery.
Project description
Overdrive
Give coding agents real development superpowers.
Instead of one-shot prompting, this system enforces: plan → implement → verify → review → repeat
The result:
- higher code quality
- parallel task execution
- dependency-aware workflows
- full traceability of every step
Ship software faster with agents that follow real engineering workflows — not single-shot prompts.
When to Use Overdrive
When you need:
- Multi-step tasks that need plan → implement → verify → review discipline
- Parallel execution across multiple tasks or repos
- Full audit trail of every agent decision and code change
What You Can Do
Deliver high-quality code with intent-specific pipelines
- Write concise, intent-focused prompts.
- Select or let the orchestrator route work through the most suitable built-in pipeline (for example
feature,bug_fix,refactor,hotfix,docs,test). - Each pipeline step applies intent-specific guidance (
plan/analyze,implement,verify,review,commit) to produce higher-quality outcomes than single-pass generation. - Pipelines iterate review-and-fix loops until findings meet configured tolerance thresholds.
- Full PRDs can be imported and automatically decomposed into dependency-aware execution batches.
Enforce quality controls
- Choose a Human-in-the-Loop mode per task: Autopilot, Supervised, or Review Only.
- Autopilot: runs end-to-end without approvals.
- Supervised: pauses for your approval before implementation and review before commit.
- Review Only: pauses before commit and adds a final completion gate.
- Configure severity thresholds (
critical,high,medium,low) globally or per task to control pass/fail tolerance. - Draft, refine, and commit plan revisions with full lineage before implementation.
Run tasks in parallel across repositories
- Run independent tasks in parallel, with automatic isolated git worktree provisioning for same-repo execution.
- Automatically integrate branches and trigger conflict-resolution flows when collisions occur.
- Route pipeline steps across providers (Codex, Claude, Ollama) with configurable step-to-provider mapping.
- Use the embedded interactive terminal to intervene manually without leaving the orchestrator UI.
Review and fix pull requests
- Review GitHub PRs and GitLab MRs: comment, fix, or fix-and-respond to existing review threads.
- Fix modes go beyond comments — they implement fixes, verify, and commit.
- Post-review gate lets you inspect findings and adjust the decision before anything is posted.
Trace every task
- Track full task history from prompt to completion: task state transitions, plan/workdoc revisions, review decisions, and gate approvals.
- Every task produces a persistent workdoc, plus per-step runtime evidence (
stdout.log,stderr.log,progress.json) and event timeline. - Inspect execution summaries, step outcomes, review findings, total runtime, and commit SHAs in task detail.
Quick Start
GitHub/GitLab users: To use PR/MR review features, install and authenticate the
ghCLI (GitHub) orglabCLI (GitLab). To push task branches, configure SSH keys or HTTPS credentials for youroriginremote. Seedocs/USER_GUIDE.md— GitHub & GitLab Integration for detailed setup.
pip install (recommended)
pip install overdrive-ai
cd /path/to/your/repo
overdrive server
One-liner install
curl -sSL https://raw.githubusercontent.com/Execution-Labs/overdrive/main/scripts/install.sh | bash
Development setup
git clone https://github.com/Execution-Labs/overdrive.git
cd overdrive
make setup # create venv, install backend + frontend
make dev # start backend on :8080 + frontend on :3000
Navigation
| Tab | Purpose |
|---|---|
| Board | Kanban columns with task cards, inline detail/edit, and task explorer |
| Planning | Plan creation, iterative refinement, and revision history per task |
| Execution | Orchestrator status, queue depth, execution batches, pause/resume/drain/stop controls |
| Workers | Provider health (Codex/Claude/Ollama), step-to-provider routing table, active task monitoring |
| Settings | Project selector, concurrency, auto-deps, quality gates, worker config, project commands |
Core Workflows
Create and run a task
- Open Create Work → Create Task.
- Fill task fields (title, type, priority, description). Use
autotype when you want the orchestrator to select the best pipeline. - Transition to
queuedor run from task detail. - Track progress in Execution.
- Review from the task detail modal when it reaches
in_review.
Import a PRD into tasks
- Open Create Work → Import PRD.
- Paste PRD content and preview generated tasks/dependencies.
- Commit the import job.
- Review and execute created tasks from the board.
Use embedded terminal
- Click Toggle terminal in the main UI.
- Start or attach to the active project terminal session.
- Run commands interactively with live output and ANSI support.
- Stop the session from the UI when done.
Task Lifecycle
backlog → queued → in_progress → in_review → done
↓ ↓
blocked (request changes → queued)
↓
cancelled
Tasks support dependency graphs (validated for cycles), automatic dependency inference, parallel execution with configurable concurrency, merge-aware completion for worktree runs, and review cycles with severity-based findings.
Pipeline Templates
Tasks execute through pipeline templates matched to their type. These templates are designed for code quality and delivery reliability, with specialized step flows by task intent:
| Pipeline | Use case / intent | Steps / flow |
|---|---|---|
feature |
Standard feature delivery with planning, quality checks, and commit. | plan → implement → verify → review → commit |
bug_fix |
Diagnose a bug, fix, verify, and commit. | diagnose → implement → verify → review → commit |
refactor |
Structured refactor with analysis and explicit plan first. | analyze → plan → implement → verify → review → commit |
hotfix |
Fast-path production fix without dedicated diagnosis step. | implement → verify → review → commit |
docs |
Documentation updates with quality verification and review. | analyze → implement → verify → review → commit |
test |
Add/adjust tests with validation and review before commit. | analyze → implement → verify → review → commit |
research |
Investigate and produce a report (no commit step). | analyze → report |
repo_review |
Assess repository state, form an initiative plan, then generate execution tasks. | analyze → initiative_plan → generate_tasks |
security_audit |
Scan dependencies/code for security issues, report, and emit remediation tasks. | scan_deps → scan_code → report → generate_tasks |
review |
Analyze and review existing changes, then produce a report. | analyze → review → report |
performance |
Profile baseline, optimize, benchmark, then review and commit. | profile → plan → implement → benchmark → review → commit |
spike |
Timeboxed exploratory prototype and recommendation report. | analyze → prototype → report |
chore |
Mechanical maintenance work with verification and commit. | implement → verify → commit |
plan_only |
Initiative-level planning and decomposition into executable tasks. | analyze → initiative_plan → generate_tasks |
verify_only |
Run checks and report status without making code changes. | verify → report |
commit_review |
Review an existing commit, then fix, verify, and commit. | commit_review → implement → verify → review → commit |
API and CLI
- REST/WebSocket reference:
docs/API_REFERENCE.md - CLI reference:
docs/CLI_REFERENCE.md - End-to-end usage guide:
docs/USER_GUIDE.md
API base path: /api
WebSocket endpoint: /ws
CLI quick reference
# Start server
overdrive server --project-dir /path/to/repo
# Task management
overdrive task create "My task" --priority P1 --task-type feature
overdrive task list --status queued
overdrive task run <task_id>
# Orchestrator control
overdrive orchestrator status
overdrive orchestrator control pause
# Project management
overdrive project pin /path/to/repo
overdrive project list
overdrive project unpin <project_id>
Configuration and Runtime Data
Runtime state is stored in the selected project directory:
.overdrive/runtime.db(canonical runtime state store).overdrive/workdocs/<task_id>.md(canonical task workdocs synced with per-worktree.workdoc.md).overdrive_archive/state_<timestamp>/(archived runtime snapshots on clear)
Execution metadata also records per-step log artifact locations (for example stdout.log, stderr.log, and progress.json) in task run details.
Primary configurable areas:
orchestrator(concurrency, auto deps, review attempts)agent_routing(default role, task-type role routing, provider overrides)defaults.quality_gateworkers(default provider, routing, providers)project.commands(per-language test, lint, typecheck, format commands)project.prompt_injections(per-step additive prompt text appended to worker instructions)
Claude provider example:
{
"workers": {
"default": "claude",
"providers": {
"claude": {
"type": "claude",
"command": "claude -p",
"model": "sonnet",
"reasoning_effort": "medium"
}
}
}
}
Notes:
- Claude CLI must be installed and authenticated locally.
- Reasoning effort flags are only passed when supported by your installed CLI version.
Verify Locally
# Use Python 3.10+ and a local virtualenv
python3 -m venv .venv
.venv/bin/pip install -e ".[test,dev]"
# Backend tests
.venv/bin/pytest -q
# Optional integration tests (skipped by default and in CI)
OVERDRIVE_RUN_INTEGRATION=1 .venv/bin/pytest tests/test_integration_worker_model_fallback.py
OVERDRIVE_RUN_INTEGRATION=1 .venv/bin/pytest tests/test_integration_claude_provider.py
# Frontend checks
npm --prefix web run check
# Frontend smoke e2e
npm --prefix web run e2e:smoke
Local pushes are gated by .githooks/pre-push and run:
.venv/bin/ruff check ..venv/bin/pytest -n auto -qnpm --prefix web run check
Enable hooks once per clone:
git config core.hooksPath .githooks
Documentation
docs/README.md: documentation indexdocs/USER_GUIDE.md: complete user guidedocs/API_REFERENCE.md: endpoint and WebSocket referencedocs/CLI_REFERENCE.md: CLI commands and optionsweb/README.md: frontend-specific setup and test workflowexample/README.md: sample project walkthrough
Versioning
Overdrive follows Semantic Versioning.
During v0.x, the primary compatibility surface is the CLI and configuration schema. The REST/WebSocket API and UI are evolving and may change between minor releases.
License
Released under the MIT License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 overdrive_ai-0.3.6.tar.gz.
File metadata
- Download URL: overdrive_ai-0.3.6.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39af29a60cf874bcdbf8b25d29fc44f102f1f3dfa0f1dc628935941c9ca87f99
|
|
| MD5 |
af1398d3b8972b04166f98dd4f915329
|
|
| BLAKE2b-256 |
c66ed68c2f6dde6ffc3c65eb4842cf6201d399ae866716a5de73589f859c8178
|
Provenance
The following attestation bundles were made for overdrive_ai-0.3.6.tar.gz:
Publisher:
publish.yml on Execution-Labs/overdrive
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
overdrive_ai-0.3.6.tar.gz -
Subject digest:
39af29a60cf874bcdbf8b25d29fc44f102f1f3dfa0f1dc628935941c9ca87f99 - Sigstore transparency entry: 1152924216
- Sigstore integration time:
-
Permalink:
Execution-Labs/overdrive@8a1886266cffc951bba0a9808628976ab614374d -
Branch / Tag:
refs/tags/v0.3.6 - Owner: https://github.com/Execution-Labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@8a1886266cffc951bba0a9808628976ab614374d -
Trigger Event:
release
-
Statement type:
File details
Details for the file overdrive_ai-0.3.6-py3-none-any.whl.
File metadata
- Download URL: overdrive_ai-0.3.6-py3-none-any.whl
- Upload date:
- Size: 1.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2c467810bb92c104c1cabcf17a0e505cf31979eb1ec9dc297232568fcf04a9e
|
|
| MD5 |
b37d287f95d58499e5a1595f6e7d5cef
|
|
| BLAKE2b-256 |
2dd577d321b77af53c7c8e87494bf9934e0f50be606ac57a188eb2f5c7391d56
|
Provenance
The following attestation bundles were made for overdrive_ai-0.3.6-py3-none-any.whl:
Publisher:
publish.yml on Execution-Labs/overdrive
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
overdrive_ai-0.3.6-py3-none-any.whl -
Subject digest:
a2c467810bb92c104c1cabcf17a0e505cf31979eb1ec9dc297232568fcf04a9e - Sigstore transparency entry: 1152924279
- Sigstore integration time:
-
Permalink:
Execution-Labs/overdrive@8a1886266cffc951bba0a9808628976ab614374d -
Branch / Tag:
refs/tags/v0.3.6 - Owner: https://github.com/Execution-Labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@8a1886266cffc951bba0a9808628976ab614374d -
Trigger Event:
release
-
Statement type: