From google-workspace-cli
Use this skill when the user asks about managing Google Contacts like searching, creating, updating, or organizing contacts via the Google Workspace CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/google-workspace-cli:contactsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `gws contacts` (via the People API) to manage Google Contacts from the command line.
Use gws contacts (via the People API) to manage Google Contacts from the command line.
# List contacts
gws contacts list
# List with pagination
gws contacts list --limit 50
# Search contacts
gws contacts search "John"
# Search by email
gws contacts search "[email protected]"
# Get a specific contact
gws contacts get <resource-name>
# Get as JSON
gws contacts get <resource-name> --format json
# Create a new contact
gws contacts create \
--given-name "John" \
--family-name "Doe" \
--email "[email protected]"
# Create with phone number
gws contacts create \
--given-name "Jane" \
--family-name "Smith" \
--email "[email protected]" \
--phone "+1-555-0123"
# Create with organization
gws contacts create \
--given-name "Bob" \
--family-name "Johnson" \
--email "[email protected]" \
--organization "Company Inc" \
--title "Engineer"
# Update email
gws contacts update <resource-name> --email "[email protected]"
# Update phone
gws contacts update <resource-name> --phone "+1-555-9999"
# Delete a contact
gws contacts delete <resource-name>
# List contact groups
gws contacts groups list
# Create a group
gws contacts groups create --name "Project Team"
# Add contact to group
gws contacts groups add <group-resource> <contact-resource>
people/<person-id>--format json for structured outputnpx claudepluginhub nsheaps/ai-mktpl --plugin google-workspace-cliAgent-callable tools for Google Contacts: CRUD contacts, manage groups, set photos, and access auto-saved other contacts via the People API.
Manages Google People contacts/profiles via gws CLI: create/update/delete/list contact groups; list/search other contacts; batch create contacts.
Searches for and retrieves contact (people) records from the Carta CRM. Use this skill when the user says things like "find a contact", "search contacts", "look up a person", "show me contact details for [name]", "get contact by ID", "list contacts", "find people at [company]", "search people", or "/search-contacts". Returns contact details including ID, name, email, title, company, and tags. The contact ID returned can be used with the update-contact skill.