contacts
// Look up contacts by name to resolve phone numbers before making calls. Use when the user says "call John" instead of providing a phone number.
$ git log --oneline --stat
stars:1,933
forks:367
updated:March 4, 2026
SKILL.mdreadonly
SKILL.md Frontmatter
namecontacts
descriptionLook up contacts by name to resolve phone numbers before making calls. Use when the user says "call John" instead of providing a phone number.
Contacts
Resolve contact names to phone numbers for outbound calls.
Flow
- User says "call [name]" or "/amber:call [name] [objective]"
- Look up the name in the CRM via
crm(action: "lookup", identifier: "name") - If found, use the stored phone number
- If multiple matches, present options and let the user choose
- If not found, ask the user for the phone number
Guidelines
- Be fuzzy with name matching — "John" should match "John Smith"
- If ambiguous, always confirm before dialing ("I found John Smith at +1-416-555-1234 — is that right?")