- AgentHub: 13 files updated with non-engineering examples (content drafts, research, strategy) — engineering stays primary, cross-domain secondary - AgentHub: 7 slash commands, 5 Python scripts, 3 references, 1 agent, dry_run.py validation (57 checks) - Marketplace: agenthub entry added with cross-domain keywords, engineering POWERFUL updated (25→30), product (12→13), counts synced across all configs - SEO: generate-docs.py now produces keyword-rich <title> tags and meta descriptions using SKILL.md frontmatter — "Claude Code Skills" in site_name propagates to all 276 HTML pages - SEO: per-domain title suffixes (Agent Skill for Codex & OpenClaw, etc.), slug-as-title cleanup, domain label stripping from titles - Broken links: 141→0 warnings — new rewrite_skill_internal_links() converts references/, scripts/, assets/ links to GitHub source URLs; skills/index.md phantom slugs fixed (6 marketing, 7 RA/QM) - Counts synced: 204 skills, 266 tools, 382 refs, 16 agents, 17 commands, 21 plugins — consistent across CLAUDE.md, README.md, docs/index.md, marketplace.json, getting-started.md, mkdocs.yml - Platform sync: Codex 163 skills, Gemini 246 items, OpenClaw compatible Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
84 lines
3.3 KiB
Markdown
84 lines
3.3 KiB
Markdown
---
|
|
title: "/google-workspace — Slash Command for AI Coding Agents"
|
|
description: "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
|
|
|
|
<div class="page-meta" markdown>
|
|
<span class="meta-badge">:material-console: Slash Command</span>
|
|
<span class="meta-badge">:material-github: <a href="https://github.com/alirezarezvani/claude-skills/tree/main/commands/google-workspace.md">Source</a></span>
|
|
</div>
|
|
|
|
|
|
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/scripts/gws_doctor.py` — Pre-flight diagnostics
|
|
- `engineering-team/google-workspace-cli/scripts/auth_setup_guide.py` — Auth setup guide
|
|
- `engineering-team/google-workspace-cli/scripts/gws_recipe_runner.py` — Recipe catalog & runner
|
|
- `engineering-team/google-workspace-cli/scripts/workspace_audit.py` — Security audit
|
|
- `engineering-team/google-workspace-cli/scripts/output_analyzer.py` — JSON/NDJSON analyzer
|
|
|
|
## Subcommands
|
|
|
|
### setup
|
|
Run pre-flight diagnostics and auth validation.
|
|
```bash
|
|
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
|
|
Run security and configuration audit.
|
|
```bash
|
|
python3 engineering-team/google-workspace-cli/scripts/workspace_audit.py [--services gmail,drive,calendar] [--json]
|
|
```
|
|
|
|
### recipe
|
|
Browse, search, and execute the 43 built-in gws recipes.
|
|
```bash
|
|
python3 engineering-team/google-workspace-cli/scripts/gws_recipe_runner.py --list [--persona <role>] [--json]
|
|
python3 engineering-team/google-workspace-cli/scripts/gws_recipe_runner.py --search <keyword> [--json]
|
|
python3 engineering-team/google-workspace-cli/scripts/gws_recipe_runner.py --describe <name>
|
|
python3 engineering-team/google-workspace-cli/scripts/gws_recipe_runner.py --run <name> [--dry-run]
|
|
```
|
|
|
|
### analyze
|
|
Parse, filter, and aggregate JSON output from any gws command.
|
|
```bash
|
|
gws <command> --json | python3 engineering-team/google-workspace-cli/scripts/output_analyzer.py [options]
|
|
python3 engineering-team/google-workspace-cli/scripts/output_analyzer.py --demo --format table
|
|
```
|
|
|
|
## Skill Reference
|
|
-> `engineering-team/google-workspace-cli/SKILL.md`
|
|
|
|
## Related Commands
|
|
- No direct dependencies (self-contained Google Workspace skill)
|