Jump-start your AI automation with pre-built, production-ready agent templates. Each template includes optimized prompts, recommended tools, and best-practice configurations.
You can create and share your own templates within your organization:
POST /api/templates
Content-Type: application/json
{
"name": "my-custom-template",
"displayName": "My Custom Template",
"description": "A template for specific use case",
"category": "custom",
"visibility": "organization", // or "public" for marketplace
"agentConfig": {
"agentType": "assistant",
"modelConfig": {
"provider": "anthropic",
"model": "claude-sonnet-4-20250514",
"temperature": 0.7
},
"systemPrompt": "...",
"tools": ["tool-1", "tool-2"],
"guardrails": { ... }
},
"metadata": {
"author": "user@example.com",
"version": "1.0.0",
"tags": ["marketing", "content"]
}
}