SKILL·2950B0

c-contacts

daxaur
Aktualisiert 1 month ago
8 Ansichten
153
11
153
Auf GitHub ansehen
Anderecontactsaddress-bookpeoplephone

Über

Diese Claude Skill ermöglicht es Entwicklern, Kontaktinformationen direkt aus der macOS Contacts App mithilfe von AppleScript-Befehlen abzufragen und abzurufen. Sie erlaubt es, Kontakte nach Namen zu suchen, alle Kontakte aufzulisten und spezifische Details wie E-Mails und Telefonnummern abzurufen, ohne ein separates CLI-Tool zu benötigen. Nutzen Sie sie, um macOS-Kontaktdaten schnell in Ihre Workflows oder Skripte zu integrieren.

Schnellinstallation

Claude Code

Empfohlen
Primär
npx skills add daxaur/openpaw -a claude-code
Plugin-BefehlAlternativ
/plugin add https://github.com/daxaur/openpaw
Git CloneAlternativ
git clone https://github.com/daxaur/openpaw.git ~/.claude/skills/c-contacts

Kopieren Sie diesen Befehl und fügen Sie ihn in Claude Code ein, um diese Fähigkeit zu installieren

Dokumentation

Contacts — Address Book

Access macOS Contacts app via AppleScript. No CLI tool needed.

Commands

# Search for a contact by name
osascript -e 'tell application "Contacts"
  set results to (every person whose name contains "John")
  set output to ""
  repeat with p in results
    set output to output & name of p & linefeed
    repeat with e in emails of p
      set output to output & "  Email: " & value of e & linefeed
    end repeat
    repeat with ph in phones of p
      set output to output & "  Phone: " & value of ph & linefeed
    end repeat
    set output to output & linefeed
  end repeat
  return output
end tell'

# Get all contact names
osascript -e 'tell application "Contacts" to get name of every person'

# Get a specific contact's email
osascript -e 'tell application "Contacts"
  set p to first person whose name is "John Smith"
  get value of every email of p
end tell'

# Get a specific contact's phone
osascript -e 'tell application "Contacts"
  set p to first person whose name is "John Smith"
  get value of every phone of p
end tell'

# Count contacts
osascript -e 'tell application "Contacts" to count every person'

# Search by email
osascript -e 'tell application "Contacts"
  set results to (every person whose value of emails contains "john@")
  get name of results
end tell'

Guidelines

  • Always search by partial name (uses contains) to be flexible
  • Return name, email, and phone by default
  • If multiple matches, list all and let the user pick
  • Contacts app does not need to be running — AppleScript handles it
  • Never store contact details in memory files for privacy
  • If asked "what's [name]'s number?", search contacts first, then memory

GitHub Repository

daxaur/openpaw
Pfad: skills/c-contacts
0
ai-agentanthropicautomationclaudeclaude-codecli
FAQ

Frequently asked questions

What is the c-contacts skill?

c-contacts is a Claude Skill by daxaur. Skills package instructions and resources that Claude loads on demand, so Claude can perform c-contacts-related tasks without extra prompting.

How do I install c-contacts?

Use the install commands on this page: add c-contacts to Claude Code as a plugin, or clone its repository into your skills directory, then restart Claude so it picks up the skill.

What category does c-contacts belong to?

c-contacts is in the Other category, tagged contacts, address-book, people and phone.

Is c-contacts free to use?

Yes. c-contacts is listed on AIMCP and free to install. It runs inside Claude, so no separate service account is required to use the skill itself.

Verwandte Skills

llamaguard
Andere

LlamaGuard ist Metas 7-8B-Parameter-Modell zur Moderation von LLM-Eingaben und -Ausgaben in sechs Sicherheitskategorien wie Gewalt und Hassrede. Es bietet eine Genauigkeit von 94-95 % und kann mit vLLM, Hugging Face oder Amazon SageMaker eingesetzt werden. Nutzen Sie diese Skill, um Inhaltsfilterung und Sicherheitsguardrails einfach in Ihre KI-Anwendungen zu integrieren.

Skill ansehen
cost-optimization
Andere

Diese Claude Skill unterstützt Entwickler bei der Optimierung von Cloud-Kosten durch Ressourcen-Dimensionierung, Tagging-Strategien und Ausgabenanalysen. Sie bietet einen Rahmen zur Senkung von Cloud-Ausgaben und zur Implementierung von Kosten-Governance für AWS, Azure und GCP. Nutzen Sie sie, wenn Sie Infrastrukturkosten analysieren, Ressourcen richtig dimensionieren oder Budgetvorgaben einhalten müssen.

Skill ansehen
sports-betting-analyzer
Andere

Diese Claude Skill analysiert Sportwettenmärkte inklusive Handicaps, Over/Unders und Spezialwetten, indem sie historische Trends und situative Statistiken untersucht, um Wertwetten zu identifizieren. Sie liefert strukturierte Markdown-Ausgaben mit umsetzbaren Empfehlungen zu Bildungszwecken. Entwickler sollten dies für Sportwetten-Analysetools nutzen, wobei zu beachten ist, dass es nur zur Unterhaltung/Bildung konzipiert wurde.

Skill ansehen
quantizing-models-bitsandbytes
Andere

Diese Fähigkeit quantisiert LLMs auf 8-Bit- oder 4-Bit-Präzision mittels bitsandbytes und erreicht dabei eine Speicherreduzierung von 50–75 % bei minimalem Genauigkeitsverlust. Sie ist ideal für den Betrieb größerer Modelle mit begrenztem GPU-Speicher oder zur Beschleunigung von Inferenzvorgängen und unterstützt Formate wie INT8, NF4 und FP4. Die Fähigkeit integriert sich in HuggingFace Transformers und ermöglicht QLoRA-Training sowie 8-Bit-Optimierer.

Skill ansehen