← Back to Skills Marketplace
9ying66

clawbus-google-workspace

by clawbus · GitHub ↗ · v1.2.2 · MIT-0
cross-platform ✓ Security Clean
132
Downloads
0
Stars
0
Active Installs
10
Versions
Install in OpenClaw
/install clawbus-google-workspace
Description
Manage Google Calendar, Google Drive, and Google Sheets through MyBrandMetrics-connected data sources and the local Google Workspace CLI (gws). Supports cale...
README (SKILL.md)

clawbus-google-workspace

Manage Google Calendar, Google Drive, and Google Sheets through MyBrandMetrics-connected data sources and the local Google Workspace CLI (gws).

Use this skill when the user wants to work with Calendar events, Drive files, or Google Sheets data from chat.

Website: https://www.clawbus.com/
MyBrandMetrics API: https://mybrandmetrics.com/

Core Capabilities

Capability Details
Calendar workflows List events and create calendar events when the user provides the event details.
Drive workflows List files and upload files through the local gws CLI.
Sheets reading Read ranges from Google Sheets.
Sheets writing Append rows or update spreadsheet data.
Natural-language operations Use natural-language prompts in chat after the skill is installed and setup is ready.

Requirements

  • A Google account.
  • Access to MyBrandMetrics.
  • The needed Google data sources connected in MyBrandMetrics: Google Calendar, Google Drive, or Google Sheets.
  • A MyBrandMetrics API key.
  • The local Google Workspace CLI (gws) installed.
  • A clear task, such as a calendar action, Drive file operation, or Google Sheets read/write request.

Setup Flow

  1. Open https://mybrandmetrics.com/ and sign in with Google.
  2. In MyBrandMetrics, open Data sources.
  3. Connect the data sources required for the workflow: Google Calendar for calendar tasks, Google Drive for file tasks, and Google Sheets for spreadsheet tasks.
  4. Wait until the selected MyBrandMetrics connections are ready.
  5. Get the MyBrandMetrics API key.
  6. Install the clawbus-google-workspace skill.
  7. Install the Google Workspace CLI if gws is not already available.
  8. Start the Google Workspace workflow with natural-language instructions.

How It Works

The wrapper script uses the MyBrandMetrics API key with the configured MyBrandMetrics token service to get a short-lived Google session for the selected data source, then runs the matching gws command.

Chat task Data source to connect Wrapper service
Calendar events Google Calendar calendar
Drive files Google Drive drive
Spreadsheet rows and ranges Google Sheets sheets

For local script usage, provide the MyBrandMetrics API key with one of these options:

export GWS_SKILL_API_KEY="YOUR_MYBRANDMETRICS_API_KEY"

or:

echo "YOUR_MYBRANDMETRICS_API_KEY" > ~/.google_workspace_api_key

Do not paste short-lived Google session values into chat, files, examples, or logs. The wrapper handles them for the current command.

The runtime should provide the token service location through GWS_TOKEN_URL.

Example Requests

Natural-language examples:

Show my upcoming Google Calendar events for this week.
Upload this report to Google Drive and put it in the campaign folder.
Read rows A1:D20 from this Google Sheet and summarize the status column.
Append these rows to the sales tracker sheet after I confirm the target range.

Command Reference

Run Google Workspace commands through the wrapper:

python3 scripts/gws_wrapper.py \x3Cservice> \x3Ccommand> [args]

Useful patterns:

python3 scripts/gws_wrapper.py calendar events list
python3 scripts/gws_wrapper.py calendar events create --title "Meeting" --start "2026-05-15T10:00:00Z"
python3 scripts/gws_wrapper.py drive ls
python3 scripts/gws_wrapper.py drive upload \x3Cfilename>
python3 scripts/gws_wrapper.py sheets get \x3Cspreadsheet-id> \x3Crange>
python3 scripts/gws_wrapper.py sheets append \x3Cspreadsheet-id> \x3Crange> --data '[[1, 2], [3, 4]]'

