contacts-management

contacts-management is a skill for Claude Code from zavudev/zavu-skills. It costs 23 tokens per session (2,865 once invoked), scanned A, original, Apache-2.0.

A contact-management system for people who communicate through several channels, including SMS, WhatsApp, email, Telegram, Instagram, Messenger, and voice. It supports searching, merging, channel management, phone-number checks, and email validation.

In plain words
What is it for?
Use it to create and update contacts, manage their channel identifiers, search and merge records, inspect phone numbers, and validate email addresses.
Why use it?
It keeps a person's details and communication addresses together instead of treating every channel as a separate contact. It also helps resolve duplicates and validate contact information.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the zavu-skills plugin — 14 skills shipped together

Good fit Use it to create and update contacts, manage their channel identifiers, search and merge records, inspect phone numbers, and validate email addresses.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zavudev/zavu-skills/contacts-management
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zavudev/zavu-skills --skill contacts-management
Clone the repo
git clone --depth 1 https://github.com/zavudev/zavu-skills

Made for: Claude Code.

Or install zavu-skills, the plugin that ships this one along with the rest of its 14 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for contacts-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/zavudev/zavu-skills/contacts-management/github.svg)](https://agentmods.dev/skills/zavudev/zavu-skills/contacts-management)
Your own site
<a href="https://agentmods.dev/skills/zavudev/zavu-skills/contacts-management"><img src="https://agentmods.dev/badge/skills/zavudev/zavu-skills/contacts-management/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for contacts-management

Your own site · 80×15
<a href="https://agentmods.dev/skills/zavudev/zavu-skills/contacts-management"><img src="https://agentmods.dev/badge/skills/zavudev/zavu-skills/contacts-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,865 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 30 Apr 2026
  • Snyk pass 30 Apr 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00023 $0.02865
Opus 5 $0.00012 $0.01432
Sonnet 5 $0.00005 $0.00573
Haiku 4.5 $0.00002 $0.00286

Measured 12d ago against content hash 9667800cb48a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

contacts-management scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST https://api.zavu.dev/v1/introspect/email \
skills/contacts-management/SKILL.md · 353 lines

How it starts

The opening of the file, as written. The whole thing — 353 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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, search, merge operations, phone number introspection, and email address validation.

Contact Model

Contacts are multi-channel: one contact can have multiple channels (SMS, WhatsApp, Email, Telegram, Instagram, Messenger, Voice), each with its own identifier and delivery metrics. Top-level fields expose primary identifiers for quick access.

Contact (John Doe)
├── primaryPhone: +14155551234           (E.164)
├── primaryEmail: [email protected]
├── profileName: "John D."               (WhatsApp profile name, if available)
├── verified: true
├── countryCode: "US"
└── Channels:
    ├── SMS: +14155551234 (primary)
    ├── WhatsApp: +14155551234 (primary)
    ├── Email: [email protected] (primary)
    ├── Email: [email protected] (label: "work")
    ├── Telegram: @johndoe
    └── Voice: +14155551234

Note: The legacy phoneNumber field on Contact is deprecated — use primaryPhone instead.

Valid contact channel types: sms, whatsapp, email, telegram, instagram, messenger, voice (note: auto and sms_oneway are message-send routing options, not contact channel types).

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: "[email protected]", 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": "[email protected]", "isPrimary": True},
    ],
)

Read the full file on GitHub · 353 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 353 lines · 23 tokens per session scan A 9667800cb48a

Subscribe to this mod's changes

contacts-management is a skill published in the GitHub repository zavudev/zavu-skills (1 stars, last pushed 3d ago), licensed Apache-2.0. It adds 23 tokens to every session and 2,865 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories