Automation Recipes
π Content Creation & Marketing
Recipe 1: Daily Blog Article Generator
{
"name": "Daily Blog Article Generator",
"trigger": {
"type": "schedule.daily",
"time": "09:00",
"timezone": "America/New_York"
},
"actions": [
{
"type": "findTasks",
"projectId": "blog_content_tracker",
"filters": {
"customField": {
"post_status": {
"not_equals": "posted"
}
}
},
"returnType": "array",
"limit": 5
},
{
"type": "loop.forEach",
"array": "{{steps.0.tasks}}",
"actions": [
{
"type": "agent.runCommand",
"agentId": "blog_writer_agent",
"command": "write_full_article",
"input": {
"title": "{{loop.item.name}}",
"word_count": "1500",
"tone": "professional",
"include_images": true
}
},
{
"type": "createProject",
"name": "{{loop.item.name}}",
"content": "{{steps.1.output}}",
"tags": ["blog", "auto-generated"]
},
{
"type": "wordpress.createPost",
"title": "{{loop.item.name}}",
"content": "{{steps.1.output}}",
"status": "publish",
"categories": ["blog"],
"tags": ["automated", "ai-generated"]
},
{
"type": "updateCustomField",
"taskId": "{{loop.item.id}}",
"fieldName": "post_status",
"value": "posted"
},
{
"type": "updateCustomField",
"taskId": "{{loop.item.id}}",
"fieldName": "wordpress_url",
"value": "{{steps.3.postUrl}}"
}
]
}
]
}Create Content Calendar Project
Add Custom Fields
Set Up Automation Trigger
Configure Social Media Actions
Add Status Updates
π― Lead Generation & Sales
Recipe 1: Lead Capture & Qualification
Recipe 2: Deal Stage Automation
π§ Customer Support
Recipe 3: Intelligent Ticket Routing
π Content & Marketing
Recipe 4: Content Creation Pipeline
π§ Development & Project Management
Recipe 5: GitHub Issue to Project Task
π Data Processing & Analytics
Recipe 6: Weekly Analytics Report
π’ HR & Operations
Recipe 7: Employee Onboarding Automation
π― E-commerce & Sales
Recipe 8: Abandoned Cart Recovery
π§ Custom Recipe Builder
Template Structure
Best Practices
Last updated