Gmail Draft Update Subject

v1.0.0

Atomic node skill to update the subject of an existing Gmail draft.

0· 41·0 current·0 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-update-subject.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Gmail Draft Update Subject" (zvirb/gmail-draft-update-subject) from ClawHub.
Skill page: https://clawhub.ai/zvirb/gmail-draft-update-subject
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-update-subject

ClawHub CLI

Package manager switcher

npx clawhub@latest install gmail-draft-update-subject
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description match the actual behavior: the SKILL.md instructs running a gog CLI command to update a Gmail draft subject. Requiring a gog binary is consistent with using a native CLI to talk to Gmail.
Instruction Scope
Instructions are narrowly scoped to executing `gog gmail drafts update <draftId> --subject ... --json` with a 3-retry loop and JSON validation. The SKILL.md does not instruct the agent to read unrelated files or env vars. It does not explain how authentication is obtained; it implicitly assumes the gog CLI is already authenticated.
Install Mechanism
No install spec and no code files (instruction-only) — nothing is written to disk by the skill itself, which is the lowest-risk install model.
Credentials
The skill requires no environment variables and lists only the gog binary. That is minimal and proportional — however, real Gmail access will depend on the gog CLI's own auth/config (not declared here), so the user should verify where gog stores credentials and which account it uses.
Persistence & Privilege
The skill is not always-enabled and does not request elevated or persistent platform privileges. It can be invoked autonomously (platform default), which is expected for skills, but that is not itself a red flag here.
Assessment
This skill is narrowly focused and internally consistent, but before installing: (1) confirm what the 'gog' binary is, where it came from, and that you trust its publisher; (2) verify that gog is already installed and configured for the correct Gmail account (it likely performs its own OAuth/auth flow and stores credentials on disk); (3) test the example command manually to see what permissions and credentials are used and what the CLI does; (4) be aware that although the skill requests no env vars, the CLI may read local credentials/config files — ensure those are acceptable for the agent to use. If you can't verify gog's provenance or account configuration, treat the skill as higher risk.

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

Runtime requirements

Binsgog
latestvk97b8wz5ctzxz3esds97ax9acs85pgz9
41downloads
0stars
1versions
Updated 7h ago
v1.0.0
MIT-0

Lean Philosophy (Principles)

  • Kaizen (改善): This skill is an atomic node, strictly limited to updating the subject of a draft, preventing complex multi-field string constructions.
  • 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 Update Subject

This skill allows the agent to update the subject of an existing Gmail draft using the native CLI.

Cognitive Directives

WHEN [The subject of a Gmail draft needs to be set or updated] THEN [Execute the native terminal command gog gmail drafts update <draftId> --subject "..." --json]

Schema Example

{
  "command": "gog gmail drafts update draft_id_123 --subject \"Invoice\" --json"
}

Jidoka Validation Loop

  1. Try: Execute the command.
  2. Evaluate: Check the JSON response to confirm the subject was updated.
  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 draft was updated.

Comments

Loading comments...