Recipe Email Drive Link

v1.0.12

Share a Google Drive file and email the link with a message to recipients.

0· 386·9 current·9 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for googleworkspace-bot/recipe-email-drive-link.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Recipe Email Drive Link" (googleworkspace-bot/recipe-email-drive-link) from ClawHub.
Skill page: https://clawhub.ai/googleworkspace-bot/recipe-email-drive-link
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: gws
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install recipe-email-drive-link

ClawHub CLI

Package manager switcher

npx clawhub@latest install recipe-email-drive-link
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the runtime instructions. The skill only needs the gws CLI and the gws-drive and gws-gmail recipe skills to list a file, add Drive permissions, and send an email — these are expected for the stated task.
Instruction Scope
SKILL.md confines actions to gws drive and gmail commands (list files, create permission, send email). It does not instruct reading local files or unrelated environment variables. Note: it assumes the referenced gws-* skills provide authentication/credentials; this recipe itself does not declare or manage those credentials.
Install Mechanism
Instruction-only skill with no install spec and no code to write to disk — lowest install risk.
Credentials
The recipe declares no environment variables itself, which is reasonable because it delegates auth to gws-drive and gws-gmail. You should verify those dependent skills' credentials and scopes (Google OAuth tokens) before use; otherwise the skill will operate with whatever account those skills are authorized for.
Persistence & Privilege
Does not request always:true or system-wide configuration changes. It is user-invocable and does not persist beyond executing the gws commands.
Assessment
This recipe appears coherent, but check a few practical things before installing/using it: - Confirm the gws CLI you have is from a trusted source and that you understand which Google account it's authorized to use. - Inspect the gws-drive and gws-gmail skills (the recipe depends on them) to see what credentials/scopes they require — they will control which Drive files and recipients can be accessed or emailed. - Verify the permission being granted (role/type). Avoid using broad scopes like 'anyoneWithLink' unless intended. - Double-check recipient addresses and FILE_ID before running to avoid accidental data exposure. - If you need stronger assurance, run the commands in a test account or with a non-sensitive file first. Overall: the skill does what it says, but its behavior depends entirely on the gws CLI and the referenced skills' authentication — review those before use.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binsgws
latestvk97927zaje806x0yxsz2tyt9zh83y8qb
386downloads
0stars
13versions
Updated 3w ago
v1.0.12
MIT-0

Email a Google Drive File Link

PREREQUISITE: Load the following skills to execute this recipe: gws-drive, gws-gmail

Share a Google Drive file and email the link with a message to recipients.

Steps

  1. Find the file: gws drive files list --params '{"q": "name = '\''Quarterly Report'\''"}'
  2. Share the file: gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "client@example.com"}'
  3. Email the link: gws gmail +send --to client@example.com --subject 'Quarterly Report' --body 'Hi, please find the report here: https://docs.google.com/document/d/FILE_ID'

Comments

Loading comments...