claude-skills/docs/commands/google-workspace.md
Claude 82c5aea9f0
Merge origin/dev: reconcile docs redesign with upstream skill changes
- Resolve conflicts: keep redesigned skills index, take dev's cs-aeo link
  fix, union of DOMAIN_SEO_CONTEXT entries in generate-docs.py
- Regenerate catalog on the merged tree (dev's agent/command description
  updates, removed ai-seo/release-manager/command-guide, restructured
  universal-scraping-architect)
- Update counters to post-merge truth from scripts/derive_counters.py:
  345 skills, 78 plugins (14 bundles + 64 standalone), 570+ Python tools
- Add redirects for upstream-removed pages (ai-seo -> aeo,
  release-manager -> changelog-generator, command-guide -> engineering index)
- Add compliance-os bundle to bundle tables; rebuild 78-plugin table from
  marketplace.json
- Teach the generator to rewrite repo-root-relative source links to GitHub
  URLs — mkdocs build --strict now passes with zero warnings

https://claude.ai/code/session_015bYZ97nV4oRb3LbxCRFVcP
2026-06-11 15:52:42 +00:00

3.7 KiB

title description
/google-workspace — Slash Command for AI Coding Agents Google Workspace CLI operations: setup diagnostics, security audit, recipe discovery, and output analysis. Usage: /google-workspace. Slash command for Claude Code, Codex CLI, Gemini CLI.

/google-workspace

:material-console: Slash Command :material-github: Source

Google Workspace CLI administration via the gws CLI. Run setup diagnostics, security audits, browse and execute recipes, and analyze command output.

Usage

/google-workspace setup [--json]
/google-workspace audit [--services gmail,drive,calendar] [--json]
/google-workspace recipe list [--persona <role>] [--json]
/google-workspace recipe search <keyword> [--json]
/google-workspace recipe run <name> [--dry-run]
/google-workspace recipe describe <name>
/google-workspace analyze [--filter <field=value>] [--group-by <field>] [--stats <field>] [--format table|csv|json]

Examples

/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/skills/google-workspace-cli/scripts/gws_doctor.py — Pre-flight diagnostics
  • engineering-team/google-workspace-cli/skills/google-workspace-cli/scripts/auth_setup_guide.py — Auth setup guide
  • engineering-team/google-workspace-cli/skills/google-workspace-cli/scripts/gws_recipe_runner.py — Recipe catalog & runner
  • engineering-team/google-workspace-cli/skills/google-workspace-cli/scripts/workspace_audit.py — Security audit
  • engineering-team/google-workspace-cli/skills/google-workspace-cli/scripts/output_analyzer.py — JSON/NDJSON analyzer

Subcommands

setup

Run pre-flight diagnostics and auth validation.

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

audit

Run security and configuration audit.

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

recipe

Browse, search, and execute the 43 built-in gws recipes.

python3 engineering-team/google-workspace-cli/skills/google-workspace-cli/scripts/gws_recipe_runner.py --list [--persona <role>] [--json]
python3 engineering-team/google-workspace-cli/skills/google-workspace-cli/scripts/gws_recipe_runner.py --search <keyword> [--json]
python3 engineering-team/google-workspace-cli/skills/google-workspace-cli/scripts/gws_recipe_runner.py --describe <name>
python3 engineering-team/google-workspace-cli/skills/google-workspace-cli/scripts/gws_recipe_runner.py --run <name> [--dry-run]

analyze

Parse, filter, and aggregate JSON output from any gws command.

gws <command> --json | python3 engineering-team/google-workspace-cli/skills/google-workspace-cli/scripts/output_analyzer.py [options]
python3 engineering-team/google-workspace-cli/skills/google-workspace-cli/scripts/output_analyzer.py --demo --format table

Skill Reference

-> engineering-team/google-workspace-cli/skills/google-workspace-cli/SKILL.md

  • No direct dependencies (self-contained Google Workspace skill)