Diagnose performance issues and investigate sudden changes in Ada AI agent metrics...
Use this skill when the user wants to:
First, verify and quantify the problem:
Use get_ada_metric to compare:
- Problem period (e.g., yesterday, this week)
- Baseline period (e.g., previous day, last week)
Quantify:
Narrow down where the issue is occurring:
Use get_available_filters to understand filtering options
Use get_conversations_by_filters with various filters:
- By CSAT score (if CSAT issue)
- By resolution status (if AR issue)
- By handoff status
- By specific date ranges
Look for:
Deep dive into problematic conversations:
Use get_conversation on 15-25 conversations from the problem period
Compare to baseline:
Use get_conversation on 10-15 conversations from normal performance period
Identify differences:
Review what might have changed:
Use get_ada_configuration to review:
- Playbooks
- Guidance/custom instructions
- Actions
- Coaching rules
Ask the user:
Consider non-configuration causes:
Combine findings into a diagnosis:
## Diagnosis
**Issue**: [Specific problem observed]
**Timeframe**: [When it started/occurred]
**Magnitude**: [How bad - percentage change, number affected]
**Root Cause**: [Most likely explanation]
**Evidence**:
1. [Supporting finding 1]
2. [Supporting finding 2]
3. [Supporting finding 3]
**Contributing Factors**:
- [Additional factor if applicable]
Based on root cause, recommend fixes:
## Recommended Actions
### Immediate (Do now)
- [Quick fix to stop the bleeding]
### Short-term (This week)
- [More thorough fix]
### Prevention (Ongoing)
- [How to prevent recurrence]
| Pattern | Common Causes | Investigation Focus |
|---|---|---|
| Sudden drop | Recent config change, broken integration | Config history, recent transcripts |
| Gradual decline | Knowledge becoming outdated, new topics | Topic analysis, knowledge gaps |
| Drop for specific topic | Article issue, playbook problem | Topic-filtered conversations |
| Pattern | Common Causes | Investigation Focus |
|---|---|---|
| Sudden drop | Handoff rule change, action failure | Config changes, error patterns |
| Gradual decline | New question types, shifting traffic | Topic distribution changes |
| Increased handoffs | Trigger sensitivity, customer behavior | Handoff reason analysis |
| Pattern | Common Causes | Investigation Focus |
|---|---|---|
| Sudden spike | Marketing campaign, incident, seasonality | Inquiry topics, external events |
| Gradual increase | Organic growth, new channels | Channel distribution |
| Quality drop with volume | Overwhelmed playbooks, edge cases | Edge case frequency |
## Issue Diagnosis: AR Drop on January 25
### Summary
AR dropped from 71% to 58% on January 25, a 13-point decline.
### Root Cause
The order status API integration failed starting 2am on January 25. All order status inquiries that previously resolved automatically are now being handed off because the agent cannot retrieve order information.
### Evidence
1. 89% of unresolved conversations on Jan 25 involved order status inquiries
2. Agent responses show "I'm unable to retrieve your order status" (API failure message)
3. Same inquiry type had 94% resolution rate the previous week
4. Order status action returning errors in all sampled conversations
### Recommended Actions
**Immediate**
- Check order status API health and connectivity
- Contact backend team to restore API access
**Short-term**
- Add graceful fallback when API is unavailable
- Set up monitoring/alerts for integration failures
**Prevention**
- Implement health checks for critical integrations
- Create runbook for API failure scenarios