plugins/google-workspace-cli/skills/contacts/SKILL.md
Use this skill when the user asks about managing Google Contacts like searching, creating, updating, or organizing contacts via the Google Workspace CLI.
npx skillsauth add nsheaps/ai-mktpl contactsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 outputtools
Reference material for Claude Code internals — the on-disk layout under ~/.claude and project-scope .claude, the plugin cache, session-env propagation, and the full hook lifecycle. Auto-recall when working on Claude-Code-related tasks: writing or debugging hooks, authoring plugins, inspecting session state, troubleshooting why an env var is or isn't visible to a Bash tool call, or when paths under ~/.claude or ~/.claude/plugins/ come up.
development
Manage GitHub App installation tokens in Claude Code sessions. Use when tokens expire, auth errors occur in long-running sessions, or when setting up GitHub App credentials for agent teams. <example>my github token expired</example> <example>refresh the github app token</example> <example>check token status</example> <example>set up github app authentication for this session</example>
tools
Auto-detect project formatting tools and configure edit-utils settings
tools
Use this skill when the user asks about 1Password, secrets management, retrieving credentials, using op CLI, service accounts, secret references, vault operations, or any task involving the 1Password CLI (op). Also use when needing to inject secrets into environment variables, read passwords or API keys from 1Password, or manage 1Password items from the command line.