Starter Kit - Everything here ships with your template. You own the code - modify, extend, or delete as needed.
What’s Included
When you create a new Conductor project, you get a complete starter kit of production-ready components:| Category | Count | Description |
|---|---|---|
| System Agents | 9 | Reusable agents for common tasks |
| System Ensembles | 6 | Ready-to-deploy workflows |
| Built-in Agents | 2 | Framework-level agents (configure only) |
| Debug Tools | 8 | Development and testing utilities |
System Agents
Standalone agents you can use as building blocks in your ensembles:fetch
HTTP client with retries and exponential backoff
validate
Multi-evaluator validation (rules, LLM judge, NLP, embeddings)
scrape
3-tier web scraping with bot detection
slug
URL-safe slug generation (nanoid, UUID, base62)
tools
MCP (Model Context Protocol) tool invocation
queries
SQL query execution via Hyperdrive/D1
autorag
Cloudflare AutoRAG - fully managed RAG service
redirect
URL redirect operations (permanent, expiring, magic links)
docs
Documentation generation and serving
System Ensembles
Complete workflows ready to deploy:Infrastructure
Redirects
URL shortening with resolve + management API
Documentation
Auto-generated docs with OpenAPI support
Health Check
/health endpoint for monitoringError Pages
Styled 401, 403, 404, 500 pages
SEO
Built-in Agents
Built-in - Framework-level agents. Configure only - source is not editable.
Debug Tools
Development utilities for testing and troubleshooting:Directory Structure
Customization Philosophy
You own everything in the starter kit. Unlike built-in agents which are framework-level and configure-only, starter kit components are:- Fully editable - Modify the source code directly
- Deletable - Remove what you don’t need
- Copyable - Duplicate and customize for variants
- Versionable - Track changes in Git like any other code
Example: Customizing the Redirect Agent
When to Use What
| Need | Use |
|---|---|
| URL shortening | Redirects |
| API documentation | Documentation |
| Data validation | validate agent |
| External API calls | fetch agent |
| Web scraping | scrape agent |
| Vector search (managed) | autorag agent |
| Vector search (custom) | rag built-in |
| Human approval | hitl built-in |
| MCP tools | tools agent |
| Database queries | queries agent |

