contacts-management
SKILL.md
Contacts Management
When to Use
Use this skill when building code to create, update, or manage contacts and their communication channels. Covers the multi-channel contact model, merge operations, and phone number introspection.
Contact Model
Contacts are multi-channel: one contact can have multiple channels (SMS, WhatsApp, Email, Telegram, Voice), each with its own identifier and delivery metrics.
Contact (John Doe)
├── SMS: +14155551234 (primary)
├── WhatsApp: +14155551234 (primary)
├── Email: john@example.com (primary)
└── Email: john.work@company.com (label: "work")
Auto-Creation
Contacts are automatically created when you send a message to a new recipient. No explicit creation needed for basic messaging.
Create Contact
const contact = await zavu.contacts.create({
displayName: "John Doe",
channels: [
{ channel: "sms", identifier: "+14155551234", isPrimary: true },
{ channel: "whatsapp", identifier: "+14155551234", isPrimary: true },
{ channel: "email", identifier: "john@example.com", isPrimary: true },
],
metadata: { source: "import", plan: "enterprise" },
});
console.log(contact.id);
Python:
contact = zavu.contacts.create(
display_name="John Doe",
channels=[
{"channel": "sms", "identifier": "+14155551234", "isPrimary": True},
{"channel": "email", "identifier": "john@example.com", "isPrimary": True},
],
)
Get & List Contacts
// Get by ID
const contact = await zavu.contacts.get({ contactId: "ct_abc123" });
// Get by phone number
const contact = await zavu.contacts.getByPhone({
phoneNumber: "+14155551234",
});
// List with filters
let cursor: string | undefined;
do {
const result = await zavu.contacts.list({
phoneNumber: "+14155551234",
limit: 50,
cursor,
});
for (const contact of result.items) {
console.log(contact.id, contact.displayName, contact.availableChannels);
}
cursor = result.nextCursor ?? undefined;
} while (cursor);
Channel Operations
// Add channel
const channel = await zavu.contacts.channels.add({
contactId: "ct_abc123",
channel: "email",
identifier: "john.work@company.com",
label: "work",
});
// Update channel
await zavu.contacts.channels.update({
contactId: "ct_abc123",
channelId: "ch_xyz789",
label: "personal",
verified: true,
});
// Set as primary
await zavu.contacts.channels.setPrimary({
contactId: "ct_abc123",
channelId: "ch_xyz789",
});
// Remove channel (cannot remove the last channel)
await zavu.contacts.channels.remove({
contactId: "ct_abc123",
channelId: "ch_xyz789",
});
Update Contact
await zavu.contacts.update({
contactId: "ct_abc123",
defaultChannel: "whatsapp",
metadata: { plan: "premium", region: "US" },
});
// Clear default channel
await zavu.contacts.update({
contactId: "ct_abc123",
defaultChannel: null,
});
Merge Contacts
When duplicate contacts are detected, the API suggests merges:
// Check for merge suggestion
const contact = await zavu.contacts.get({ contactId: "ct_abc123" });
if (contact.suggestedMergeWith) {
// Merge source into target (all channels move to target)
const merged = await zavu.contacts.merge({
contactId: "ct_abc123",
sourceContactId: contact.suggestedMergeWith,
});
console.log("Merged channels:", merged.channels.length);
}
// Dismiss suggestion
await zavu.contacts.mergeSuggestion.dismiss({
contactId: "ct_abc123",
});
Phone Introspection
Validate phone numbers and check carrier info:
const result = await zavu.introspect.phone({
phoneNumber: "+14155551234",
});
console.log(result.validNumber); // true
console.log(result.countryCode); // "US"
console.log(result.nationalFormat); // "(415) 555-1234"
console.log(result.lineType); // "mobile" | "landline" | "voip" | "toll_free"
console.log(result.carrier?.name); // "Verizon Wireless"
console.log(result.availableChannels); // ["sms", "whatsapp", "voice"]
Python:
result = zavu.introspect.phone(phone_number="+14155551234")
print(result.valid_number)
print(result.line_type)
print(result.carrier.name if result.carrier else "Unknown")
Constraints
- Max 20 channels per contact
- Channel labels: max 50 characters
- Display name: max 200 characters
- Cannot remove the last channel from a contact
- Cannot merge a contact with itself
- Phone numbers must be E.164 format
- Duplicate identifiers across contacts are rejected (use merge instead)
Weekly Installs
2
Repository
zavudev/zavu-skillsFirst Seen
4 days ago
Security Audits
Installed on
amp2
cline2
opencode2
cursor2
kimi-cli2
codex2