Skip to main content

get-contact

Find contact details by name. Searches local contacts/CRM and returns email/phone. Use before scheduling meetings or sending messages when you need contact info.

설치로 이동

소스 정보

저장소
aviz85/claude-skills-library
최근 소스 활동
2026년 1월 28일 11:24
감지된 SKILL.md 언어
영어
스타
49
포크
14

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
get-contact
description
Find contact details by name. Searches local contacts/CRM and returns email/phone. Use before scheduling meetings or sending messages when you need contact info.
version
1.0.0
author
aviz85
tags
["contacts","crm","utility"]
usedBy
["zoom-meeting","whatsapp","gmail"]
# Get Contact Find contact details (email, phone) by name search. ## Sources Configure your contact sources. Examples: - **Local JSON** - `~/contacts.json` or your CRM data file - **Google Contacts** - via People API (future) - **Any CRM** - adapt the search to your system ## Usage When you need contact info: 1. Search contacts for name (partial match, case insensitive) 2. If **0 results** → tell user "not found, please provide email/phone" 3. If **1 result** → confirm with user: "Found [name] - [email]. Is this correct?" 4. If **multiple results** → ask user to choose: "Found multiple: 1) Name A 2) Name B" ## IMPORTANT **Always confirm with user before using contact info.** Common names (יוסי, דוד, John, David) may have multiple people or user may mean someone not in contacts. ## Search Example (JSON) ```bash # Search by name in contacts file jq '.contacts[] | select(.name | test("QUERY"; "i")) | {name, email, phone}' ~/contacts.json ``` ## Response Format Return to calling skill: ```json { "found": true, "count": 1, "contact": { "name": "John Smith", "email": "john@example.com", "phone": "+1234567890" } } ``` Or if multiple: ```json { "found": true, "count": 2, "contacts": [ {"name": "John Smith", "email": "john.s@...", "phone": "..."}, {"name": "John Doe", "email": "john.d@...", "phone": "..."} ] } ``` ## Configuration Create a contacts file or configure your data source path: ```json // ~/contacts.json { "contacts": [ { "name": "John Smith", "email": "john@example.com", "phone": "+1234567890" } ] } ``` Update the search path in the skill to match your setup. ## Integration Other skills (zoom-meeting, whatsapp) use this skill to lookup contacts. If this skill isn't available, those skills will ask the user for contact details directly.
GitHub에서 보기