Recipe Draft Email From Doc

v1.0.12

Read content from a Google Doc and use it as the body of a Gmail message.

0· 351·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-draft-email-from-doc.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Recipe Draft Email From Doc" (googleworkspace-bot/recipe-draft-email-from-doc) from ClawHub.
Skill page: https://clawhub.ai/googleworkspace-bot/recipe-draft-email-from-doc
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-draft-email-from-doc

ClawHub CLI

Package manager switcher

npx clawhub@latest install recipe-draft-email-from-doc
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill says it will read a Google Doc and use it as a Gmail message body; the SKILL.md calls the gws CLI and references gws-docs and gws-gmail skills—these are appropriate and proportional to the stated purpose.
Instruction Scope
Instructions are narrowly scoped to calling the gws docs get command and then sending mail via gws gmail. One operational note: the recipe directly sends email with the doc content (no preview/confirmation step in the instructions), which could cause accidental disclosure of sensitive document contents if used without care.
Install Mechanism
This is an instruction-only skill with no install spec or downloaded code, so nothing is written to disk by the skill itself.
Credentials
The skill declares no env vars (appropriate). However, the referenced gws-docs and gws-gmail skills and the gws CLI will require Google credentials/authorization at runtime (OAuth tokens/scopes). Those credentials are expected for this functionality but are not shown here; users should verify the scopes requested by the underlying gws-related skills.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request persistent system privileges or modify other skills' configs.
Assessment
This recipe is coherent for its stated purpose, but before installing: 1) confirm you trust the gws CLI and the referenced gws-docs/gws-gmail skills, because those components will require Google account authorization (check what OAuth scopes they request). 2) Be careful with document selection and the recipient address—the recipe, as written, sends the doc content directly with no preview step and could leak sensitive information. 3) Test with a non-sensitive document and a test recipient first. 4) If you want safety, add an explicit confirmation/preview step before sending.

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

Runtime requirements

Binsgws
latestvk977hama0eg1r5nyz4t2rvprs583y7k5
351downloads
0stars
13versions
Updated 4w ago
v1.0.12
MIT-0

Draft a Gmail Message from a Google Doc

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

Read content from a Google Doc and use it as the body of a Gmail message.

Steps

  1. Get the document content: gws docs documents get --params '{"documentId": "DOC_ID"}'
  2. Copy the text from the body content
  3. Send the email: gws gmail +send --to recipient@example.com --subject 'Newsletter Update' --body 'CONTENT_FROM_DOC'

Comments

Loading comments...