google-workspace

google-workspace is a command for Claude Code from ricneves-ai/flowgrammers-skills. It costs 48 tokens per session (760 once invoked), scanned A, original, MIT.

A command-line toolkit for managing Google Workspace services such as Gmail, Drive, and Calendar. It can check setup, audit services, find or run predefined workflows, and analyze command results.

In plain words
What is it for?
Use it to diagnose configuration, audit selected services, search and run recipes, and filter or group results as tables, CSV, or JSON.
Why use it?
It brings setup checks, security reviews, repeatable workflows, and structured output into one command-line process. This can make routine Workspace administration easier to inspect and repeat.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 engineering-team/google-workspace-cli/scripts/gws_doctor.py [--json].

Good fit Use it to diagnose configuration, audit selected services, search and run recipes, and filter or group results as tables, CSV, or JSON.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/ricneves-ai/flowgrammers-skills
agentmods
npx agentmods add commands/ricneves-ai/flowgrammers-skills/google-workspace

Made for: Claude Code.

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 google-workspace

README.md
[![agentmods](https://agentmods.dev/badge/commands/ricneves-ai/flowgrammers-skills/google-workspace/github.svg)](https://agentmods.dev/commands/ricneves-ai/flowgrammers-skills/google-workspace)
Your own site
<a href="https://agentmods.dev/commands/ricneves-ai/flowgrammers-skills/google-workspace"><img src="https://agentmods.dev/badge/commands/ricneves-ai/flowgrammers-skills/google-workspace/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 google-workspace

Your own site · 80×15
<a href="https://agentmods.dev/commands/ricneves-ai/flowgrammers-skills/google-workspace"><img src="https://agentmods.dev/badge/commands/ricneves-ai/flowgrammers-skills/google-workspace.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 760 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.00048 $0.00760
Opus 5 $0.00024 $0.00380
Sonnet 5 $0.00010 $0.00152
Haiku 4.5 $0.00005 $0.00076

Measured 7d ago against content hash 68968570dd60, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

google-workspace 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 7d 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.

commands/google-workspace.md · 78 lines

How it starts

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

/google-workspace

Administração do Google Workspace via CLI gws. Execute diagnósticos de configuração, auditorias de segurança, navegue e execute receitas, e analise saídas de comandos.

Uso

/google-workspace setup [--json]
/google-workspace audit [--services gmail,drive,calendar] [--json]
/google-workspace recipe list [--persona <cargo>] [--json]
/google-workspace recipe search <palavra-chave> [--json]
/google-workspace recipe run <nome> [--dry-run]
/google-workspace recipe describe <nome>
/google-workspace analyze [--filter <campo=valor>] [--group-by <campo>] [--stats <campo>] [--format table|csv|json]

Exemplos

/google-workspace setup
/google-workspace audit --services gmail,drive --json
/google-workspace recipe list --persona pm
/google-workspace recipe search "email"
/google-workspace recipe run standup-report --dry-run
/google-workspace recipe describe morning-briefing
/google-workspace analyze --filter "mimeType=pdf" --select "name,size" --format table

Scripts

  • engineering-team/google-workspace-cli/scripts/gws_doctor.py — Diagnóstico pré-voo
  • engineering-team/google-workspace-cli/scripts/auth_setup_guide.py — Guia de configuração de autenticação
  • engineering-team/google-workspace-cli/scripts/gws_recipe_runner.py — Catálogo e executor de receitas
  • engineering-team/google-workspace-cli/scripts/workspace_audit.py — Auditoria de segurança
  • engineering-team/google-workspace-cli/scripts/output_analyzer.py — Analisador JSON/NDJSON

Subcomandos

setup

Executa diagnóstico pré-voo e validação de autenticação.

python3 engineering-team/google-workspace-cli/scripts/gws_doctor.py [--json]
python3 engineering-team/google-workspace-cli/scripts/auth_setup_guide.py --validate [--json]

audit

Executa auditoria de segurança e configuração.

python3 engineering-team/google-workspace-cli/scripts/workspace_audit.py [--services gmail,drive,calendar] [--json]

recipe

Navega, pesquisa e executa as 43 receitas gws integradas.

python3 engineering-team/google-workspace-cli/scripts/gws_recipe_runner.py --list [--persona <cargo>] [--json]
python3 engineering-team/google-workspace-cli/scripts/gws_recipe_runner.py --search <palavra-chave> [--json]
python3 engineering-team/google-workspace-cli/scripts/gws_recipe_runner.py --describe <nome>
python3 engineering-team/google-workspace-cli/scripts/gws_recipe_runner.py --run <nome> [--dry-run]

Read the full file on GitHub · 78 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. 7d ago First seen · 78 lines · 48 tokens per session scan A 68968570dd60

Subscribe to this mod's changes

google-workspace is a command published in the GitHub repository ricneves-ai/flowgrammers-skills (112 stars, last pushed 3mo ago), licensed MIT. It adds 48 tokens to every session and 760 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-09-03.