Gmail Draft Send

v1.0.0

Atomic node skill to send an existing Gmail draft.

0· 39·1 current·1 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 zvirb/gmail-draft-send.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Gmail Draft Send" (zvirb/gmail-draft-send) from ClawHub.
Skill page: https://clawhub.ai/zvirb/gmail-draft-send
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: gog
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 gmail-draft-send

ClawHub CLI

Package manager switcher

npx clawhub@latest install gmail-draft-send
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name, description, and runtime instructions all describe the single task: run a native CLI command to send a Gmail draft. Requiring a CLI binary (gog) is coherent with that purpose.
Instruction Scope
SKILL.md is narrowly scoped: it instructs the agent to run a single command 'gog gmail drafts send <draftId> --json', parse the JSON response, and retry up to 3 times on failure. It does not instruct reading unrelated files or exfiltrating data. However it grants the agent permission to execute an arbitrary local binary, so the trust boundary is the 'gog' executable and its local credentials/config.
Install Mechanism
Instruction-only skill with no install spec; nothing is written to disk by the skill itself. This is the lowest-risk install pattern.
Credentials
The skill declares no environment variables and no credentials, which is consistent for a CLI-driven action. But it implicitly relies on the 'gog' binary's own authentication (e.g., local OAuth tokens or configs). The skill does not document how 'gog' obtains Gmail credentials—verify where 'gog' stores/obtains auth tokens.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request permanent presence or modify other skills. Autonomous invocation is allowed by platform default but not flagged here on its own.
Assessment
This skill is narrowly focused and appears coherent, but it requires a local 'gog' CLI. Before installing or enabling it: 1) verify what 'gog' is and where it came from (package manager, vendor, path), 2) confirm how 'gog' authenticates to Gmail and where those credentials live (local OAuth tokens, config files), and 3) ensure you trust the 'gog' binary because the skill will run it with whatever permissions and credentials it already has. If you don't want an agent executing local binaries with your Gmail access, avoid enabling this skill or restrict it to manual/user-invoked use only.

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

Runtime requirements

Binsgog
latestvk978ma1trd3ddgpwchqt3nxzkh85q8p4
39downloads
0stars
1versions
Updated 20h ago
v1.0.0
MIT-0

Lean Philosophy (Principles)

  • Kaizen (改善): This skill is an atomic node, strictly limited to sending an existing draft.
  • Standardized Work (Hyojun Sagyo): This node represents the most efficient, standardized path for this specific task before automation.
  • Jidoka (自働化): This node includes autonomous defect detection.

Gmail Draft Send

This skill allows the agent to send an existing Gmail draft using the native CLI.

Cognitive Directives

WHEN [An existing email draft needs to be sent] THEN [Execute the native terminal command gog gmail drafts send <draftId> --json]

Schema Example

{
  "command": "gog gmail drafts send draft_id_123 --json"
}

Jidoka Validation Loop

  1. Try: Execute the command.
  2. Evaluate: Check the JSON response to confirm the email was sent successfully.
  3. Correct/Fail: If it failed or hallucinated parameters, retry up to 3 times (max_retries=3).
  4. Proceed: Return the confirmation.

Expected Output

A JSON object confirming the email was sent successfully.

Comments

Loading comments...