docs/guides/cloud-agents/cloud-agents-vs-ci.mdx
CI/CD is weaker when the work requires:
Cloud agents are useful when the job is:
sequenceDiagram
participant Dev as Developer
participant Repo as Code Repository
participant CI as CI Pipeline (GitHub Actions)
participant MC as Mission Control
participant Agent as Cloud Agent (Continue)
Dev->>Repo: git push (feature-branch)
Repo->>CI: Trigger Build & Test
rect rgb(255, 240, 240)
Note over CI: ❌ Build Fails (Lint/Test Error)
CI->>MC: Emit failure + logs
MC->>Agent: Dispatch "Fix Build" task (attach logs + repo context)
end
Note over Agent: 1. Analyzes error logs
2. Proposes minimal fix
Agent->>Repo: Push fix to agent branch
Agent->>Repo: Open **draft PR** ("[Fix Build] <summary>")
Repo->>CI: Trigger Build & Test (PR checks)
rect rgb(240, 255, 240)
Note over CI: ✅ Build Passes (PR checks)
end
CI->>MC: Report status on PR
MC->>Dev: Notify "Draft PR ready for review"
```
### Pattern 1: CI detects, Agent responds
- CI detects failure or policy issue
- Cloud agent proposes fix and opens PR
- Human reviews
### Pattern 2: Agent prepares, CI verifies
- Cloud agent proposes changes
- CI runs tests and checks
- PR is only mergeable if CI passes
### Pattern 3: Agent maintains, CI enforces
- Agent keeps dependencies tidy weekly
- CI ensures nothing breaks on merge
## A Simple Decision Table
| If your work is... | Prefer... |
|---|---|
| deterministic & testable | CI/CD |
| interpretive & contextual | Cloud agent |
| needs a patch proposal | Cloud agent + CI validation |
| needs strict policy enforcement | CI/CD |
---
## Where to Go Next
<CardGroup cols={2}>
<Card title="Explore Cloud Agent Integrations" icon="rocket" href="https://continue.dev/integrations">
Browse ready-to-use AI agents in Continue Mission Control.
</Card>
<Card title="Mission Control Setup" icon="terminal" href="https://continue.dev">
Get started with Continue Mission Control.
</Card>
</CardGroup>