Capy
Cloud coding platform for running up to 25 AI agents in parallel.
- Run up to 25 AI agents in parallel: Each task runs in isolation within its own Git worktree (`capy/<task-slug>-<id>` branch) in an independent, sandboxed cloud VM. Process an entire sprint concurrently without merge conflicts or context interference between agents. - Captain + Build + Review triple-agent architecture: Captain is a read-only planning agent that analyzes the codebase and generates detailed specifications (cannot edit files or execute commands). Build is an execution agent that performs file editing, command execution, package installation, and commits. Review automatically performs AI-based code review by adding inline comments to PRs. - Multi-model support: Freely switch between major frontier models such as Claude Opus 4.6/Sonnet 4.5, GPT-5.2/5.3 Codex, Grok 4.1 Fast, Gemini 3 Pro, GLM 4.7, Kimi K2.5, and Qwen 3 Coder on a task-by-task basis. Run the same task with multiple models in parallel to compare results. - GitHub / Slack / Linear / Vercel integration: Automatically generate and manage PRs by connecting to GitHub, create tasks directly from Slack messages, delegate Linear issues, and display them in the Vercel Preview dashboard. - Skills and Agent Instructions configuration: Customize agent coding standards and review rules on a per-project basis using the `.capy/settings.json` configuration file and reusable skill packages. - Context compaction: When approaching token limits in long-running tasks, automatically compress the context while preserving key facts, constraints, and the next action to maintain task continuity. - VM isolation security: Each task runs in an isolated Ubuntu 22.04 VM, and the VM is destroyed after the task is completed. OAuth tokens are stored in an encrypted manner, and only authorized repositories are accessed. Enterprise compliance is available upon request.
๐ป System Requirements
Not required (all LLM inference is delegated to a cloud API)
Not required (project is cloned within a cloud VM). Accessible with just a web browser.
โก Installation
### 4-1. Quick Start
```bash
# No installation required โ start directly in your web browser
# 1. Go to https://capy.ai/ and create an account
# 2. Connect your GitHub repository
# 3. Create a task โ Captain analyzes โ Build agent runs automatically
```
### 4-2. Project Settings
```json
// Example of .capy/settings.json
{
"instructions": "Instructions for coding standards and review rules",
"skills": ["custom-skill-package"],
"runtime": {
"size": "medium",
"env": { "NODE_ENV": "development" }
}
}
```๐งฌ Bio Use Cases
Sprint Parallel Processing
Assign 10-20 issues from the backlog to individual, independent agents for concurrent processing. The Captain analyzes each issue, and the Build agent implements it. The Review agent completes the code review, and a PR is generated in bulk. A task that would normally take one developer a full day to complete is completed in a few hours through parallel processing.
Multimodal A/B Testing
Simultaneously execute the same coding task using Claude Opus 4.6 and GPT-5.3 Codex to directly compare code quality, speed, and cost. Each execution maintains separate conversation histories and VM states. Identify the strengths of each model and establish the optimal model for each task type as a team standard.
Open Source Maintainer Automation
Automate everything from issue triage to implementation, testing, and PR creation. When a bug report is received in Slack, it is converted into a task, tracked in Linear, and the Build agent generates a fix PR, which is then validated by the Review agent. Open-source projects can use this for free.
๐ Update Notes
No update notes yet.
๐งช Related Code of Life
No related Code of Life posts yet.