← Back to Skills Marketplace
googleworkspace-bot

Gws People

by googleworkspace-bot · GitHub ↗ · v1.0.13 · MIT-0
cross-platform ✓ Security Clean
480
Downloads
0
Stars
13
Active Installs
14
Versions
Install in OpenClaw
/install gws-people
Description
Google People: Manage contacts and profiles.
README (SKILL.md)

people (v1)

PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it.

gws people \x3Cresource> \x3Cmethod> [flags]

API Resources

contactGroups

  • batchGet — Get a list of contact groups owned by the authenticated user by specifying a list of contact group resource names.
  • create — Create a new contact group owned by the authenticated user. Created contact group names must be unique to the users contact groups. Attempting to create a group with a duplicate name will return a HTTP 409 error. Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.
  • delete — Delete an existing contact group owned by the authenticated user by specifying a contact group resource name. Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.
  • get — Get a specific contact group owned by the authenticated user by specifying a contact group resource name.
  • list — List all contact groups owned by the authenticated user. Members of the contact groups are not populated.
  • update — Update the name of an existing contact group owned by the authenticated user. Updated contact group names must be unique to the users contact groups. Attempting to create a group with a duplicate name will return a HTTP 409 error. Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.
  • members — Operations on the 'members' resource

otherContacts

  • copyOtherContactToMyContactsGroup — Copies an "Other contact" to a new contact in the user's "myContacts" group Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.
  • list — List all "Other contacts", that is contacts that are not in a contact group. "Other contacts" are typically auto created contacts from interactions. Sync tokens expire 7 days after the full sync. A request with an expired sync token will get an error with an google.rpc.ErrorInfo with reason "EXPIRED_SYNC_TOKEN". In the case of such an error clients should make a full sync request without a sync_token.
  • search — Provides a list of contacts in the authenticated user's other contacts that matches the search query. The query matches on a contact's names, emailAddresses, and phoneNumbers fields that are from the OTHER_CONTACT source. IMPORTANT: Before searching, clients should send a warmup request with an empty query to update the cache. See https://developers.google.com/people/v1/other-contacts#search_the_users_other_contacts

people

  • batchCreateContacts — Create a batch of new contacts and return the PersonResponses for the newly Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.
  • batchUpdateContacts — Update a batch of contacts and return a map of resource names to PersonResponses for the updated contacts. Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.
  • createContact — Create a new contact and return the person resource for that contact. The request returns a 400 error if more than one field is specified on a field that is a singleton for contact sources: * biographies * birthdays * genders * names Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.
  • deleteContactPhoto — Delete a contact's photo. Mutate requests for the same user should be done sequentially to avoid // lock contention.
  • get — Provides information about a person by specifying a resource name. Use people/me to indicate the authenticated user. The request returns a 400 error if 'personFields' is not specified.
  • getBatchGet — Provides information about a list of specific people by specifying a list of requested resource names. Use people/me to indicate the authenticated user. The request returns a 400 error if 'personFields' is not specified.
  • listDirectoryPeople — Provides a list of domain profiles and domain contacts in the authenticated user's domain directory. When the sync_token is specified, resources deleted since the last sync will be returned as a person with PersonMetadata.deleted set to true. When the page_token or sync_token is specified, all other request parameters must match the first call. Writes may have a propagation delay of several minutes for sync requests. Incremental syncs are not intended for read-after-write use cases.
  • searchContacts — Provides a list of contacts in the authenticated user's grouped contacts that matches the search query. The query matches on a contact's names, nickNames, emailAddresses, phoneNumbers, and organizations fields that are from the CONTACT source. IMPORTANT: Before searching, clients should send a warmup request with an empty query to update the cache. See https://developers.google.com/people/v1/contacts#search_the_users_contacts
  • searchDirectoryPeople — Provides a list of domain profiles and domain contacts in the authenticated user's domain directory that match the search query.
  • updateContact — Update contact data for an existing contact person. Any non-contact data will not be modified. Any non-contact data in the person to update will be ignored. All fields specified in the update_mask will be replaced. The server returns a 400 error if person.metadata.sources is not specified for the contact to be updated or if there is no contact source.
  • updateContactPhoto — Update a contact's photo. Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.
  • connections — Operations on the 'connections' resource

Discovering Commands

Before calling any API method, inspect it:

# Browse resources and methods
gws people --help

# Inspect a method's required params, types, and defaults
gws schema people.\x3Cresource>.\x3Cmethod>

Use gws schema output to build your --params and --json flags.

