google-contacts
Google Contacts Skill
Full CRUD Contacts management for AI agents. Search, list, get, create, update, and delete contacts.
Features
- Search: Find contacts by name, email, or phone.
- List: Paginated listing of all contacts (sorted by last name).
- Get: Fetch a single contact by resource name with full details.
- Create: Add contacts with name, email, phone, organization, title, and notes.
- Update: Patch existing contacts (etag-based conflict detection).
- Delete: Remove contacts.
Prerequisites
- Google Cloud Project with Google People API enabled.
- OAuth 2.0 Credentials — either
gcloudADC orcredentials.json.
Setup
⚡ Quick Setup (Recommended)
Set up Gmail, Calendar, and Contacts all at once:
uv run ~/.agents/skills/gmail/scripts/setup_workspace.py
Manual Setup
-
Using gcloud ADC:
gcloud auth application-default login \ --scopes https://www.googleapis.com/auth/contacts,https://www.googleapis.com/auth/cloud-platformThen verify:
uv run skills/google-contacts/scripts/contacts.py verify -
Alternative (credentials.json):
- Place
credentials.jsonin~/.contacts_credentials/. - Run
uv run skills/google-contacts/scripts/contacts.py setup
- Place
Usage
Search Contacts
# Find Han Solo
uv run skills/google-contacts/scripts/contacts.py search --query "Han Solo"
# Find by email
uv run skills/google-contacts/scripts/contacts.py search --query "falcon.net" --limit 5
List All Contacts
# First page
uv run skills/google-contacts/scripts/contacts.py list --limit 50
# Subsequent pages (use nextPageToken from previous result)
uv run skills/google-contacts/scripts/contacts.py list --page-token "NEXT_PAGE_TOKEN"
Get a Single Contact
uv run skills/google-contacts/scripts/contacts.py get --id "people/c12345"
Create a Contact
uv run skills/google-contacts/scripts/contacts.py create \
--first "Lando" \
--last "Calrissian" \
--email "lando@cloudcity.com" \
--phone "555-0123" \
--org "Cloud City Administration" \
--title "Baron Administrator" \
--notes "Old gambling buddy"
Update a Contact
Only provided fields change. The script auto-fetches the current etag for conflict detection:
uv run skills/google-contacts/scripts/contacts.py update \
--id "people/c12345" \
--phone "555-9999" \
--title "General"
Delete a Contact
uv run skills/google-contacts/scripts/contacts.py delete --id "people/c12345"
JSON Output
Contact:
{
"resourceName": "people/c12345",
"name": "Han Solo",
"givenName": "Han",
"familyName": "Solo",
"emails": [{ "value": "captain@falcon.net", "type": "work" }],
"phones": [{ "value": "555-0987", "type": "mobile" }],
"organizations": [{ "name": "Rebel Alliance", "title": "General" }],
"addresses": [{ "formatted": "Millennium Falcon", "type": "home" }],
"biography": "Shot first.",
"urls": [],
"birthday": null
}
List Result (paginated):
{
"contacts": [ ... ],
"totalItems": 142,
"nextPageToken": "NEXT_PAGE_TOKEN"
}
More from baphomet480/claude-skills
kitchen-sink-design-system
Kitchen Sink design system workflow for Next.js and React projects, with secondary support for Astro, SvelteKit, Nuxt, and static HTML. Use when asked for a Kitchen Sink page, Design System, UI Audit, Style Guide, or Component Inventory, or when a project needs a component inventory plus component creation and a sink page implementation. Covers CVA variant architecture, Tailwind v3/v4 token systems, shadcn/ui integration, and TinaCMS content modeling.
40deep-research
Conduct comprehensive, multi-round research that produces rich visual reports. Use when asked for "deep research", "comprehensive analysis", "compare frameworks", "evaluate options", "research the state of X", or any task requiring investigation across 10+ sources. NOT for quick lookups — this is a 5-15 minute deep dive that produces a briefing-quality artifact with screenshots, diagrams, tables, and cited findings.
37design-lookup
Search and retrieve CSS components, SVG icons, design patterns, and visual inspiration from the web. Use when the user asks to find, look up, or search for CSS snippets, SVG icons, UI components, loading spinners, animations, design inspiration, or any visual/frontend design resource. Triggers on requests like "find me a CSS button", "look up an SVG spinner", "search for a card component", "find a wave divider SVG", or "get design inspiration for a dashboard".
34nextjs-tinacms
Build Next.js 16 + React 19 + TinaCMS sites with visual editing, blocks-based page builder, and complete SEO. Use this skill whenever the user mentions TinaCMS, Tina CMS, Next.js with a CMS, visual editing with Next.js, click-to-edit, content-managed Next.js site, blocks pattern page builder, or migrating to Next.js + TinaCMS. Also trigger for TinaCMS schema design, self-hosted TinaCMS, TinaCMS media configuration, or any TinaCMS troubleshooting. Covers Day 0-2 setup from scaffolding through production deployment on Vercel.
32cloudflare-pages
Deploy static sites to Cloudflare Pages with custom domains and CI/CD. Use when the user wants to deploy a site to Cloudflare Pages, add a custom domain to a Pages project, set up GitHub Actions CI/CD for Cloudflare Pages, roll back a deployment, or verify deployment status. Triggers on "deploy to Cloudflare", "Cloudflare Pages", "add custom domain", "pages deploy", or any Cloudflare Pages hosting workflow.
31local-ocr
Local OCR pipeline for AI agents featuring auto-rotation, deskew, and searchable PDF generation via ocrmypdf and Tesseract.
23