googleworkspace/cli22k installs
recipe-sync-contacts-to-sheet
Export Google Contacts directory to a Google Sheets spreadsheet.
How do I install this agent skill?
npx skills add https://github.com/googleworkspace/cli --skill recipe-sync-contacts-to-sheetIs this agent skill safe to install?
- Gen Agent Trust Hubpass
This skill automates the export of Google Contacts to Google Sheets using the official Google Workspace CLI tool. It is a legitimate productivity automation within a trusted ecosystem.
- Socketpass
No alerts
- Snykpass
Risk: LOW · No issues
- Runlayerwarn
1/1 file flagged
- ZeroLeakspass
Score: 93/100 · 2 sections analyzed
What does this agent skill do?
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": ["DIRECTORY_SOURCE_TYPE_DOMAIN_PROFILE"], "pageSize": 100}' --format json - Create a sheet:
gws sheets +append --spreadsheet SHEET_ID --range 'Contacts' --values '["Name", "Email", "Phone"]' - Append each contact row:
gws sheets +append --spreadsheet SHEET_ID --range 'Contacts' --values '["Jane Doe", "jane@company.com", "+1-555-0100"]'
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/googleworkspace/cli/recipe-sync-contacts-to-sheet">View recipe-sync-contacts-to-sheet on skillZs</a>