
Gws Setup
- 949 installs
- 946 repo stars
- Updated July 2, 2026
- jezweb/claude-skills
gws-setup is a Claude Code skill that bootstraps a fully authenticated Google Workspace CLI with 90+ ready-to-use agent skills for Gmail, Drive, Calendar, Docs, Sheets, and related Google APIs.
About
gws-setup configures the @googleworkspace/cli gws tool from scratch for Claude Code environments that need Google Workspace automation. The skill guides GCP project creation, OAuth credential setup, authentication flows, and installation of 90+ agent skills covering Gmail, Drive, Calendar, Sheets, Docs, Chat, Tasks, and more. Compatibility is claude-code-only and Node.js is listed among prerequisites. Developers reach for gws-setup on first-time gws installs, Google API access configuration, or troubleshooting gws auth errors. The outcome is a working authenticated CLI plus skill packs agents can invoke for day-to-day Workspace operations.
- Performs pre-flight checks that intelligently skip completed steps
- Guides creation of GCP project and OAuth Desktop credentials
- Handles full authentication flow and token setup
- Installs and registers 90+ agent skills for Claude Code
- Supports Gmail, Drive, Calendar, Sheets, Docs, Chat, Tasks and additional services
Gws Setup by the numbers
- 949 all-time installs (skills.sh)
- +19 installs in the week ending Jul 29, 2026 (Skillselion tracking)
- Ranked #1,120 of 16,565 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: HIGH risk (skills.sh audit)
- Data as of Jul 31, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jezweb/claude-skills --skill gws-setupAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 949 |
|---|---|
| repo stars | ★ 946 |
| Security audit | 1 / 3 scanners passed |
| Last updated | July 2, 2026 |
| Repository | jezweb/claude-skills ↗ |
How do you set up Google Workspace CLI for agents?
Bootstrap a fully authenticated Google Workspace CLI with 90+ ready-to-use agent skills for Gmail, Drive, Calendar, Docs, Sheets and more.
Who is it for?
Claude Code users who need first-time Google Workspace CLI setup with OAuth and a full skill library for Gmail, Drive, and Calendar automation.
Skip if: Non-Claude agents marked incompatible, projects that only need a single Google API without gws, or teams forbidding OAuth CLI credentials on developer machines.
When should I use this skill?
The user wants first-time gws setup, Google Workspace API credentials, gws auth troubleshooting, or Google Workspace CLI installation.
What you get
Authenticated gws CLI, GCP OAuth credentials, and 90+ installed Google Workspace agent skills for Claude Code.
- authenticated gws CLI
- OAuth credential configuration
- installed Workspace skill pack
By the numbers
- Installs 90+ Google Workspace agent skills for Claude Code
- Uses @googleworkspace/cli (gws) with GCP OAuth credentials
Files
Google Workspace CLI — First-Time Setup
Set up the gws CLI (@googleworkspace/cli) with OAuth credentials and 90+ agent skills for Claude Code. Produces a fully authenticated CLI with skills for Gmail, Drive, Calendar, Sheets, Docs, Chat, Tasks, and more.
Prerequisites
- Node.js 18+
- A Google account (personal or Workspace)
- Access to Google Cloud Console (console.cloud.google.com)
Workflow
Step 1: Pre-flight Checks
Check what's already done and skip completed steps:
# Check if gws is installed
which gws && gws --version
# Check if client_secret.json exists
ls ~/.config/gws/client_secret.json
# Check if already authenticated
gws auth statusIf gws auth status shows "status": "success" with scopes, skip to Step 6 (Install Skills).
Step 2: Install the CLI
npm install -g @googleworkspace/cli
gws --versionStep 3: Create a GCP Project and OAuth Credentials
The user needs to create OAuth Desktop App credentials in Google Cloud Console. Walk them through each step.
3a. Create or select a GCP project:
Direct the user to: https://console.cloud.google.com/projectcreate
Or use an existing project. Ask the user which they prefer.
3b. Enable Google Workspace APIs:
Direct the user to the API Library for their project: https://console.cloud.google.com/apis/library?project=PROJECT_ID
Enable these APIs (search for each):
- Gmail API
- Google Drive API
- Google Calendar API
- Google Sheets API
- Google Docs API
- Google Chat API (requires extra Chat App config — see below)
- Tasks API
- People API
- Google Slides API
- Google Forms API
- Admin SDK API (optional — for Workspace admin features)
3c. Configure Google Chat App (required for Chat API):
Enabling the Chat API alone isn't enough — Google requires a Chat App configuration even for user-context OAuth access. Without this, all Chat API calls return errors.
Direct the user to: https://console.cloud.google.com/apis/api/chat.googleapis.com/hangouts-chat?project=PROJECT_ID
1. Click the Configuration tab 2. Fill in app details (name, avatar, description — values don't matter for CLI use) 3. Under "Functionality", check Spaces and group conversations 4. Under "Connection settings", select Apps Script or HTTP endpoint (pick any — we just need the config to exist) 5. Save
This creates the app identity that the Chat API requires. Messages sent via gws still appear as coming from the authenticated user (OAuth user context), not from a bot.
3e. Configure OAuth consent screen:
Direct the user to: https://console.cloud.google.com/apis/credentials/consent?project=PROJECT_ID
Settings:
- User Type: External (works for any Google account)
- App name:
gws CLI(or any name) - User support email: their email
- Developer contact: their email
- Leave scopes blank (gws requests scopes at login time)
- Add their Google account as a test user (required while app is in "Testing" status)
- Save and continue through all screens
3f. Create OAuth client ID:
Direct the user to: https://console.cloud.google.com/apis/credentials?project=PROJECT_ID
1. Click Create Credentials → OAuth client ID 2. Application type: Desktop app 3. Name: gws CLI 4. Click Create 5. Copy the JSON or download the client_secret_*.json file
3g. Save the credentials:
Ask the user to provide the client_secret.json content (paste the JSON or provide the downloaded file path).
mkdir -p ~/.config/gwsWrite the JSON to ~/.config/gws/client_secret.json. The expected format:
{
"installed": {
"client_id": "...",
"project_id": "...",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"client_secret": "...",
"redirect_uris": ["http://localhost"]
}
}Step 4: Choose Scopes
Ask the user what level of access they want:
| Option | Command | What it grants |
|---|---|---|
| Full access (recommended) | gws auth login --full | All Workspace scopes including admin, pubsub, cloud-platform |
| Core services | gws auth login -s gmail,drive,calendar,sheets,docs,chat,tasks | Most-used services only |
| Minimal | gws auth login -s gmail,calendar | Just email and calendar |
Recommend full access for power users. The OAuth consent screen shows all requested scopes so the user can review before granting.
Note: If the GCP app is in "Testing" status, scope selection is limited to ~25 scopes. Use -s service1,service2 to request targeted scopes, or publish the app (Publish → In Production) for broader scope access.Step 5: Authenticate
IMPORTANT: This step prints a very long OAuth URL (30+ scopes) that the user must open in their browser. The URL is too long to copy from terminal output — it wraps across lines and breaks. Always extract it to a file and open it programmatically.
1. Run the login command and capture the output:
gws auth login --full 2>&1 | tee /tmp/gws-auth-output.txt
# Or with specific services:
# gws auth login -s gmail,drive,calendar,sheets,docs,chat,tasks 2>&1 | tee /tmp/gws-auth-output.txtRunning as a background task is fine — it will complete once the user approves in browser.
2. Extract and open the URL (run separately after output appears):
grep -o 'https://accounts.google.com[^ ]*' /tmp/gws-auth-output.txt > /tmp/gws-auth-url.txt
cat /tmp/gws-auth-url.txt | xargs openIf open doesn't work, tell the user: "The auth URL is saved at /tmp/gws-auth-url.txt — open that file and copy the URL."
3. Wait for the user to approve in their browser.
After browser approval, gws stores encrypted credentials at ~/.config/gws/credentials.enc.
Verify:
gws auth statusShould show "status": "success" with the authenticated account and granted scopes.
Step 6: Install Agent Skills
Install the 90+ gws agent skills globally for Claude Code:
npx skills add googleworkspace/cli -g --agent claude-code --allVerify skills are installed:
ls ~/.claude/skills/gws-* | wc -lShould show 30+ gws skill directories.
Step 7: Save Credentials for Other Machines
If the user has other machines to set up, suggest exporting the client credentials:
gws auth exportThis prints decrypted credentials (including refresh token) to stdout. The client_secret.json file is the portable part — the same OAuth client can be used on any machine, with gws auth login generating fresh user tokens per machine.
Tell the user to save the client_secret.json content somewhere secure (password manager, encrypted note) for use with the gws-install skill on other machines.
Step 8: Verify Everything Works
Run a few commands to confirm:
# Check auth
gws auth status
# Check calendar
gws calendar +agenda --today
# Check email
gws gmail +triageIf any command fails with auth errors, re-run gws auth login with the needed scopes.
---
Critical Patterns
Testing vs Production OAuth Apps
GCP OAuth apps start in "Testing" status with a 7-day token expiry and ~25 scope limit. For long-term use:
- Push the app to Production in the OAuth consent screen settings
- Production apps have no token expiry limit
- For personal/internal use, Google does not require verification
Scope Reference
| Service flag | What it enables |
|---|---|
gmail | Send, read, manage email, labels, filters |
drive | Files, folders, shared drives |
calendar | Events, calendars, free/busy |
sheets | Read and write spreadsheets |
docs | Read and write documents |
chat | Spaces, messages |
tasks | Task lists and tasks |
slides | Presentations |
forms | Forms and responses |
people | Contacts and profiles |
admin | Workspace admin (directory, devices, groups) |
Environment Variable Alternative
Instead of client_secret.json, credentials can be provided via environment variables:
export GOOGLE_WORKSPACE_CLI_CLIENT_ID="your-client-id"
export GOOGLE_WORKSPACE_CLI_CLIENT_SECRET="your-client-secret"
gws auth loginConfig Directory
All gws config lives in ~/.config/gws/:
| File | Purpose |
|---|---|
client_secret.json | OAuth client credentials (portable) |
credentials.enc | Encrypted user tokens (per-machine) |
token_cache.json | Token refresh cache |
cache/ | API discovery schema cache |
See Also
- gws-install — Quick setup on additional machines with existing credentials
- gws-shared — Auth patterns and global flags for gws commands
Related skills
How it compares
Pick gws-setup for full Workspace CLI plus skill bundles rather than hand-rolling individual Google API OAuth clients per service.
FAQ
How many skills does gws-setup install?
gws-setup installs 90+ agent skills for Claude Code covering Gmail, Drive, Calendar, Sheets, Docs, Chat, Tasks, and additional Google Workspace services.
Which agent is gws-setup compatible with?
gws-setup is marked claude-code-only in its manifest and targets first-time @googleworkspace/cli setup with OAuth and authenticated gws usage.
Is Gws Setup safe to install?
skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.