Prompt Details
Model
Chat - (gpt-5.5)
Token size
1,278
Example input
[BUSINESS_USE_CASE]: Customer Support
[AVAILABLE_AI_MODELS]: ChatGPT (GPT-5.5)
[AUTOMATION_PLATFORM]: LangGraph
[CURRENT_WORKFLOW]: Customers submit support requests via website chat, email, or WhatsApp. Human agents manually categorize tickets, search documentation, respond, escalate technical issues, and generate reports.
[PRIMARY_BUSINESS_OBJECTIVE]: Reduce support costs
Example output
A. AI ORCHESTRATION ASSESSMENT
Business Objectives
24/7 customer support
Faster ticket resolution
Consistent responses
Lower operational costs
Workflow Complexity
Medium–High
Multiple communication channels
Knowledge retrieval
Escalation paths
Human approvals for sensitive issues
Automation Maturity
5/10
Basic automation exists
No intelligent agent collaboration
Human Involvement
Humans handle:
Refund approvals
Legal issues
VIP customers
Complex technical problems
Existing Systems
CRM
Knowledge Base
Ticketing System
Slack
Email
WhatsApp
MULTI-AGENT STRATEGY SUMMARY
Rather than building one large AI assistant, deploy specialized agents coordinated by a central orchestrator. This improves reliability, maintainability, governance, and scalability while allowing humans to review high-risk actions.
B. AGENT ARCHITECTURE
1. Coordinator Agent
Responsibilities
Receive incoming requests
Route tasks
Track workflow state
Manage agent sequencing
Inputs
Customer request
Metadata
Workflow status
Outputs
Assigned tasks
Workflow updates
Success Criteria
99% correct routing
No orphaned workflows
2. Research Agent
Responsibilities
Search documentation
Retrieve policies
Find previous tickets
Inputs
Customer question
Knowledge base
Outputs
Relevant evidence
Confidence score
Success Criteria
Accurate document retrieval
Low hallucination rate
3. Planning Agent
Responsibilities
Decide resolution strategy
Break work into subtasks
Prioritize actions
Inputs
Research findings
Customer priority
Outputs
Execution plan
Success Criteria
Efficient task sequencing
4. Execution Agent
Responsibilities
Draft responses
Update CRM
Trigger automations
Create tickets
Inputs
Approved plan
Outputs
Completed actions
Success Criteria
Successful execution
Zero unauthorized actions
5. Validation Agent
Responsibilities
Verify accuracy
Check policy compliance
Ensure response quality
Inputs
Draft response
Outputs
Pass/Fail
Corrections
Success Criteria
High-quality responses
Policy adherence
6. Reporting Agent
Responsibilities
Generate dashboards
Calculate KPIs
Produce executive summaries
Inputs
Workflow logs
Outputs
Reports
Analytics
Success Criteria
Accurate reporting
7. Memory & Knowledge Agent
Responsibilities
Maintain long-term knowledge
Index documents
Store conversation history
Inputs
New documentation
Historical interactions
Outputs
Searchable memory
Success Criteria
Fast retrieval
Up-to-date knowledge
8. Human Approval Agent
Responsibilities
Request human approval
Pause workflow
Resume after decision
Inputs
High-risk tasks
Outputs
Approved/Rejected
Success Criteria
No unauthorized critical actions
C. AGENT COMMUNICATION FRAMEWORK
Task Routing
Customer Message
↓
Coordinator
↓
Research
↓
Planning
↓
Execution
↓
Validation
↓
Reporting
Context Sharing
Each agent receives:
Ticket ID
Customer profile
Previous conversation
Retrieved knowledge
Workflow state
Memory Strategy
Vector database for semantic search
Structured SQL for workflow state
Long-term document repository
Session memory for active conversations
Standard Message Format
{
"workflow_id": "WF-1001",
"agent": "Research",
"task": "Retrieve refund policy",
"status": "Completed",
"confidence": 0.96,
"next_agent": "Planning"
}
Retry Logic
Retry transient failures up to 3 times
Exponential backoff
Escalate persistent failures to humans
Failure Handling
Automatic fallback agent
Human escalation
Audit log entry
Notification to operations
AGENT COMMUNICATION MAP
Customer
↓
Coordinator
↓
Research
↓
Planning
↓
Execution
↓
Validation
↓
Reporting
↓
Human Approval
↑
If required
D. WORKFLOW ORCHESTRATION
Trigger Events
New support ticket
Email received
WhatsApp message
Live chat request
Workflow
Customer submits request
Coordinator classifies ticket
Research Agent retrieves relevant information
Planning Agent builds resolution plan
Execution Agent performs actions
Validation Agent verifies output
Human approval for sensitive cases
Reporting Agent logs results
Workflow completes
Parallel Execution
Research Agent and Customer Profile Lookup run simultaneously.
Human Approval Gates
Required for:
Refunds
Account deletion
Legal requests
Security incidents
VIP customers
Completion Conditions
Customer response delivered
CRM updated
Logs recorded
Metrics stored
Bottlenecks
Slow knowledge retrieval
Human approval delays
API rate limits
Optimization
Cache frequent queries
Precompute embeddings
Parallel agent execution
E. GOVERNANCE & SAFETY
Permission Model
Coordinator: Workflow control
Research: Read-only knowledge access
Execution: Limited write permissions
Reporting: Read-only analytics
Human Approval: Final authorization
Escalation Rules
Escalate if:
Confidence < 85%
Policy conflict
Missing information
Security risk
Financial transaction
Audit Logging
Record:
Agent actions
Prompts
Model versions
Decisions
Human approvals
Errors
Prompt Version Management
Semantic versioning
Approval workflow
Rollback capability
Change history
Human Override
Pause workflow
Modify actions
Resume or terminate
Security
Role-based access control
Encryption at rest and in transit
API key rotation
PII masking
Compliance logging
F. PERFORMANCE OPTIMIZATION
Agent Specialization
Use focused prompts for each agent to improve quality.
Token Optimization
Summarize context
Share references instead of full documents
Cache repeated prompts
Latency Reduction
Execute independent tasks in parallel
Cache embeddings
Stream intermediate results
Cost Optimization
Use smaller models for classification
Reserve larger models for complex reasoning
Reuse cached outputs
Reliability
Fallback models
Retry policies
Health monitoring
Scaling
Queue-based orchestration
Stateless agents
Horizontal scaling
Distributed memory services
G. OBSERVABILITY DASHBOARD
KPIs
Workflow Success Rate: 98%
Average Completion Time: 2.5 minutes
AI Cost per Workflow: $0.12
Human Intervention Rate: 18%
Error Rate: 1.5%
Agent Utilization: 82%
Customer Satisfaction: 4.8/5
Monitoring Cadence
Real-time operational dashboard
Daily performance review
Weekly optimization analysis
Monthly governance audit
H. MULTI-AGENT MATURITY SCORECARD
Category
Score
Architecture Design
9/10
Workflow Efficiency
8/10
Agent Collaboration
9/10
Reliability
9/10
Governance
9/10
Scalability
8/10
Business Alignment
10/10
OVERALL MULTI-AGENT MATURITY SCORE
88/100
I. IMPLEMENTATION ROADMAP
Phase 1: Workflow Discovery
Objectives
Map existing support process
Identify automation opportunities
Deliverables
Workflow diagrams
Requirements document
KPIs
100% process coverage
Risks
Incomplete documentation
Phase 2: Agent Design
Objectives
Define specialized agents
Create prompts
Design APIs
Deliverables
Agent specifications
Communication protocols
KPIs
Successful unit tests
Risks
Poor role separation
Phase 3: Pilot Deployment
Objectives
Deploy to a limited user group
Validate performance
Deliverables
Pilot system
Feedback report
KPIs
≥90% successful workflows
Risks
User adoption challenges
Phase 4: Optimization & Scaling
Objectives
Improve efficiency
Expand to all support channels
Deliverables
Production deployment
Monitoring dashboards
KPIs
30% cost reduction
50% faster response time
Risks
Increased infrastructure load
J. EXECUTIVE AI ORCHESTRATION REPORT
MULTI-AGENT STRATEGY SUMMARY
Implement a coordinated multi-agent architecture where each agent has a clearly defined responsibility, with deterministic workflows for critical tasks and human approval for high-risk decisions.
TOP 10 ORCHESTRATION INSIGHTS
Specialize agents by function.
Centralize workflow coordination.
Use shared memory for context consistency.
Validate outputs before execution.
Introduce human approval for sensitive actions.
Cache frequently accessed knowledge.
Run independent tasks in parallel.
Monitor agent health continuously.
Version prompts and workflows.
Measure business outcomes, not just AI metrics.
TOP 5 AUTOMATION OPPORTUNITIES
Automated ticket classification.
AI-powered knowledge retrieval.
CRM updates and record management.
Customer response drafting.
Executive performance reporting.
TOP 5 ARCHITECTURE RISKS
Context drift between agents.
Unclear ownership of tasks.
Hallucinated information.
API dependency failures.
Missing governance controls.
TOP 5 PERFORMANCE IMPROVEMENTS
Parallelize independent tasks.
Cache repeated searches.
Use model routing by task complexity.
Minimize token usage through summarization.
Add automatic retry and fallback logic.
MULTI-AGENT MATURITY SCORE
88/100
MOST IMPORTANT AGENT TO BUILD FIRST
Coordinator Agent, as it manages task routing, workflow state, sequencing, and overall orchestration across all other agents.
ONE RULE FOR ALL FUTURE AI AGENT DESIGNS
Every AI agent should have a single, clearly defined responsibility, explicit inputs and outputs, measurable success criteria, and a safe escalation path to a human for uncertain or high-risk decisions.
By purchasing this prompt, you agree to our terms of service
GPT-5.5
One AI agent can automate a task. A coordinated team of AI agents can automate an entire business process.
This prompt helps AI consultants, automation engineers, and enterprise teams design specialized AI agents, orchestrate workflows, establish governance, optimize performance, and implement scalable multi-agent systems for real-world business operations.
Whether you're building with n8n, LangGraph, CrewAI, AutoGen, OpenAI Agents SDK, or custom orchestration frameworks, this prompt provides a
...more
Added over 1 month ago
