Cross-domain workflow orchestration connecting email, social media, accounting, and file systems
Orchestrates complex workflows across multiple domains (email, social media, accounting, files).
Email (payment request)
→ Create invoice in Odoo
→ Send invoice via email
→ Post update on LinkedIn
→ Update dashboard
File drop (blog post)
→ Post to LinkedIn
→ Post to Twitter
→ Post to Facebook
→ Send email notification
→ Update dashboard
Odoo (new invoice paid)
→ Send thank you email
→ Post testimonial request
→ Update dashboard
workflow = {
"name": "client_invoice",
"trigger": "email_received",
"steps": [
{"action": "create_invoice", "domain": "odoo"},
{"action": "send_email", "domain": "gmail"},
{"action": "post_update", "domain": "linkedin"}
]
}
python .claude/skills/workflow-orchestrator/scripts/workflow_orchestrator.py --workflow client_invoice
Pre-built templates available:
client_invoice - Invoice generation and notificationcontent_publish - Multi-platform content publishingpayment_received - Payment confirmation workflowweekly_report - Weekly business report distribution