Built-in - These agents are part of the Conductor framework itself. You can configure them, but cannot modify their source code.
What Are Built-in Agents?
Built-in agents are framework-level components that require deep integration with Cloudflare’s platform:- Durable Objects for stateful operations
- Cloudflare AI for embeddings and inference
- Vectorize for vector storage and search
Available Built-in Agents
rag
Vector search + LLM using Cloudflare AI & Vectorize
hitl
Human-in-the-loop approval flows using Durable Objects
Built-in vs Starter Kit
| Aspect | Built-in Agents | Starter Kit Agents |
|---|---|---|
| Source code | Framework (not editable) | Your project (fully editable) |
| Updates | With Conductor releases | You control |
| Platform deps | Deep (DO, AI, Vectorize) | Minimal |
| Customization | Config only | Full code access |
| Examples | rag, hitl | fetch, validate, scrape, etc. |
When to Use Built-in Agents
Userag when you need:
- Manual control over document indexing
- Custom chunking strategies
- Hybrid search (vector + keyword)
- Fine-tuned retrieval parameters
hitl when you need:
- Human approval workflows
- Asynchronous task completion
- Audit trails for decisions
- Multi-step approval chains

