recipe-sync-contacts-to-sheet
Export Google Contacts directory to a Google Sheets spreadsheet.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Export Google Contacts directory to a Google Sheets spreadsheet.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Google Workspace Admin SDK: Manage users, groups, and devices.
Google Workspace Alert Center: Manage Workspace security alerts.
Google Apps Script: Manage and execute Apps Script projects.
Google Cloud Identity: Manage identity groups and memberships.
Google People: Manage contacts and profiles.
Google Workspace Reseller: Manage Workspace subscriptions.
| name | recipe-sync-contacts-to-sheet |
| version | 1.0.0 |
| description | Export Google Contacts directory to a Google Sheets spreadsheet. |
| metadata | {"openclaw":{"category":"recipe","domain":"productivity","requires":{"bins":["gws"],"skills":["gws-people","gws-sheets"]}}} |
PREREQUISITE: Load the following skills to execute this recipe:
gws-people,gws-sheets
Export Google Contacts directory to a Google Sheets spreadsheet.
gws people people listDirectoryPeople --params '{"readMask": "names,emailAddresses,phoneNumbers", "sources": ["DIRECTORY_SOURCE_TYPE_DOMAIN_PROFILE"], "pageSize": 100}' --format jsongws sheets +append --spreadsheet-id SHEET_ID --range 'Contacts' --values '["Name", "Email", "Phone"]'gws sheets +append --spreadsheet-id SHEET_ID --range 'Contacts' --values '["Jane Doe", "jane@company.com", "+1-555-0100"]'