{"id":28996637,"url":"https://github.com/observedobserver/async-code","last_synced_at":"2025-06-25T05:10:48.670Z","repository":{"id":297991449,"uuid":"997402628","full_name":"ObservedObserver/async-code","owner":"ObservedObserver","description":"Use Claude Code / CodeX CLI to perform multiple tasks in parallel with a Codex-style UI. Your personal codex/cursor-background agent.","archived":false,"fork":false,"pushed_at":"2025-06-17T04:29:27.000Z","size":334,"stargazers_count":71,"open_issues_count":4,"forks_count":9,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-17T05:27:56.019Z","etag":null,"topics":["claude-code","codex","cursor-ai"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ObservedObserver.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-06T13:19:35.000Z","updated_at":"2025-06-17T04:29:58.000Z","dependencies_parsed_at":"2025-06-08T20:32:06.052Z","dependency_job_id":null,"html_url":"https://github.com/ObservedObserver/async-code","commit_stats":null,"previous_names":["observedobserver/async-code"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ObservedObserver/async-code","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ObservedObserver%2Fasync-code","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ObservedObserver%2Fasync-code/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ObservedObserver%2Fasync-code/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ObservedObserver%2Fasync-code/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ObservedObserver","download_url":"https://codeload.github.com/ObservedObserver/async-code/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ObservedObserver%2Fasync-code/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261808072,"owners_count":23212694,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["claude-code","codex","cursor-ai"],"created_at":"2025-06-25T05:10:47.975Z","updated_at":"2025-06-25T05:10:48.643Z","avatar_url":"https://github.com/ObservedObserver.png","language":"TypeScript","readme":"# Async Code Agent\n\nUse Claude Code / CodeX CLI to perform multiple tasks in parallel with a Codex-style UI.\n\nA 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.\n\n![async-code-ui](https://github.com/user-attachments/assets/e490c605-681a-4abb-a440-323e15f1a90d)\n\n\n![async-code-review](https://github.com/user-attachments/assets/bbf71c82-636c-487b-bb51-6ad0b393c2ef)\n\n\n## Key Features\n\n- 🤖 **Multi-Agent Support**: Run Claude Code and other AI agents in parallel\n- 🔄 **Parallel Task Management**: Execute multiple coding tasks simultaneously  \n- 🌐 **Codex-Style Web UI**: Clean interface for managing agent tasks\n- 🔍 **Agent Comparison**: Compare outputs from different AI models\n- 🐳 **Containerized Execution**: Secure sandboxed environment for each task\n- 🔗 **Git Integration**: Automatic repository cloning, commits, and PR creation\n- **Selfhost**: Deploy you rown parallel code agent platform.\n\n## Architecture\n\n- **Frontend**: Next.js with TypeScript and TailwindCSS\n- **Backend**: Python Flask API with Docker orchestration\n- **Agents**: Claude Code (Anthropic) with extensible support for other models\n- **Task Management**: Parallel execution system based on container\n\n## Prerequisites\n\n- Docker and Docker Compose installed\n- (Optional) Supabase account for persistent data storage\n\n## Quick Start\n\n1. **Clone the repository**\n   ```bash\n   git clone \u003cthis-repo\u003e\n   cd async-code\n   ```\n\n2. **Create the environment file**\n   ```bash\n   cp server/.env.example server/.env\n   ```\n   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`.\n\n3. **Build and start the stack**\n   ```bash\n   docker-compose up --build -d\n   ```\n\n   - Frontend: http://localhost:3000\n   - Backend API: http://localhost:5000\n\n## Supabase Setup\n\n1. Create a new project in the [Supabase](https://supabase.com) dashboard.\n2. Open the SQL editor and run `db/init_supabase.sql` to create the required tables.\n3. Grab your project URL, anon key and service role key from **Project Settings → API** and place them in `server/.env`.\n\n## Usage\n\n1. **Setup GitHub Token**: Enter your GitHub token in the web interface\n2. **Configure Repository**: Specify target repository and branch\n3. **Select Agent**: Choose your preferred AI agent (Claude Code, etc.)\n4. **Submit Tasks**: Start multiple coding tasks in parallel\n5. **Compare Results**: Review and compare outputs from different agents\n6. **Create PRs**: Generate pull requests from successful tasks\n\n## Environment Variables\n\n```bash\n# server/.env\nANTHROPIC_API_KEY=your_anthropic_api_key_here\n\n# Supabase\nSUPABASE_URL=https://your-project.supabase.co\nSUPABASE_ANON_KEY=your_anon_key\nSUPABASE_SERVICE_ROLE_KEY=your_service_role_key\n\n# Flask configuration\nFLASK_ENV=production\nFLASK_DEBUG=False\n```\n\n\n## Development\n\n```bash\n# Run all services\ndocker-compose up\n\n# Development mode\ncd async-code-web \u0026\u0026 npm run dev  # Frontend\ncd server \u0026\u0026 python main.py      # Backend\n```\n\n## Production Deployment\n\n1. Set `FLASK_ENV=production` in `server/.env` and export `NODE_ENV=production` before running the stack.\n2. Build and start the containers:\n   ```bash\n   NODE_ENV=production docker-compose up --build -d\n   ```\n3. Monitor the logs with:\n   ```bash\n   docker-compose logs -f\n   ```\n\n\n## License\n\nSee LICENSE file for details.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobservedobserver%2Fasync-code","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fobservedobserver%2Fasync-code","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobservedobserver%2Fasync-code/lists"}