configure

configure is a skill for Claude Code from orieg/gws-connector. It costs 30 tokens per session (1,785 once invoked), scanned A, original, MIT.

A setup guide for connecting Google Workspace accounts, including Gmail, Calendar, and Drive, through a Google Cloud project.

In plain words
What is it for?
Use it to check existing connections, create OAuth credentials, enable Google APIs, and connect or reconfigure accounts.
Why use it?
It explains the account-connection process and the required Google permissions step by step.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the gws plugin — 6 skills, 1 agent, 1 hook, 1 MCP server shipped together

Good fit Use it to check existing connections, create OAuth credentials, enable Google APIs, and connect or reconfigure accounts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/orieg/gws-connector/configure
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add orieg/gws-connector --skill configure
Clone the repo
git clone --depth 1 https://github.com/orieg/gws-connector

Made for: Claude Code.

Or install gws, the plugin that ships this one along with the rest of its 6 skills, 1 agent, 1 hook, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for configure

README.md
[![agentmods](https://agentmods.dev/badge/skills/orieg/gws-connector/configure/github.svg)](https://agentmods.dev/skills/orieg/gws-connector/configure)
Your own site
<a href="https://agentmods.dev/skills/orieg/gws-connector/configure"><img src="https://agentmods.dev/badge/skills/orieg/gws-connector/configure/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for configure

Your own site · 80×15
<a href="https://agentmods.dev/skills/orieg/gws-connector/configure"><img src="https://agentmods.dev/badge/skills/orieg/gws-connector/configure.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,785 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.01785
Opus 5 $0.00015 $0.00892
Sonnet 5 $0.00006 $0.00357
Haiku 4.5 $0.00003 $0.00178

Measured 8d ago against content hash 9d3670d808ab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

configure scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/configure/SKILL.md · 145 lines

How it starts

The opening of the file, as written. The whole thing — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GWS Configure

Walk the user through the complete setup of the GWS connector plugin, step by step.

Step 1: Check current state

Call gws.accounts.list to see if any accounts are already connected.

If accounts exist, show them and ask if the user wants to add another account or reconfigure.

Step 2: Google Cloud Project setup

If no credentials are configured (the tool returns an error about missing credentials), guide the user through creating a GCP project:

2a. Create or select a GCP project

Tell the user:

To connect Google accounts, you need OAuth credentials from a Google Cloud project. Here's how to set them up (one-time, ~5 minutes):

1. Go to the Google Cloud Console: https://console.cloud.google.com/

2. Create a new project (or select an existing one):

  • Click the project dropdown at the top → "New Project"
  • Name it something like "GWS Connector"
  • Click "Create"

3. Enable the required APIs — go to each link and click "Enable":

4. Configure the OAuth consent screen:

5. Add scopes — go to the Data Access tab:

  • Go to: https://console.cloud.google.com/auth/scopes
  • Click "Add or Remove Scopes"
  • In the panel that opens, paste these scopes into the "Manually add scopes" box at the bottom (one per line):
    • https://www.googleapis.com/auth/gmail.modify
    • https://www.googleapis.com/auth/calendar
    • https://www.googleapis.com/auth/drive
    • https://www.googleapis.com/auth/spreadsheets
    • https://www.googleapis.com/auth/documents
    • https://www.googleapis.com/auth/contacts.readonly
    • https://www.googleapis.com/auth/directory.readonly
    • https://www.googleapis.com/auth/tasks
    • https://www.googleapis.com/auth/presentations
    • https://www.googleapis.com/auth/userinfo.email
    • https://www.googleapis.com/auth/userinfo.profile
  • Click "Update" to confirm, then "Save"

Why each scope is requested:

Scope Purpose Tools using it
gmail.modify Read/draft/modify messages and labels gws.mail.*
calendar Read/create/update events gws.cal.*
drive Search/read files across Drive gws.drive.*
spreadsheets Read and write Google Sheets cells and metadata gws.sheets.*
documents Read and write Google Docs content gws.docs.*
contacts.readonly Read-only search of your own Google Contacts gws.contacts.search
directory.readonly Read-only search of the Workspace org directory (Workspace accounts only) gws.contacts.directory_search
tasks Read and write Google Tasks lists and tasks gws.tasks.*
presentations Read and write Google Slides content gws.slides.*
userinfo.email Identify the authorizing account (email match on reauth) account management
userinfo.profile Store a display name alongside the email account management

6. Add test users:

7. Create OAuth credentials:

  • Go to: https://console.cloud.google.com/auth/clients
  • Click "+ Create Client" → "OAuth client ID"
  • Application type: Desktop app
  • Name it (e.g., "Claude GWS Desktop")
  • Click "Create"
  • Download the JSON file (click the download icon next to your new client)

Read the full file on GitHub · 145 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 145 lines · 30 tokens per session scan A 9d3670d808ab

Subscribe to this mod's changes

configure is a skill published in the GitHub repository orieg/gws-connector (1 stars, last pushed 4d ago), licensed MIT. It adds 30 tokens to every session and 1,785 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.