Usage Guidance
This skill is a thin instruction-only adapter for the 'gws' CLI to manage Google People. Before installing: (1) verify the origin and trustworthiness of the 'gws' binary you have on PATH (who published it and how it obtains/stores credentials); (2) locate and review the referenced ../gws-shared/SKILL.md to see how authentication and security rules are implemented and what tokens/paths are accessed; (3) check which OAuth scopes the CLI will request (People API scopes can expose contacts); (4) consider running gws people commands manually in a sandbox or with a test account to observe behavior; (5) avoid providing global/shared credentials until you understand where they are stored and whether the shared SKILL.md or gws generator will create files with sensitive tokens. If you cannot review the gws-shared SKILL.md or trust the gws binary, treat access as potentially sensitive and do not install for high-value accounts.
Capability Analysis
Type: OpenClaw Skill Name: gws-people Version: 1.0.13 The skill bundle contains documentation (SKILL.md) for an AI agent to interface with a CLI tool named 'gws' for managing Google People API resources. There is no executable code or evidence of malicious intent; the instructions are standard for tool usage and discovery.
Capability Assessment
Purpose & Capability
The skill name/description (Google People: Manage contacts and profiles) matches the runtime instructions: it invokes the 'gws people' CLI and documents People API resources and operations. Requiring the 'gws' binary is appropriate for a CLI wrapper.
Instruction Scope
SKILL.md explicitly instructs the agent to read ../gws-shared/SKILL.md for auth, global flags, and security rules, and to run 'gws generate-skills' if missing. That means runtime behavior depends on a separate shared file (outside this skill) which may contain auth flows, env var references, or file access rules. The instructions themselves are otherwise limited to calling 'gws people' and listing API operations.
Install Mechanism
There is no install spec and no code files; this is instruction-only and will not write or execute new files by itself. This is the lowest-risk install pattern for a skill of this type.
Credentials
The skill declares no required environment variables or credentials, but it depends on the gws CLI and an external shared SKILL.md for authentication. Managing Google contacts requires OAuth credentials or tokens; those are likely handled by the shared file or gws config but are not visible here. You should inspect the gws-shared SKILL.md and gws CLI configuration to confirm what secrets/tokens will be used and where they are stored.
Persistence & Privilege
The skill does not request 'always: true' and contains no install actions that persist itself. It is user-invocable and may be invoked autonomously by the agent (platform default), which is expected for a CLI integration.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install gws-people
  3. After installation, invoke the skill by name or use /gws-people
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.13
- Updated skill metadata version to 0.22.5 in SKILL.md. - No other functional or user-facing changes.
v1.0.12
- Updated skill metadata version from 0.22.3 to 0.22.4 in SKILL.md. - No functional or API changes; documentation version only.
v1.0.11
- Updated skill metadata version from 0.22.2 to 0.22.3 in SKILL.md. - No changes to commands, API resources, or usage documentation.
v1.0.10
- Updated documentation version from 0.22.1 to 0.22.2 in SKILL.md. - No changes to features, commands, or APIs; documentation only.
v1.0.9
- Updated metadata version from 0.22.0 to 0.22.1 in SKILL.md. - No changes to commands or functionality. - Documentation and usage instructions remain the same.
v1.0.8
- Updated skill version to 0.22.0 in metadata. - No other content or functional changes made; documentation remains unchanged.
v1.0.7
- Updated version in SKILL.md metadata from 0.21.1 to 0.21.2. - No API resource or command usage changes. - Documentation remains the same except for the metadata version increment.
v1.0.6
- Updated skill metadata version from 0.20.1 to 0.21.1. - No changes to API resources or commands. - SKILL.md content remains functionally the same; this update reflects a version increment only.
v1.0.5
- Bumped skill metadata version from 0.20.0 to 0.20.1 in SKILL.md. - No functional or documentation changes; version update only.
v1.0.4
- Updated version metadata from 0.19.0 to 0.20.0 in SKILL.md. - No functional or API changes; documentation update only.
v1.0.3
- Updated version metadata in SKILL.md to 0.19.0. - Moved version key from top-level property to metadata block. - No changes to commands or API usage.
v1.0.2
- Minor update to SKILL.md formatting for consistency. - YAML lists under "requires: bins" now use standard YAML array format.
v1.0.1
- Documentation updates only: SKILL.md file updated. - No changes to commands, functionality, or interface. - Likely minor corrections or formatting improvements to documentation.
v1.0.0
Initial release of gws-people: manage Google contacts and profiles from the CLI. - Supports full suite of Google People API operations for contacts, contact groups, and profiles. - Includes batch and individual methods for creating, updating, and deleting contacts and groups. - Command discovery and usage guidance via built-in help and schema inspection. - Requires the `gws` CLI utility and prior authentication setup as described in gws-shared. - Categorized under productivity tools.
Metadata
Slug gws-people
Version 1.0.13
License MIT-0
All-time Installs 13
Active Installs 13
Total Versions 14
Frequently Asked Questions

What is Gws People?

Google People: Manage contacts and profiles. It is an AI Agent Skill for Claude Code / OpenClaw, with 480 downloads so far.

How do I install Gws People?

Run "/install gws-people" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Gws People free?

Yes, Gws People is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Gws People support?

Gws People is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Gws People?

It is built and maintained by googleworkspace-bot (@googleworkspace-bot); the current version is v1.0.13.

💬 Comments