Bravo (BRAVO001)
The router. Routes work to the right path — automated or human review.
Overview
Bravo is the traffic controller of the Crella Engine. After Alpha validates data, Bravo determines the optimal path: which agents should handle it, what priority it has, and whether human intervention is needed.
Agent Profile
| Attribute | Value |
|---|---|
| Codename | BRAVO001 |
| Name | Bravo |
| Role | Triage Agent |
| Status | Online |
| Color | #4ECDC4 (Teal) |
Capabilities
- Priority Scoring — Assigns urgency levels (1-5)
- Route Decision — Selects optimal agent path
- Queue Management — Balances workloads across agents
- Workload Balancing — Prevents bottlenecks
- SLA Monitoring — Tracks deadline compliance
Training Status
| Metric | Value |
|---|---|
| Sessions Completed | 5 / 90 |
| Training Level | Learning |
| Last Training | 2026-01-18 |
Progress: ██░░░░░░░░ 6%
Performance Stats
1,180
Total Tasks
97.5%
Success Rate
150ms
Avg Time
$0.003
Cost/Task
Active Missions
MoneyMatcher - Loan Triage
- Status: Active
- Tasks Processed: 1,180
- Function: Routes loan applications to appropriate processing paths
Workflow Position
flowchart LR
Alpha[Alpha] --> Bravo
Bravo --> |Document| Charlie[Charlie]
Bravo --> |Decision| Delta[Delta]
Bravo --> |Research| Echo[Echo]
Bravo --> |Complex| Human[Human Review]
style Bravo fill:#4ECDC4,color:#000
Routing Logic
flowchart TB
Input[Validated Data] --> Analyze[Analyze Task Type]
Analyze --> Type{Task Type?}
Type -->|Has Documents| Charlie[→ Charlie]
Type -->|Needs Decision| Delta[→ Delta]
Type -->|Needs Research| Echo[→ Echo]
Type -->|Complex/Edge| Human[→ Human]
Analyze --> Priority{Priority?}
Priority -->|High| Fast[Fast Track]
Priority -->|Normal| Standard[Standard Queue]
Priority -->|Low| Batch[Batch Processing]
Example Task
Input
{
"task_type": "loan_application",
"data": {
"loan_amount": 500000,
"property_type": "single_family",
"documents": ["paystub.pdf", "tax_return.pdf"]
},
"source": "ALPHA001"
}
Output
{
"routing_decision": {
"primary_agent": "CHARLIE001",
"secondary_agents": ["DELTA001"],
"priority": 3,
"estimated_completion": "2026-01-16T12:00:00Z",
"queue": "document_processing"
},
"_meta": {
"routing_reason": "Documents present, requires OCR extraction",
"confidence": 92,
"processed_by": "BRAVO001"
}
}
Priority Levels
| Level | Name | SLA | Use Case |
|---|---|---|---|
| 1 | Critical | 1 hour | VIP clients, urgent deals |
| 2 | High | 4 hours | Time-sensitive applications |
| 3 | Normal | 24 hours | Standard processing |
| 4 | Low | 48 hours | Non-urgent tasks |
| 5 | Batch | 72 hours | Bulk processing |
Next Agent
After Bravo routes tasks, they flow to:
- Charlie (Document) for document processing
- Delta (Decision) for decisions
- Echo (Enrichment) for research