Google Drive Download File

v1.0.1

Atomic node skill to download a file from Google Drive using the gog CLI.

0· 31·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/google-drive-download-file.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Google Drive Download File" (zvirb/google-drive-download-file) from ClawHub.
Skill page: https://clawhub.ai/zvirb/google-drive-download-file
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

Canonical install target

openclaw skills install zvirb/google-drive-download-file

ClawHub CLI

Package manager switcher

npx clawhub@latest install google-drive-download-file
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description say 'download from Google Drive using gog'; the only required binary is gog and the instructions call the expected gog command. The required capabilities are coherent with the stated purpose.
Instruction Scope
SKILL.md only instructs running `gog drive download <fileId> --out <localPath>`. This stays within scope, but the instructions are minimal: they do not validate fileId, check output-path safety, or warn about overwriting files. The agent would run arbitrary downloads limited only by the gog client's authenticated permissions.
Install Mechanism
Instruction-only skill with no install spec — lowest-risk category. It relies on an existing gog binary; nothing is downloaded or written by the skill itself.
Credentials
The skill declares no env vars, which is reasonable, but it implicitly depends on gog's local authentication (credentials/config stored by the gog client). That implicit dependency is expected but worth noting because the skill will operate with whatever account gog is authenticated to.
Persistence & Privilege
always:false and default autonomous invocation are appropriate. The skill does not request elevated persistence or alter other skills/configuration.
Assessment
This skill is straightforward and internally consistent, but before installing: ensure the 'gog' CLI on your system is the official, trusted binary and that it's authenticated to the Google account you intend to use. Be aware the skill will download any file the gog client has permission to access — validate fileId inputs and the output path to avoid accidental overwrites or writing sensitive files to unsafe locations. If you want tighter safety, run downloads into a sandboxed directory, review agent-autonomous actions that might trigger downloads, or require human confirmation before executing the command.

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

Runtime requirements

Binsgog
latestvk97501k6e7wb4yjb7xvkvjh4fn85n37m
31downloads
0stars
2versions
Updated 2h ago
v1.0.1
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 download fails.

Google Drive Download File

This skill allows the agent to download a file from Google Drive using the native CLI.

Cognitive Directives

WHEN [A file needs to be downloaded locally from Google Drive] THEN [Execute the native terminal command gog drive download <fileId> --out <localPath>]

Schema Example

{
  "command": "gog drive download file_id_123 --out /tmp/document.pdf"
}

Expected Output

Confirmation that the file was downloaded to the specified path.

Comments

Loading comments...