A terminal-based coding agent for lightweight, asynchronous development tasks
Project description
OAI Coding Agent
A terminal-based coding agent designed for lightweight, asynchronous development tasks. Unlike traditional coding agents that require constant steering, this agent can work independently or collaboratively, enabling developers to run entire agent fleets for parallel development workflows.
Status: Work in progress, not yet stable.
Getting Started
uv tool install oai-coding-agent
Navigate to your project
cd your-projects-repo
Start the agent
oai
oai --help
oai -p "tell me what you can do in 2-3 sentences"
Overview
This agent uses OpenAI models (default: gpt-5) and supports three distinct modes that enable a progressive trust-building journey:
- Default Mode - Interactive agent that checks in when decisions are needed
- Async Mode - Fully autonomous agent that completes tasks independently
- Plan Mode - Read-only brainstorming mode to create tasks for agent fleets
Features
- Agent Fleets - Run multiple agents in parallel using git worktrees locally or GitHub runners in CI
- Progressive Workflow - Start interactive, build trust, then scale to autonomous agent fleets
- Environment Integration - Automatically loads
.envfiles from your project directory - MCP Support - Leverages Model Context Protocol for enhanced tool capabilities
The Progressive Workflow
Most developers follow this natural progression:
- Start with Default Mode - Get familiar with the agent's capabilities and build trust through interactive sessions
- Scale with Multiple Agents - Run parallel agents using git worktrees for independent tasks
- Deploy Agent Fleets - Use plan mode to design workflows, then spawn agents on GitHub runners for automated PR generation
Installation
1. Clone and install
git clone https://github.com/MattMorgis/oai-coding-agent.git
cd oai-coding-agent
uv venv
Usage
Navigate to any codebase and run:
oai [OPTIONS]
Configure your environment
The agent will automatically load environment variables from your project's .env file. At minimum, you'll need:
# In your project directory (not the agent's directory)
echo "OPENAI_API_KEY=your-key-here" >> .env
Optional variables:
OPENAI_BASE_URL- Custom OpenAI API endpoint
Agent Modes
Default Mode (Interactive)
The agent works alongside you, checking in when decisions are needed:
oai # or explicitly: oai --mode default
Async Mode (Autonomous)
The agent completes tasks independently, documenting assumptions and alternatives:
oai --mode async --prompt "Add error handling to all API endpoints"
Plan Mode (Brainstorming)
Read-only mode for designing tasks that async agents can execute:
oai --mode plan
Running Agent Fleets
Local Fleet with Git Worktrees
# Create worktrees for parallel development
git worktree add -b feature-1 ../agent-1
git worktree add -b feature-2 ../agent-2
# Run agents in each worktree
cd ../agent-1 && oai --mode async --prompt "Implement user authentication"
cd ../agent-2 && oai --mode async --prompt "Add API rate limiting"
GitHub Runner Fleet
- Use plan mode to create independent tasks
- Agents spawn on GitHub runners
- Review PRs in 5-20 minutes
Common Options
-
--version, -v— Show the version and exit -
--model, -m <model>— OpenAI model (default:gpt-5) -
--repo-path <path>— Target repository (default: current directory) -
--prompt, -p <text | ->— Headless mode prompt (-for stdin)
Testing
uv run pytest
Project details
Release history Release notifications | RSS feed
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 oai_coding_agent-0.0.4.tar.gz.
File metadata
- Download URL: oai_coding_agent-0.0.4.tar.gz
- Upload date:
- Size: 117.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5eaa79d210edc067b59ab4c2cce40160f29d4fcf123ed40d2a16788e755528e
|
|
| MD5 |
f3de17e5db28ff2d98d7bfd989a0cc8f
|
|
| BLAKE2b-256 |
a1a831643f3c2866f560bce02765f05b7847d9025e72adbcde6c7f398b024904
|
File details
Details for the file oai_coding_agent-0.0.4-py3-none-any.whl.
File metadata
- Download URL: oai_coding_agent-0.0.4-py3-none-any.whl
- Upload date:
- Size: 51.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01ff887b20bacef03acb993d3c189444e8f91a8f1638a16bb1f9e5c627c1ef85
|
|
| MD5 |
f83945980b659dd937eea446d958fe22
|
|
| BLAKE2b-256 |
13e4b998751f145a8355a66d8e9dd716736f7594b34067064c28f94edc832168
|