Install
openclaw skills install @patrick-erichsen-2/google-workspacePlan, audit, and safely execute Google Workspace admin, Gmail, Calendar, Drive, Groups, and user lifecycle work. Use when Codex is asked to help with Workspace migrations, account cleanups, permission audits, group rollouts, mailbox/calendar changes, or API/GAM/gcloud command planning.
openclaw skills install @patrick-erichsen-2/google-workspaceUse this skill to turn Google Workspace administration requests into safe, reviewable plans and commands. Default to read-only discovery before proposing changes, and keep destructive operations behind explicit confirmation.
gam, gcloud,
service account with domain-wide delegation, or direct Google API calls.read,
proposed write, or rollback.Prefer commands that can be copied and audited. Use placeholders for domains, users, groups, and file IDs until the user provides real values.
For gam, prefer patterns like:
gam info user user@example.com
gam print groups member user@example.com
gam print drivefileacls query "owner = 'user@example.com'"
For gcloud, first confirm the active project and account:
gcloud config list account project
gcloud auth list
For direct API calls, name the API, HTTP method, endpoint, required OAuth scope, and dry-run/read-only equivalent when one exists.
references/scopes.md when selecting API scopes or explaining OAuth
permissions.scripts/workspace-change-plan.mjs <input.json> to turn a small JSON
change set into a Markdown rollout checklist.Example input:
{
"title": "Sales group cleanup",
"owner": "admin@example.com",
"changes": [
{
"kind": "group-membership",
"target": "sales@example.com",
"action": "remove stale members",
"risk": "medium",
"rollback": "restore exported membership CSV"
}
]
}