Analyze automated resolution rate and get recommendations for improving AR using Ada's AI agent data...
Use this skill when the user wants to:
Automated Resolution (AR) measures the percentage of conversations fully resolved by the AI agent without human intervention. Key factors affecting AR:
Establish the baseline:
Use get_ada_metric to retrieve:
- Automated resolution rate (last 7 days and last 30 days for trend)
- Engaged conversation volume
Calculate week-over-week or month-over-month changes if data is available.
Find where automation is failing:
1. Use get_available_filters to understand filter options
2. Use get_conversations_by_filters with automated_resolution_status = "Unresolved"
3. Request 50-100 conversations for pattern analysis
Examine why conversations weren't resolved:
Use get_conversation on 15-25 unresolved conversations
Categorize by failure reason:
Look for the biggest opportunities:
Review customer_inquiry_summary and automated_resolution_reason fields
Group by:
Understand existing capabilities:
Use get_ada_configuration to retrieve:
- Playbooks (what workflows exist?)
- Actions (what can the agent do?)
- Coaching (what guidance exists?)
- Knowledge (through search_knowledge for specific topics)
For each high-volume failure pattern:
1. Use search_knowledge to check if relevant articles exist
2. Use search_coaching to check for relevant guidance
Structure by impact and effort:
## High Impact, Low Effort
- Quick knowledge additions
- New coaching rules
- Playbook tweaks
## High Impact, High Effort
- New action integrations
- Complex playbook creation
- API connections
## Medium Impact
- Edge case coverage
- Refinements to existing content
## AR Analysis Summary
**Current AR**: 65% (last 7 days)
**Previous period**: 62% (prior 7 days)
**Trend**: โ 3% improvement
**Unresolved conversations analyzed**: 75
### Top Unresolved Patterns
| Pattern | Volume | Failure Reason | Potential AR Lift |
|---------|--------|----------------|-------------------|
| Order cancellation requests | 23 | Action limitation | +5% |
| Complex return scenarios | 18 | Knowledge gap | +4% |
| Account access issues | 12 | Handoff trigger | +2% |
### Recommendations
#### 1. Order Cancellation (Highest Impact)
**Problem**: Agent can't cancel orders; always hands off
**Solution**:
- Create action integration with order management system
- Add playbook for cancellation flow
**Expected impact**: +5% AR
#### 2. Complex Returns
**Problem**: Return policy article doesn't cover exchanges or partial returns
**Solution**:
- Expand "Returns" knowledge article
- Add coaching for edge cases
**Expected impact**: +4% AR
#### 3. Account Access
**Problem**: Agent hands off on all password reset requests
**Solution**:
- Review handoff trigger rules
- Add self-service password reset playbook
**Expected impact**: +2% AR