Skill flagged — suspicious patterns detected

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

Recipe Create Presentation

v1.0.12

Create a new Google Slides presentation and add initial slides.

0· 474·10 current·10 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-create-presentation.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Recipe Create Presentation" (googleworkspace-bot/recipe-create-presentation) from ClawHub.
Skill page: https://clawhub.ai/googleworkspace-bot/recipe-create-presentation
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-create-presentation

ClawHub CLI

Package manager switcher

npx clawhub@latest install recipe-create-presentation
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description align with the instructions: it uses the gws CLI to create a Slides presentation and then set Drive permissions. The declared required binary (gws) and dependency on a gws-slides skill are coherent with this purpose.
!
Instruction Scope
SKILL.md instructs the agent to run gws commands to create a presentation and to share it with team@company.com. It does not mention where credentials come from, who must approve sharing, or confirm substitution of PRESENTATION_ID. The hard-coded sharing step (writer access to team@company.com) is notable and could expose data if left unchanged.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk by the skill itself. This reduces supply-chain risk, but the skill depends on an external gws binary already present.
!
Credentials
The skill declares no required environment variables or credentials, but the gws commands will need Google API credentials/authorization and Drive permissions to create presentations and add permissions. Those credentials and OAuth scopes are not documented, which is an omission that affects security and usability.
Persistence & Privilege
always is false and the skill is user-invocable only. The skill does not request persistent system-wide changes in its spec; no elevated persistence is requested.
What to consider before installing
This recipe will run the gws CLI to create a Google Slides file and then grant writer access to team@company.com. Before installing or using it: - Verify you trust the gws binary (where it came from) and that it is configured with the correct Google account and OAuth scopes; the skill does not declare required credentials. - Replace the placeholder email (team@company.com) with the intended recipient(s) — otherwise you may unintentionally share documents. - Consider running the gws commands manually once to confirm behavior and to see what credentials and scopes are used. - Ensure the dependent skill (gws-slides) is legitimate and that gws is installed from a trusted source. If the skill will be used autonomously, be cautious because it can create and share documents without interactive confirmation.

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

Runtime requirements

Binsgws
latestvk97f0dhz81mvjk7p3a4g2mr8ks83y7b8
474downloads
0stars
13versions
Updated 12h ago
v1.0.12
MIT-0

Create a Google Slides Presentation

PREREQUISITE: Load the following skills to execute this recipe: gws-slides

Create a new Google Slides presentation and add initial slides.

Steps

  1. Create presentation: gws slides presentations create --json '{"title": "Quarterly Review Q2"}'
  2. Get the presentation ID from the response
  3. Share with team: gws drive permissions create --params '{"fileId": "PRESENTATION_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "team@company.com"}'

Comments

Loading comments...