Review Before Changes

Before creating, updating, uploading, appending, or deleting anything, confirm:

  • the connected Google account or workspace;
  • the calendar, Drive folder, file, spreadsheet, sheet, or range;
  • the exact data to write or upload;
  • whether the action changes existing content.

Troubleshooting

  • If MyBrandMetrics is not ready, reconnect the needed data source in MyBrandMetrics and try again: Google Calendar, Google Drive, or Google Sheets.
  • If the wrapper asks for a MyBrandMetrics API key, set GWS_SKILL_API_KEY or save the key to ~/.google_workspace_api_key.
  • If the wrapper asks for the token service, set GWS_TOKEN_URL in the runtime environment.
  • If gws is not found, run scripts/install_gws.sh or install the Google Workspace CLI manually.
  • If a sheet or Drive file cannot be found, check that the connected Google account has access.
Usage Guidance
Install only if you trust MyBrandMetrics/Clawbus and need Google Calendar, Drive, or Sheets access from chat. Confirm the token-service URL, protect the API key file or environment variable, install the gws CLI from a trusted pinned source if possible, and carefully review any create, upload, append, update, or delete action before approving it.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The stated purpose matches the artifacts: it manages Calendar, Drive, and Sheets through MyBrandMetrics and the local gws CLI. These capabilities include account reads and writes, so they are sensitive but purpose-aligned.
Instruction Scope
The skill documents create/upload/append/update operations and also instructs the agent to confirm account, target, and data before changes. The wrapper passes arbitrary gws command arguments, so users should keep write actions explicitly user-directed.
Install Mechanism
There is no automatic install spec, but the optional installer fetches the latest external Google Workspace CLI without pinning or checksum verification. This is common setup behavior, but users should prefer a trusted, pinned installation.
Credentials
The skill requires a MyBrandMetrics API key and GWS_TOKEN_URL even though registry metadata does not declare required env vars or a primary credential. The SKILL.md and code disclose this flow, so this is a documentation/proportionality note rather than a hidden behavior concern.
Persistence & Privilege
The skill may store the MyBrandMetrics API key in ~/.google_workspace_api_key and uses short-lived Google tokens for gws commands. There is no evidence of background persistence, but the local credential file should be protected or removed when not needed.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawbus-google-workspace
  3. After installation, invoke the skill by name or use /clawbus-google-workspace
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.2.2
Refine Google Workspace usage instructions and runtime token configuration
v1.2.1
Clarify MyBrandMetrics setup and Google data source usage
v1.2.0
Cleaned and optimized user documentation for GWS CLI usage.
v1.1.0
Cleaned sensitive information, verified真实用法 for GWS CLI.
v1.0.5
Restore original local gws CLI usage documentation
v1.0.4
Clarify local gws CLI usage and MyBrandMetrics role
v1.0.3
Clarify Google Calendar Drive and Sheets data source setup
v1.0.2
Optimize Google Workspace page with MyBrandMetrics setup flow
v1.0.1
Improve user-facing documentation and safety guidance.
v1.0.0
Remove local metadata and publish Google Workspace skill.
Metadata
Slug clawbus-google-workspace
Version 1.2.2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 10
Frequently Asked Questions

What is clawbus-google-workspace?

Manage Google Calendar, Google Drive, and Google Sheets through MyBrandMetrics-connected data sources and the local Google Workspace CLI (gws). Supports cale... It is an AI Agent Skill for Claude Code / OpenClaw, with 132 downloads so far.

How do I install clawbus-google-workspace?

Run "/install clawbus-google-workspace" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is clawbus-google-workspace free?

Yes, clawbus-google-workspace is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does clawbus-google-workspace support?

clawbus-google-workspace is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created clawbus-google-workspace?

It is built and maintained by clawbus (@9ying66); the current version is v1.2.2.

💬 Comments