npx skills add googleworkspace/cli --skill recipe-sync-contacts-to-sheet
wadewarren/gws-claude-plugin
recipe-sync-contacts-to-sheet
Export Google Contacts directory to a Google Sheets spreadsheet.
Installation
npx skills add wadewarren/gws-claude-plugin --skill recipe-sync-contacts-to-sheet
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Export Google Contacts directory to a Google Sheets spreadsheet.
27.7K installsAdd, enrich, and manage contacts in Joel's Vault.
3.3K installsRead, create, update, and pick contacts using the Contacts and ContactsUI frameworks. Use when …
3.1K installsLists, finds, inspects, bulk-creates, summarizes, or deletes Sent contacts with the Sent MCP to…
2.6K installsGoogle 連絡? 「連絡? 「アドレス帳から探して」「連絡?
625 installsManage multi-channel contacts with channel operations, search, merging, phone introspection, an…
365 installsAlso in this package
Other skills from wadewarren/gws-claude-plugin · top by installs.
npx skills add wadewarren/gws-claude-plugin
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
More metadata
- openclaw
- {"category":"recipe","domain":"productivity","requires":{"bins":["gws"],"skills":["gws-people","gws-sheets"]}}
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md987 B -
docs
SUMMARY.md101 B
History
- First seen on skills.sh
- First recorded snapshot · 18 installs
SKILL.md
Export Google Contacts to Sheets
PREREQUISITE: Load the following skills to execute this recipe:
gws-people,gws-sheets
Export Google Contacts directory to a Google Sheets spreadsheet.
Steps
- List contacts:
gws people people listDirectoryPeople --params '{"readMask": "names,emailAddresses,phoneNumbers", "sources": ["DIRECTORYSOURCETYPEDOMAINPROFILE"], "pageSize": 100}' --format json - Create a sheet:
gws sheets +append --spreadsheet SHEET_ID --range 'Contacts' --json-values '[["Name", "Email", "Phone"]]' - Append each contact row:
gws sheets +append --spreadsheet SHEET_ID --range 'Contacts' --json-values '[["Jane Doe", "[email protected]", "+1-555-0100"]]'