Use Claude Code / CodeX CLI to perform multiple tasks in parallel with a Codex-style UI. Your personal codex/cursor-background agent. Claude Code UI.
# Add to your Claude Code skills
git clone https://github.com/ObservedObserver/async-codeUse Claude Code / CodeX CLI to perform multiple tasks in parallel with a Codex-style UI.
A code agent task management system that provides parallel execution of AI-powered coding tasks. Users can run multiple Claude Code agents simultaneously through a Codex-style web interface, with support for different agents for comparison and evaluation.
Clone the repository
git clone <this-repo>
cd async-code
Create the environment file
cp server/.env.example server/.env
Edit server/.env and set your ANTHROPIC_API_KEY. If you are using Supabase, also set SUPABASE_URL, SUPABASE_ANON_KEY and SUPABASE_SERVICE_ROLE_KEY.
Build and start the stack
docker-compose up --build -d
db/init_supabase.sql to create the required tables.server/.env.# server/.env
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Supabase
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=your_anon_key
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key
# Flask configuration
FLAS...