Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Gmail Modify Labels

v1.0.3

Atomic node skill to modify email labels in Gmail using the gog CLI.

0· 83·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-modify-labels.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Gmail Modify Labels" (zvirb/gmail-modify-labels) from ClawHub.
Skill page: https://clawhub.ai/zvirb/gmail-modify-labels
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-modify-labels

ClawHub CLI

Package manager switcher

npx clawhub@latest install gmail-modify-labels
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name, description, and SKILL.md consistently describe using the gog CLI to modify Gmail message/thread labels. Requiring the gog binary is proportional to the stated task.
Instruction Scope
Instructions are narrowly scoped to calling the gog gmail messages modify command and verifying success with a simple retry loop. The SKILL.md does not ask the agent to read unrelated files or environment variables. However, it implicitly relies on the local gog CLI being installed and authenticated; the skill will run with whatever account/context the gog CLI is configured to use.
Install Mechanism
There is no install specification and no code written to disk (instruction-only), so the skill does not download or install additional software itself.
Credentials
The skill declares no environment variables or credentials, which is reasonable since it relies on the gog CLI. That said, the gog CLI typically uses on-disk OAuth tokens or local config for authentication — the skill will operate with those credentials implicitly. Users should recognize that the skill can act as the account authenticated to gog.
Persistence & Privilege
always is false and the skill does not request persistent system changes or modifications to other skills or agent-wide settings.
Assessment
This skill appears coherent for changing Gmail labels via the gog CLI, but it will act using whatever Gmail account the gog tool is already authenticated to. Before installing/use: 1) verify the gog binary you have is the legitimate CLI you expect and is installed intentionally; 2) confirm which Gmail account and OAuth scopes gog is configured with (so the skill doesn't modify the wrong mailbox); 3) if possible test with a non-production account or a single test message; 4) limit autonomous invocation or agent privileges if you do not want the agent to change mail without explicit approval.

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

Runtime requirements

Binsgog
latestvk97fpvsq7r3xjtj3rb6r5rm9b985nn6e
83downloads
0stars
4versions
Updated 20h ago
v1.0.3
MIT-0

Lean Philosophy (Principles)

  • Kaizen (改善): This skill is an atomic node, broken down into its simplest, smallest component to eliminate waste and ensure perfection.
  • 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. It relies on the CLI's self-healing loop and will report errors if the modification fails.

Gmail Modify Labels

This skill allows the agent to add or remove labels from an email or thread using the native CLI.

Cognitive Directives

WHEN [Labels on an email need to be changed, added, or removed] THEN [ Execute the following Jidoka-validated loop:

  1. Execute Node: Execute the native terminal command gog gmail messages modify <messageId> ... or equivalent label command.
  2. Verification Step (Jidoka): Verify the command returns a successful confirmation. IF it fails or returns an error message, wait 3 seconds and retry (max 3 times). IF it still fails, report the error to the user and STOP. ]

Schema Example

{
  "command": "gog gmail messages modify msg_id_123 --add-label INBOX --remove-label UNREAD --json"
}

Expected Output

Confirmation that the labels were updated.

Comments

Loading comments...