Alpha (ALPHA001)
First contact. Validates, normalizes, and scores incoming data.
Overview
Alpha is the gatekeeper of the Crella Engine. Every piece of data entering the system first passes through Alpha for validation, normalization, and quality scoring. Bad data stops here.
Agent Profile
| Attribute | Value |
|---|---|
| Codename | ALPHA001 |
| Name | Alpha |
| Role | Intake Agent |
| Status | Online |
| Color | #FF6B6B (Coral) |
Capabilities
- Data Validation — Checks required fields, formats, types
- Field Normalization — Standardizes phone numbers, addresses, names
- Duplicate Detection — Identifies existing records
- Quality Scoring — Rates data completeness (0-100)
- Schema Mapping — Transforms data to internal format
Training Status
| Metric | Value |
|---|---|
| Sessions Completed | 8 / 90 |
| Training Level | Learning |
| Last Training | 2026-01-19 |
Progress: ████░░░░░░ 9%
Performance Stats
1,770
Total Tasks
98.2%
Success Rate
200ms
Avg Time
$0.002
Cost/Task
Active Missions
MoneyMatcher - Loan Intake Pipeline
- Status: Active
- Tasks Processed: 1,247
- Function: Validates loan applications, normalizes borrower data
Sequoia EHMP - Lead Validation
- Status: Active
- Tasks Processed: 523
- Function: Validates broker leads, scores data quality
Workflow Position
flowchart LR
Input[Raw Input] --> Alpha
Alpha --> |Valid| Bravo[Bravo - Triage]
Alpha --> |Invalid| Reject[Rejection Queue]
style Alpha fill:#FF6B6B,color:#000
Example Task
Input
{
"name": "john smith",
"email": "JOHN@EXAMPLE.COM",
"phone": "1234567890",
"property_value": "500000"
}
Output
{
"name": "John Smith",
"email": "john@example.com",
"phone": "+1 (123) 456-7890",
"property_value": 500000,
"_meta": {
"quality_score": 85,
"normalized_fields": ["name", "email", "phone", "property_value"],
"warnings": [],
"processed_by": "ALPHA001"
}
}
Integration
Sending Tasks to Alpha
const task = {
agent: 'ALPHA001',
type: 'lead_validation',
payload: {
name: 'Jane Doe',
email: 'jane@example.com'
}
};
const result = await crella.processTask(task);
Next Agent
After Alpha processes data, it flows to Bravo (Triage Agent) for routing.