Browse AI Workflows & Automation Section 4: Integration Patterns

Multi-Service Orchestration

9 fill-in slots · from The AI Prompt Handbook for AI Workflows & Automation

Your details

0/9 filled

Multi-Service Orchestration

Orchestrate calls across multiple services:

TASK:
[What needs to be accomplished]

AVAILABLE SERVICES:
1. [Service 1]: [what it does]
2. [Service 2]: [what it does]
3. [Service 3]: [what it does]

GENERATE ORCHESTRATION PLAN:
{
  "steps": [
    {
      "order": 1,
      "service": "service_name",
      "action": "what to call",
      "input": "from where",
      "output": "used by which step"
    }
  ],
  "dependencies": {
    "step_2": ["step_1"],
    "step_3": ["step_1", "step_2"]
  },
  "parallel_opportunities": ["step_2 and step_3 can run together"],
  "rollback_plan": "If step X fails, undo steps 1 through X-1"
}

ERROR SCENARIOS:
- Service timeout: [handling]
- Service error: [handling]
- Inconsistent state: [handling]

Highlighted [slots] are still empty. Downloads are plain .txt — paste into any AI assistant.